PowerShell添加本地账户脚本分享
更新时间:2015年03月25日 09:21:58 投稿:junjie
这篇文章主要介绍了PowerShell添加本地账户脚本分享,本文直接给出实现代码,需要的朋友可以参考下
脚本源码:
复制代码 代码如下:
$nt=[adsi]"WinNT://localhost"
$user=$nt.create("user","test")
$user.setpassword("password")
$user.setinfo()
Get-WmiObject -Class Win32_UserAccount -Filter "name = 'test'" | Set-WmiInstance -Argument @{PasswordExpires = 0}
$group=[ADSI]"WinNT://localhost/administrators,group"
$group.add("WinNT://localhost/test")
相关文章
PowerShell小技巧之获取Windows系统密码Hash
这篇文章主要介绍了使用PowerShell获取Windows系统密码Hash的小技巧,非常的实用,需要的朋友可以参考下2014-10-10PowerShell中使用Get-ChildItem命令读取目录、文件列表使用例子和小技巧
这篇文章主要介绍了PowerShell中使用Get-ChildItem命令读取目录、文件列表使用例子和小技巧,比如只读取目录列表的方法,只读取文件列表的方法,需要的朋友可以参考下2014-08-08
最新评论