映射多个网络驱动器 Windows 2012 域控制器

映射多个网络驱动器 Windows 2012 域控制器

我发现这个脚本可以映射单个驱动器并重新标记驱动器:

' 
Option Explicit
Dim objNetwork, strDrive, objShell, objUNC
Dim strRemotePath, strDriveLetter, strNewName 
' 
strDriveLetter = "H:" 
strRemotePath = "\\FileServer\sharedfolder" 
strNewName = "Save Your Files Here"

' Section which actually (re)names the Mapped Drive
Set objShell = CreateObject("Shell.Application")
objShell.NameSpace(strDriveLetter).Self.Name = strNewName

WScript.Quit

' End of Example VBScript.

我有多个共享文件夹要与某些特定用户组共享。如何修改此脚本以在用户登录域时映射多个驱动器

其他股份

\\FileServer\Share1
\\FileServer\Share2
\\FileServer\Share3
\\FileServer\ShareXX

我知道这可以通过网络使用来完成。但这不允许重新标记共享。

net use x: \\FileServer\Share1
net use y: \\FileServer\Share2
net use z: \\FileServer\Share3
net use J: \\FileServer\Sharexx

相关内容