如何使用不同的凭据在窗口7中安装驱动器

时间:2016-06-03 07:30:36

标签: window windows-server-2008

我想将共享文件夹映射到具有不同凭据的多个驱动器窗口

情况如下:

这是一个共享文件夹:\\192.168.5.242\share\myfiles 在文件服务器上

有两个Active Directory用户:

1. NormalUser (read only permission) 
2. SuperUser (Full permission)

让普通用户使用Map X驱动器

net use x: /delete /y >nul
net use x: "\\192.168.5.242\share\myfiles" /persistent:yes

让地图Y驱动为超级用户

net use y: /delete /y >nul
net use y: "\\192.168.5.242\share\myfiles" /user:superuser mypassword /persistent:yes 

输出错误:

  

发生了系统错误1219。   与服务器的多个连接或   由同一用户共享资源,使用多个用户名   不允许。断开以前与服务器的所有连接或   共享资源,然后再试一次。

如何使用不同的凭据映射相同的共享文件夹。?

1 个答案:

答案 0 :(得分:0)

您可以使用以下方法在Windows中使用2个不同的凭据映射\\192.168.5.242\share\myfiles文件夹。

使用服务器的IP地址

为普通用户映射X驱动器
net use x: /delete /y >nul
net use x: "\\192.168.5.242\share\myfiles" /persistent:yes 

使用服务器名称

为超级用户映射Y驱动器
net use y: /delete /y >nul
net use y: "\\server-name\share\myfiles" /user:superuser mypassword /persistent:yes

X Drive将是只读的,Y Drive将是完全权限驱动器。