Answers:
硬链接:
文件:
fsutil hardlink create "file1" "file2"
要么
mklink /H "file1" "file2"
目录:
mklink /J dir1 dir2
软链接:
文件:
mklink "file1" "file2"
目录:
mklink /D "dir1" "dir2"
Microsoft Windows 2000资源工具包:
Linkd
Sysinternals Suite Utilities:
Junction
查看链接:
dir <drive: or dir> /S /A:L
在管理员处运行应用
Runas /user:[Domain\]administrator CMD
管理工具
组策略对象编辑器
Computer Configuration\Windows Settings\Security Settings\Local Policies\User Rights Assignment\
Create symbolic links <user name, user group>
DSQUERY USER -name avex | DSGET USER -memberof -expand
thx!