Windows Symbolic Links Official
Save this alias in your PowerShell profile: function sl($target, $link) cmd /c mklink /D $link $target
Get-ChildItem -Force | Select-Object Name, LinkType, Target If LinkType isn't blank, you've found a portal. Symbolic links turn Windows from a rigid filing cabinet into a dynamic, relational database of storage. They allow you to decouple logical organization (where programs think files are) from physical storage (where the bits actually spin). windows symbolic links
mklink /D "C:\Dev" "D:\OneDrive\Projects\Code" Save this alias in your PowerShell profile: function
Go to Settings > Privacy & security > For developers. Turn on "Developer Mode." Target If LinkType isn't blank
The only question that remains is: What will you link first?
Now go forth and symlink. Just don't create a loop.