|
V BS 是在windows 用户登录前运行的程序。但是我指定了启动脚本,没有运行!??
启动脚本作用:
我描述不清楚,我就案例子说一下
数据服务器计算机名 server
共享名 A001$、A002$、A003$ ……A040$
客户机计算机名是 001、002、003……040
访问用户名称 A001、A002、A003……A040
共享密码 A001、A002、A003……A040
最后再把映射的盘名称改一下为:DATA
因为我把用户配置文件漫游到映射的网络磁盘D:,所以要登录前要映射完成
#OK.VBS
Set objNet = CreateObject("Wscript.Network")
strCompName = objnet.ComputerName
strNewName = "data"
strDriveLetter = "d:"
' Section to map the network drive
Set objNetwork = CreateObject("WScript.Network")
objNetwork.MapNetworkDrive "d:","\\server\A" & strCompName & "$",,"A" & strCompName, "A" & strCompName
' Section which actually (re)names the Mapped Drive
Set objShell = CreateObject("Shell.Application")
objShell.NameSpace(strDriveLetter).Self.Name = strNewName
[ 本帖最后由 beyoungse 于 2007-9-4 02:01 PM 编辑 ] |
|