https://github.com/oskaritimperi/py-mklink-wrapper
Wrapper script for ln.exe to make it look and act like mklink.exe
https://github.com/oskaritimperi/py-mklink-wrapper
Last synced: 4 months ago
JSON representation
Wrapper script for ln.exe to make it look and act like mklink.exe
- Host: GitHub
- URL: https://github.com/oskaritimperi/py-mklink-wrapper
- Owner: oskaritimperi
- License: mit
- Created: 2013-08-05T14:08:41.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-08-06T05:42:41.000Z (about 12 years ago)
- Last Synced: 2025-04-12T15:59:43.095Z (6 months ago)
- Size: 109 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# py-mklink-wrapper
A wrapper script for `ln.exe` to make it look like the `MKLINK` utility
found from Windows Vista onwards. `ln.exe` allows Windows XP to use
symbolic links. More recent versions of Windows come with the MKLINK
utility which can do the same.To fully utilise this, you should also have a batch script that
should look something like this:```
@ECHO OFF
python %~dp0mklink.py %*
```Name the file `mklink.cmd` and put it in `PATH`. Now you can use the
fake mklink utility like you would use the real.You can find instruction for installing ln.exe from
[here](http://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html#symboliclinksforwindowsxp)