This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add windows Explorer Right-Click menu to paste copied item as Relative SymbolicLink with PowerShell | |
# Locate file on C:\cmd\ | |
param ( | |
[Parameter(Mandatory = $true)][string]$location | |
) | |
Set-Location $location | |
$files = Get-Clipboard -Format FileDropList | |
$count = $files.count; |