Reputation: 351
I'm working with a large distributed server with different platforms, and need all of my computers to be able to communicate with the hub server and create symbolic links in its filesystem. Is there a command which will create a link compatible with non-NTFS file-systems (something akin to ln -s in linux/unix)?
Upvotes: 2
Views: 6751
Reputation: 3414
You can do it using mklink
for example if you are somewhere in c:\games and would like to make a symlink "tmp" to c:\temp
mklink /D tmp "c:\temp"
symbolic links work in (at least) Windows7 and are called junctions
Upvotes: 4
Reputation: 24209
NTFS supports symbolic links, check it out: NTFS symbolic link FAT32/FAT16 doesnt support them
Upvotes: 0