How to add a symbolic link with Powershell

I tried to add a symbolic link with Git Bash but it didn’t work. It basically just copied the files into a new folder. Then I found this Powershell command:

New-Item -ItemType SymbolicLink -Path "C:\path\to\link" -Target "C:\path\to\real\folder"

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a comment