PowerShell/Scripts/create-symlink.ps1

29 lines
688 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-08-22 18:45:05 +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-08-22 18:45:05 +02:00
if ($symlink -eq "" ) { $symlink = read-host "Enter new symlink filename" }
if ($target -eq "" ) { $target = read-host "Enter path to target" }
2021-07-15 15:51:22 +02:00
2021-08-22 18:45:05 +02:00
new-item -path "$symlink" -itemType SymbolicLink -Value "$target"
2021-02-17 08:24:03 +01:00
2021-08-22 18:45:05 +02:00
"✔️ created symlink $symlink$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
}