首页 > 编程 > VBScript > 正文

用VBS检测Guest状态的脚本

2020-07-26 11:58:04
字体:
来源:转载
供稿:网友
复制代码 代码如下:

Set objNetwork = CreateObject("Wscript.Network") 
strComputer = objNetwork.ComputerName 
Set objUser = GetObject("WinNT://" & strComputer & "/Guest") 
If objUser.AccountDisabled Then 
Wscript.Echo "Guest为禁用状态" 
Else 
Wscript.Echo "Guest为开启状态" 
End If
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表