PowerShell/docs/new-symlink.md

86 lines
2.0 KiB
Markdown
Raw Normal View History

2024-01-25 13:37:12 +01:00
Script: *new-symlink.ps1*
========================
2022-11-17 20:02:26 +01:00
2023-05-26 12:20:18 +02:00
This PowerShell script creates a new symbolic link file.
2021-10-17 14:33:27 +02:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2021-10-17 14:33:27 +02:00
```powershell
2023-07-29 10:15:44 +02:00
PS> ./new-symlink.ps1 [[-symlink] <String>] [[-target] <String>] [<CommonParameters>]
2023-05-26 12:20:18 +02:00
-symlink <String>
Specifies the new symlink filename
Required? false
Position? 1
Default value
Accept pipeline input? false
Accept wildcard characters? false
2021-10-17 14:33:27 +02:00
2023-05-26 12:20:18 +02:00
-target <String>
Specifies the path to target
Required? false
Position? 2
Default value
Accept pipeline input? false
Accept wildcard characters? false
2021-10-17 14:33:27 +02:00
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2023-05-26 12:20:18 +02:00
```powershell
2023-08-06 21:36:33 +02:00
PS> ./new-symlink.ps1 C:\Temp\HDD C:\
2023-05-26 12:20:18 +02:00
```
2023-07-29 10:04:38 +02:00
Notes
-----
2023-05-26 12:20:18 +02:00
Author: Markus Fleschutz | License: CC0
2023-07-29 10:04:38 +02:00
Related Links
-------------
2023-05-26 12:20:18 +02:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
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
2023-08-06 21:36:33 +02:00
PS> ./new-symlink.ps1 C:\Temp\HDD C:\
2022-11-17 20:02:26 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2023-05-26 12:20:18 +02:00
param([string]$symlink = "", [string]$target = "")
2022-11-17 20:02:26 +01:00
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
2024-01-25 13:37:12 +01:00
*(generated by convert-ps2md.ps1 using the comment-based help of new-symlink.ps1 as of 01/25/2024 13:36:53)*