PowerShell/Scripts/new-symlink.ps1
2021-09-16 09:00:56 +02:00

28 lines
691 B
PowerShell
Executable File

<#
.SYNOPSIS
new-symlink.ps1 [<symlink>] [<target>]
.DESCRIPTION
Creates a new symbolic link file
.EXAMPLE
PS> .\new-symlink.ps1 C:\Temp\HDD C:\
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$symlink = "", $[string]target = "")
try {
if ($symlink -eq "" ) { $symlink = read-host "Enter new symlink filename" }
if ($target -eq "" ) { $target = read-host "Enter path to target" }
new-item -path "$symlink" -itemType SymbolicLink -Value "$target"
"✔️ created new symlink $symlink$target"
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}