windows powershell create symbolic link code example
Example 1: windows powershell symlink
# In elevated powershell
New-Item -ItemType SymbolicLink -Path "Link" -Target "Target"
Example 2: powershell create symlink
new-item -itemtype symboliclink -path <path to location> -name <the name> -value <path to target>