Map Múltiplas unidades de rede windows 2012 domain controller

1

Encontrei este script para mapear uma única unidade e renomear a unidade:

' 
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.

Eu tenho várias pastas compartilhadas para serem compartilhadas com alguns grupos de usuários específicos. Como modificar este script para mapear várias unidades quando o usuário efetuar login no domínio

outras partilhas

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

Eu sei que isso pode ser feito usando o uso da rede. mas isso não permite a renomeação de ações.

net use x: \FileServer\Share1
net use y: \FileServer\Share2
net use z: \FileServer\Share3
net use J: \FileServer\Sharexx
    
por sadia rehman 20.05.2017 / 08:50

0 respostas