gpt4 book ai didi

powershell - Powershell-将计算机添加到Active Directory中的安全组

转载 作者:行者123 更新时间:2023-12-03 00:20:58 24 4
gpt4 key购买 nike

如何从文本文件中将多个计算机帐户添加到Active Directory中的安全组?我将这段代码放在一起,但仅适用于用户帐户。

Import-Module ActiveDirectory

Get-Content C:\Servers.txt | Foreach-Object {Add-ADGroupMember "WSUS Auto Download and Notify for Install" $_}

最佳答案

您要查找的命令是Add-ADPrincipalGroupMembership。

Get-Content c:\servers.txt | Add-ADPrincipalGroupMember -memberof 'WSUS Auto Download and Notify for Install'

如果需要在计算机名称的末尾添加“$”,则命令可以使用scriptblock参数(一个可以修改管道输入的匿名函数)。
Get-Content c:\servers.txt | Add-ADPrincipalGroupMember -memberof 'WSUS Auto Download and Notify for Install' -identity {"$_$"}

关于powershell - Powershell-将计算机添加到Active Directory中的安全组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5533121/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com