Answers for "mklink powershell"

3

mklink powershell

# In elevated powershell
New-Item -ItemType SymbolicLink -Path "Link" -Target "Target"
Posted by: Guest on October-07-2020
0

powershell create symlink

new-item -itemtype symboliclink -path <path to location> -name <the name> -value <path to target>
Posted by: Guest on March-30-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language