Add users or groups to local admin group
Sometimes you need to add users or groups in local Administrators group on a windows server. This function helps to accomplish that on one or more servers. Load a text- or csv-file and pipe it to Add-AdminGroup. All servers not responding will be shown at the end for later follow-up.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
function Add-AdminGroup
{
Param (
[parameter(Mandatory = $true,
ValueFromPipeline = $true,
position = 0)]
[Alias('IPAddress', '__Server', 'CN', 'server')]
[string[]]$Computername,
[parameter(ValueFromPipelineByPropertyName)]
[Alias('groupname', 'adgroup')]
[string[]]$group
)
Process
{
if (Test-Connection -quiet -Computername $computername)
{
Write-Output "Adding $group to local administrators on" $Computername
Invoke-Command -ComputerName $Computername -ScriptBlock {
Add-LocalGroupMember -Group Administrators -Member $args[0]
} -ArgumentList $group
}
else
{
write-output "No response from" $Computername
$failed += $computername
}
}
end
{
foreach ($obj in $failed)
{
Write-Output $obj
}
}
}
This post is licensed under CC BY 4.0 by the author.