Windows上管理员用户的符号链接


3

在Windows上,您可以创建符号链接

  • 要么启动程序,要么以管理员身份在(例如cmd)中创建符号链接。
  • 或者,如果你给你的用户/用户组创建符号链接(许可这里是一个解释,如何做到这一点)。

当我想要授予权限的用户是管理员时,第二种方式对我不起作用。这个问题有解决方案吗?

谢谢

Answers:


3

硬链接:

文件:

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>

2
感谢您提供有关创建链接的信息,但它不会回答我的问题。
自动生成

@automatix Thx,我编辑它。
STTR 2013年

我想,你的意思完全相同,这里描述的是我在初始帖子中链接到的内容(i.stack.imgur.com/MsSyK.png)。对?所以,正如我已经说过 - 这对管理员用户不起作用。
自动生成

是什么让你的案子DSQUERY USER -name avex | DSGET USER -memberof -expandthx!
STTR 2013年

这提供了有效的法律。不要重新定义LSDOU?technet.microsoft.com/en-us/library/dd277394.aspx
STTR 2013年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.