我读到一篇文章,介绍如何使用 vbs 脚本访问 CTL+ALT+DEL 来更改密码 GUI。我将其命名为“ChangePWD.vbs”
Set objShell = CreateObject("Shell.Application")
objShell.WindowsSecurity()
我编写了 cscript ChangePWD.vbs,但它不起作用。我是不是漏掉了什么?
function fnIShellDispatch4WindowsSecurityVB()
dim objShell
set objShell = CreateObject("shell.application")
objShell.WindowsSecurity
set objShell = nothing
end function