配置windows自动修改密码和自动登录
2021-04-20 17:27
标签:自动化改密 ystr=year(Now) strComputer="." Set objUser=GetObject("WinNT://" & strComputer & "/Administrator") objUser.SetPassword pwdstr objUser.SetInfo Dim OperationReGIStry 具体部分脚本需要根据实际情况修改,以上是在windows2012上测试通过(2012修改密码不影响计划任务),实际在windows2003上要注意,由于自动修改密码会导致计划任务异常,不一定适用。 配置windows自动修改密码和自动登录 标签:自动化改密 原文地址:http://blog.51cto.com/lysweb/2088941
autochg_pwd.vbs
mstr=Month(Now)
if len(mstr)dstr=day(Now)
if mstr="01" then mstr="!"
if mstr="02" then mstr="!"
if mstr="03" then mstr="!"
if mstr="04" then mstr="@"
if mstr="05" then mstr="@"
if mstr="06" then mstr="@"
if mstr="07" then mstr="#"
if mstr="08" then mstr="#"
if mstr="09" then mstr="#"
if mstr="10" then mstr="$"
if mstr="11" then mstr="$"
if mstr="12" then mstr="$"
pwdstr="testpwd"&ystr&mstr
Set OperationRegistry=WScript.CreateObject("WScript.Shell")
Default=OperationRegistry.RegRead("HKLM\")
OperationRegistry.RegWrite "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\DefaultPassword",pwdstr
文章标题:配置windows自动修改密码和自动登录
文章链接:http://soscw.com/index.php/essay/77229.html