-
Notifications
You must be signed in to change notification settings - Fork 127
/
AddUserToLocalAdminGroup.ps1
107 lines (91 loc) · 4.39 KB
/
AddUserToLocalAdminGroup.ps1
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#*******************************************************************************
# Author: Mick Pletcher
# Date: 25 November 2013
#
# Program: Add User to Local Administrator Group in Active Directory
#*******************************************************************************
#Define Global Memory
Set-Variable -Name Member -Scope Local -Force
Set-Variable -Name Results -Value $false -Scope Global -Force
Function AddRemovePrograms($KeyName, $DisplayName, $Version){
#Define Local Memory
New-PSDrive -Name HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT
Set-Variable -Name AddRemKey -Scope Local -Force
Set-Variable -Name guid -Scope Local -Force
Set-Variable -Name ProductsKey -Scope Local -Force
If (!(Test-Path c:\windows\GSPBox_Icon.bmp)){
Copy-Item -Path \\global.gsp\data\clients\na_clients\Build\Add-ins\GSPBox_Icon.bmp -Destination c:\Windows -Force
}
$AddRemKey = "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall"
$ProductsKey = "HKCR:\Installer\Products\"
New-Item -Path $AddRemKey -Name $KeyName –Force
New-ItemProperty -Path $AddRemKey"\"$KeyName -Name DisplayName -Value $DisplayName -PropertyType String
New-ItemProperty -Path $AddRemKey"\"$KeyName -Name DisplayVersion -Value $Version -PropertyType String
New-ItemProperty -Path $AddRemKey"\"$KeyName -Name UninstallString -Value " " -PropertyType String
New-ItemProperty -Path $AddRemKey"\"$KeyName -Name Publisher -Value "Gresham, Smith and Partners" -PropertyType String
New-ItemProperty -Path $AddRemKey"\"$KeyName -Name DisplayIcon -Value "c:\windows\GSPBox_Icon.bmp" -PropertyType String
$guid = [guid]::NewGuid().ToString("N")
$guid.ToString()
$guid = $guid.ToUpper()
New-Item -Path $ProductsKey -Name $guid –Force
New-ItemProperty -Path $ProductsKey"\"$guid -Name ProductName -Value $DisplayName -PropertyType String -Force
#Cleanup Local Memory
remove-psdrive -name HKCR
Remove-Variable -Name AddRemKey -Scope Local -Force
Remove-Variable -Name guid -Scope Local -Force
Remove-Variable -Name ProductsKey -Scope Local -Force
}
Function CheckADForUser ($Member){
#Define Local Memory
Set-Variable -Name Computer -Scope Local -Force
Set-Variable -Name Group -Scope Local -Force
Set-Variable -Name LocalGroup -Scope Local -Force
Set-Variable -Name User -Scope Local -Force
Set-Variable -Name UserNames -Scope Local -Force
Set-Variable -Name Users -Scope Local -Force
$LocalGroup = "Administrators"
$UserNames = @()
$Computer = $env:computername
$Group= [ADSI]"WinNT://$Computer/$LocalGroup,group"
$Users = @($Group.psbase.Invoke("Members"))
$Users | ForEach-Object {
$UserNames += $_.GetType().InvokeMember("Name", 'GetProperty', $null, $_, $null)
Foreach ( $User in $UserNames) {
If ($User -eq $Member) {
$Global:Results = $true
Write-Host $User
}
}
}
#Cleanup Local Memory
$UserNames.Clear()
Remove-Variable -Name Computer -Scope Local -Force
Remove-Variable -Name Group -Scope Local -Force
Remove-Variable -Name LocalGroup -Scope Local -Force
Remove-Variable -Name User -Scope Local -Force
Remove-Variable -Name UserNames -Scope Local -Force
Remove-Variable -Name Users -Scope Local -Force
}
Function AddUserToAD ($Member) {
$group = [ADSI]"WinNT://./Administrators,group"
$group.Add("WinNT://$Member,user")
}
cls
$Member = ""
CheckADForUser $Member
If ($Results -eq $true) {
AddRemovePrograms $Member $Member "Installed"
cls
Write-Host $Member" is already in the local administrators group"
} else {
AddUserToAD $Member
CheckADForUser $Member
If ($Results -eq $true) {
AddRemovePrograms $Member $Member "Installed"
cls
Write-Host $Member" has been added to the local administrators group"
}
}
#Cleanup Global Memory
Remove-Variable -Name Member -Scope Local -Force
Remove-Variable -Name Results -Scope Global -Force