PowerShell/Scripts/create-symlink.ps1

29 lines
697 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
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2021-02-17 08:24:03 +01:00
#>
2021-07-15 15:51:22 +02:00
param([string]$Symlink = "", $[string]Target = "")
2021-02-17 08:24:03 +01:00
2021-02-18 20:17:55 +01:00
try {
2021-07-15 15:51:22 +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
new-item -path "$Symlink" -itemType SymbolicLink -Value "$Target"
2021-07-15 15:51:22 +02:00
"✔️ created symlink $Symlink (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
}