PowerShell/Docs/new-symlink.md

50 lines
1.2 KiB
Markdown
Raw Normal View History

2022-11-17 20:11:37 +01:00
## The PowerShell Script **new-symlink.ps1**
2022-11-17 20:02:26 +01:00
2021-10-17 14:33:27 +02:00
## Parameters
```powershell
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2022-11-17 20:02:26 +01:00
## Source Code
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
Creates a new symbolic link file
.DESCRIPTION
This PowerShell script creates a new symbolic link file.
.PARAMETER symlink
Specifies the new symlink filename
.PARAMETER target
Specifies the path to target
.EXAMPLE
PS> ./new-symlink C:\Temp\HDD C:\
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
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 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2021-10-17 14:33:27 +02:00
*Generated by convert-ps2md.ps1 using the comment-based help of new-symlink.ps1*