vbs 更改环境变量
更新时间:2009年07月27日 00:24:16 作者:
微软手册只提了一个remove,没提增加,原来是这样。
更改
Set WshShell = Wscript.CreateObject("Wscript.Shell")
WshShell.Environment("user").Item("path")="c:\ruby"
移除:
WshShell.Environment("USER").Remove("LAST_LOGIN_DATE")
附记一下这两个:
Set objAD = CreateObject("ADSystemInfo")
Wscript.Echo "Your Computer Name is " & objAD.ComputerName
Wscript.Echo "Your Username is " & objAD.UserName
WScript.Echo("Hello")
WScript.Interactive = false
WScript.Echo("This wont display")
WScript.Interactive = true
WScript.Echo("This will display")
复制代码 代码如下:
Set WshShell = Wscript.CreateObject("Wscript.Shell")
WshShell.Environment("user").Item("path")="c:\ruby"
移除:
复制代码 代码如下:
WshShell.Environment("USER").Remove("LAST_LOGIN_DATE")
附记一下这两个:
复制代码 代码如下:
Set objAD = CreateObject("ADSystemInfo")
Wscript.Echo "Your Computer Name is " & objAD.ComputerName
Wscript.Echo "Your Username is " & objAD.UserName
WScript.Echo("Hello")
WScript.Interactive = false
WScript.Echo("This wont display")
WScript.Interactive = true
WScript.Echo("This will display")
相关文章
VBS 强制关闭Symantec Endpoint Protection的代码
很多企业电脑系统是Windows Xp,使用Windows server 2003 来控制,其中客户端得杀毒软件有不少是使用 Symantec Endpoint Protection2013-01-01
最新评论