当前位置:主页 > 脚本语言 > VBS >

用VBS检测Guest状态的脚本

时间:2021-05-17 08:40:13 | 栏目:VBS | 点击:

复制代码 代码如下:

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

您可能感兴趣的文章:

相关文章