windows-server-2003 – 远程重置本地管理员密码

回到 Windows 2000,我记得能够使用 MS KB 272530中的以下命令重置和更改远程工作站上的本地管理员密码:
The following .bat file will change the local administrator password to newpass 
on the \\pc1,\\pc2,and \\pc3 computers: 

cusrmgr.exe -u Administrator -m \\pc1 -P newpass
cusrmgr.exe -u Administrator -m \\pc2 -P newpass
cusrmgr.exe -u Administrator -m \\pc3 -P newpass

但是,此命令似乎在Windows 2003或2008中不起作用.

是否有一种新方法可以让我更改远程工作站上的本地管理员密码,类似于cusrmgr命令?

找到答案:

PsTools下载PsPasswrd.exe.

效果很好:-)

http://technet.microsoft.com/en-us/sysinternals/bb897543.aspx

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...