2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2024-10-16 08:36:58 +02:00
|
|
|
|
Creates a new symlink
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2024-10-16 08:36:58 +02:00
|
|
|
|
This PowerShell script creates a new symbolic link file, linking to a target.
|
2021-10-16 16:50:10 +02:00
|
|
|
|
.PARAMETER symlink
|
2024-10-16 08:36:58 +02:00
|
|
|
|
Specifies the path to the new symlink file
|
2021-10-16 16:50:10 +02:00
|
|
|
|
.PARAMETER target
|
2024-10-16 08:36:58 +02:00
|
|
|
|
Specifies the path to the target
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2024-10-16 08:36:58 +02:00
|
|
|
|
PS> ./new-symlink.ps1 C:\User\Markus\Windows C:\Windows
|
|
|
|
|
✅ New symlink file 'C:\User\Markus\Windows' created, linking to: C:\Windows
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
2022-09-06 21:42:04 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-02-17 08:24:03 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2023-05-26 09:39:57 +02:00
|
|
|
|
param([string]$symlink = "", [string]$target = "")
|
2021-02-17 08:24:03 +01:00
|
|
|
|
|
2021-02-18 20:17:55 +01:00
|
|
|
|
try {
|
2024-10-16 08:36:58 +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
|
|
|
|
|
2024-10-16 08:36:58 +02:00
|
|
|
|
New-Item -path "$symlink" -itemType SymbolicLink -value "$target"
|
2021-02-17 08:24:03 +01:00
|
|
|
|
|
2024-10-16 08:36:58 +02:00
|
|
|
|
"✅ New symlink file '$symlink' created, linking to: $target"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-02-17 08:24:03 +01:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-02-17 08:24:03 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|