Powershell 将User组的成员复制到新组中去
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell 将User组的成员复制到新组中去相关的知识,希望对你有一定的参考价值。
$accounts = (net localgroup users |Select-String -Pattern ‘aac‘) -replace "\n"
Foreach ($account in $accounts) {
If($account –contains“Domain Users”) {
return;
}
netlocalgroup ClientGroup $account /add
}
本文出自 “聚首云端 智领未来” 博客,请务必保留此出处http://unicom.blog.51cto.com/4454793/1983672
以上是关于Powershell 将User组的成员复制到新组中去的主要内容,如果未能解决你的问题,请参考以下文章
powershell PowerShell函数,用于列出本地组的成员,例如Administrators。