When I shift-right-click on a folder I had been able to "open command window here".
NOTE: I am NOT INTERESTED in the registry hack to put this feature back on.
After which I could use mklink to create symbolic links.
Under recent profound wisdom of Microsoft, after last couple of Windows 10 updates, "command window here" has been replaced with "powershell here".
Hence complying with Microsoft's esteemed wisdom implying that I should use powershell instead of the long outdated cmd
This is answered in [1]: https://stackoverflow.com/a/34905638/4744055
But use New-Item
Powershell command. No DOS CMD necessary any more.
New-Item -Path <to> -ItemType SymbolicLink -Value <from>
You can create soft links in PowerShell via:
cmd /c mklink /J "<link>" "<target>"
The above uses old cmd
in PowerShell. However, the above does not work for symbolic links (/D).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With