Rename to new-shortcut.ps1 and new-symlink.ps1

This commit is contained in:
Markus Fleschutz
2021-08-30 12:26:15 +02:00
parent ec9253f38a
commit 3b73961014
4 changed files with 11 additions and 11 deletions

27
Scripts/new-symlink.ps1 Executable file
View File

@ -0,0 +1,27 @@
<#
.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
}