PowerShell/Scripts/create-symlink.ps1

27 lines
712 B
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
create-symlink.ps1 [<symlink>] [<target>]
.DESCRIPTION
Creates a symbolic link file
.EXAMPLE
PS> .\create-symlink.ps1 C:\Temp\HDD C:\
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
2021-02-17 08:24:03 +01:00
#>
param($Symlink = "", $Target = "")
2021-04-16 20:01:38 +02:00
if ($Symlink -eq "" ) { $Symlink = read-host "Enter filename of symlink" }
if ($Target -eq "" ) { $Target = read-host "Enter path to target" }
2021-02-17 08:24:03 +01:00
2021-02-18 20:17:55 +01:00
try {
2021-02-17 08:24:03 +01:00
new-item -path "$Symlink" -itemType SymbolicLink -Value "$Target"
2021-04-16 20:01:38 +02:00
write-host -foregroundColor green "✔️ symlink $Symlink created (pointing to $Target)"
2021-02-17 08:24:03 +01:00
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-02-17 08:24:03 +01:00
exit 1
}