-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathGet-ADGroupMembers_Html.ps1
161 lines (140 loc) · 6.22 KB
/
Get-ADGroupMembers_Html.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#Requires -Version 5.0
#Requires -Modules ActiveDirectory
<#
.SYNOPSIS
Generates a report with the members of the Active Directory group
.DESCRIPTION
.NOTES
This PowerShell script was developed and optimized for ScriptRunner. The use of the scripts requires ScriptRunner.
The customer or user is authorized to copy the script from the repository and use them in ScriptRunner.
The terms of use for ScriptRunner do not apply to this script. In particular, ScriptRunner Software GmbH assumes no liability for the function,
the use and the consequences of the use of this freely available script.
PowerShell is a product of Microsoft Corporation. ScriptRunner is a product of ScriptRunner Software GmbH.
© ScriptRunner Software GmbH
.COMPONENT
Requires Module ActiveDirectory
Requires Library Script ReportLibrary from the Action Pack Reporting\_LIB_
.LINK
https://github.com/scriptrunner/ActionPacks/tree/master/ActiveDirectory/_REPORTS_
.Parameter OUPath
Specifies the AD path
[sr-de] Active Directory Pfad
.Parameter GroupName
DistinguishedName or SamAccountName of the Active Directory group
[sr-de] SAMAccountName oder Distinguished-Name der Gruppe
.Parameter DomainAccount
Active Directory Credential for remote execution on jumphost without CredSSP
[sr-de] Active Directory-Benutzerkonto für die Remote-Ausführung ohne CredSSP
.Parameter Nested
Shows group members nested
[sr-de] Gruppenmitglieder rekursiv anzeigen
.Parameter ShowOnlyGroups
Shows only Active Directory groups
[sr-de] Nur Gruppen anzeigen
.Parameter DomainName
Name of Active Directory Domain
[sr-de] Name der Active Directory Domäne
.Parameter SearchScope
Specifies the scope of an Active Directory search
[sr-de] Gibt den Suchumfang einer Active Directory-Suche an
.Parameter AuthType
Specifies the authentication method to use
[sr-de] Gibt die zu verwendende Authentifizierungsmethode an
#>
param(
[Parameter(Mandatory = $true,ParameterSetName = "Local or Remote DC")]
[Parameter(Mandatory = $true,ParameterSetName = "Remote Jumphost")]
[string]$OUPath,
[Parameter(Mandatory = $true,ParameterSetName = "Local or Remote DC")]
[Parameter(Mandatory = $true,ParameterSetName = "Remote Jumphost")]
[string]$GroupName,
[Parameter(Mandatory = $true,ParameterSetName = "Remote Jumphost")]
[PSCredential]$DomainAccount,
[Parameter(ParameterSetName = "Local or Remote DC")]
[Parameter(ParameterSetName = "Remote Jumphost")]
[switch]$Nested,
[Parameter(ParameterSetName = "Local or Remote DC")]
[Parameter(ParameterSetName = "Remote Jumphost")]
[switch]$ShowOnlyGroups,
[Parameter(ParameterSetName = "Local or Remote DC")]
[Parameter(ParameterSetName = "Remote Jumphost")]
[string]$DomainName,
[Parameter(ParameterSetName = "Local or Remote DC")]
[Parameter(ParameterSetName = "Remote Jumphost")]
[ValidateSet('Base','OneLevel','SubTree')]
[string]$SearchScope='SubTree',
[Parameter(ParameterSetName = "Local or Remote DC")]
[Parameter(ParameterSetName = "Remote Jumphost")]
[ValidateSet('Basic', 'Negotiate')]
[string]$AuthType="Negotiate"
)
Import-Module ActiveDirectory
try{
$Script:Domain
$Script:Grp
$Script:resultMessage = @()
function Get-NestedGroupMember($group) {
$Script:resultMessage += [PSCustomObject] @{Type = 'Group'; SAMAcccountName=$group.SamAccountName;DistinguishedName=$group.DistinguishedName}
[hashtable]$searchArgs = @{'ErrorAction' = 'Stop'
'Server' = $Script:Domain.PDCEmulator
'AuthType' = $AuthType
'Identity' = $group
}
if($null -ne $DomainAccount){
$searchArgs.Add("Credential", $DomainAccount)
}
$members = Get-ADGroupMember @searchArgs | `
Sort-Object -Property @{Expression="objectClass";Descending=$true} , @{Expression="SamAccountName";Descending=$false}
if($null -ne $members){
foreach($itm in $members){
if($itm.objectClass -eq "group"){
if($Nested -eq $true){
Get-NestedGroupMember($itm)
}
else{
$Script:resultMessage += [PSCustomObject] @{Type = 'Group'; SAMAcccountName=$itm.SamAccountName;DistinguishedName=$itm.DistinguishedName}
}
}
elseif($itm.objectClass -eq "computer"){
if($ShowOnlyGroups -eq $false){
$Script:resultMessage += [PSCustomObject] @{Type = 'Computer'; SAMAcccountName=$itm.SamAccountName;DistinguishedName=$itm.DistinguishedName}
}
}
elseif($itm.objectClass -eq "user"){
if($ShowOnlyGroups -eq $false){
$Script:resultMessage += [PSCustomObject] @{Type = 'User'; SAMAcccountName=$itm.SamAccountName;DistinguishedName=$itm.DistinguishedName}
}
}
}
}
}
[hashtable]$cmdArgs = @{'ErrorAction' = 'Stop'
'AuthType' = $AuthType
}
if($null -ne $DomainAccount){
$cmdArgs.Add("Credential", $DomainAccount)
}
if([System.String]::IsNullOrWhiteSpace($DomainName)){
$cmdArgs.Add("Current", 'LocalComputer')
}
else {
$cmdArgs.Add("Identity", $DomainName)
}
$Script:Domain = Get-ADDomain @cmdArgs
$cmdArgs = @{'ErrorAction' = 'Stop'
'Server' = $Script:Domain.PDCEmulator
'AuthType' = $AuthType
'Identity' = $GroupName
}
if($null -ne $DomainAccount){
$cmdArgs.Add("Credential", $DomainAccount)
}
$Script:Grp = Get-ADGroup @cmdArgs
Get-NestedGroupMember $Script:Grp
ConvertTo-ResultHtml -Result $Script:resultMessage
}
catch{
throw
}
finally{
}