-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetAllWMIInfo.ps1
260 lines (245 loc) · 10.8 KB
/
GetAllWMIInfo.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#Get all Properties and Methods available in class
#If on PS7 change Get-WMIObject to 'Get-CimInstance'
#List all Namespaces in Root\ assuming you are working with root
$PSversion = $PSVersionTable.PSVersion.Major
function ConfirmOut {
Write-Host "
Options:
1. Yes
2. No
"
$global:ConfirmOut = Read-Host -Prompt "Output results to file?"
if (!($global:ConfirmOut -in 1..2)) {
Write-Warning "Pick a valid option"
ConfirmOut
}
if ($global:ConfirmOut -eq 1) {
$global:OutLocation = Read-Host -Prompt "Enter folder to store results"
if (!(Test-Path $global:OutLocation)) {
Write-Warning "Folder does not exist"
ConfirmOut
}
}
}
if ($PSversion -eq 5) {
Write-Host ""
$List1 = Get-WMIObject -Namespace root -Class __Namespace | Select-object -Property Name | Sort-Object -Property Name
Write-host "Available Root namespaces:"
Write-host ""
$List1.Name
Write-Host ""
do {
$null = $Namespace1Error
$Namespace1 = Read-Host "Explore which namespace? Default root\cimv2"
if ($Namespace1.length -eq 0) {
$Namespace1 = "root\cimv2"
}
$Namespace2 = Get-WMIObject -Namespace $Namespace1 -List -ErrorVariable NameSpace1Error -ErrorAction SilentlyContinue | Sort-Object -Property Name
if ($Namespace1Error.capacity -ne 0) {
Write-Warning "Invalid namespace"
}
}
while ($Namespace1Error.capacity -ne 0)
ConfirmOut
switch ($global:ConfirmOut) {
1 {
$Namespace2
Write-Host
Write-Host "Namespace is $Namespace1"
Write-Output "Namespace is $Namespace1" | Out-File $OutLocation\Classes.txt
$Namespace2 | Out-File $global:OutLocation\Classes.txt -Append
}
2 {
$Namespace2
}
}
do {
$null = $Class1Error
Write-Host ""
Write-Host "Current namespace is $Namespace1"
Write-Host ""
$WMIObject = Read-Host -Prompt "Which Class to search"
$Class1 = Get-WMIObject -Namespace $Namespace1 -Class $WMIObject -ErrorVariable Class1Error -ErrorAction SilentlyContinue
if (!($null -eq $Class1Error.Capacity -or $Class1Error.Capacity -eq 0)) {
Write-Warning "Invalid class"
}
else {
$Class1 = Get-WMIObject -Namespace $Namespace1 -Class $WMIObject -List -ErrorVariable Class1Error -ErrorAction SilentlyContinue
}
}
while ($Class1Error.Capacity -ne 0)
switch ($global:ConfirmOut) {
1 {
Write-Host ""
Write-Host "All Properties"
Write-Host ""
Write-Host Namespace is $Namespace1 and Class is $Class1.Name
Write-Output "Namespace is $Namespace1 and Class is" $Class1.Name | Out-File $OutLocation\Properties.txt
if ($Class1.Properties.length -eq 0 -or $null -eq $Class1.Properties.length) {
Write-Output "" | Out-File $OutLocation\Properties.txt -Append
Write-Host ""
Write-Warning "No Properties in this class"
Write-Output "No Properties in this class" | Out-File $global:OutLocation\Properties.txt -Append
Write-Host ""
}
else {
Write-Host ""
Write-Output "Namespace is $Namespace1 and Class is" $Class1.Name | Out-File $OutLocation\Properties.txt
$Class1.Properties | Sort-Object -Property Name | Format-Table -Property Name,Value
$Class1.Properties | Sort-Object -Property Name | Format-Table -Property Name,Value | Out-File $global:OutLocation\Properties.txt -Append
}
Write-Host "Methods"
Write-Host ""
Write-Host Namespace is $Namespace1 and Class is $Class1.Name
Write-Host ""
Write-Output "Namespace is $Namespace1 and Class is" $Class1.Name | Out-File $OutLocation\Methods.txt
Write-Output "" | Out-File $OutLocation\Methods.txt -Append
if ($Class1.Methods.length -eq 0 -or $null -eq $Class1.Methods.length) {
Write-Warning "No Methods in this class"
Write-Output "No Methods in this class" | Out-File $global:OutLocation\Methods.txt -Append
Write-Host ""
}
else {
$Class1.Methods | Sort-Object -Property Name | Format-Table -Property Name,Value
$Class1.Methods | Sort-Object -Property Name | Format-Table -Property Name,Value | Out-File $global:OutLocation\Methods.txt -Append
}
}
2 {
Write-Host ""
Write-Host "All Properties"
Write-Host ""
Write-Host "Namespace is $Namespace1 and Class is" $Class1.Name
Write-Host ""
if ($Class1.Properties.length -eq 0 -or $null -eq $Class1.Properties.length) {
Write-Warning "No Properties in this class"
Write-Host ""
}
else {
$Class1.Properties | Sort-Object -Property Name | Format-Table -Property Name,Value
}
Write-Host "Methods"
Write-Host ""
Write-Host "Namespace is $Namespace1 and Class is" $Class1.Name
Write-Host ""
if ($Class1.Methods.length -eq 0 -or $null -eq $Class1.Methods.length) {
Write-Warning "No Methods in this class"
Write-Host ""
}
else {
$Class1.Methods | Sort-Object -Property Name | Format-Table -Property Name,Value
}
}
}
}
if ($PSversion -gt 5) {
Write-Host ""
$List1 = Get-CimInstance -Namespace root -ClassName __Namespace | Select-object -Property Name | Sort-Object -Property Name
Write-host "Available Root namespaces:"
Write-host ""
$List1.Name
Write-Host ""
do {
$null = $Namespace1Error
$Namespace1 = Read-Host "Explore which namespace? Default root\cimv2"
if ($Namespace1.length -eq 0) {
$Namespace1 = "root\cimv2"
}
$Namespace2 = Get-CimInstance -Namespace $Namespace1 -ClassName __Namespace -ErrorVariable NameSpace1Error -ErrorAction SilentlyContinue | Sort-Object -Property Name
if ($Namespace1Error.capacity -ne 0) {
Write-Warning "Invalid namespace"
}
}
while ($Namespace1Error.capacity -ne 0)
ConfirmOut
switch ($global:ConfirmOut) {
1 {
$Namespace2.Name
Write-Host
Write-Host "Namespace is $Namespace1"
Write-Host
Write-Output "Namespace is $Namespace1" | Out-File $OutLocation\Classes.txt
$Namespace2 | Out-File $global:OutLocation\Classes.txt -Append
}
2 {
Write-Host
Write-Host "Namespace is $Namespace1"
Write-Host
$Namespace2.Name
}
}
do {
$null = $Class1Error
Write-Host ""
$WMIObject = Read-Host -Prompt "Which class to search"
$Class1 = Get-CimInstance -Namespace $Namespace1 -Class $WMIObject -ErrorVariable Class1Error -ErrorAction SilentlyContinue
if (!($null -eq $Class1Error.Capacity -or $Class1Error.Capacity -eq 0)) {
Write-Warning "Invalid class"
}
else {
$Class1 = Get-CimInstance -Namespace $Namespace1\$WMIObject -Class __Namespace -ErrorVariable Class1Error -ErrorAction SilentlyContinue
}
}
while ($Class1Error.Capacity -ne 0)
switch ($global:ConfirmOut) {
1 {
Write-Host ""
Write-Host "All Properties"
Write-Host ""
Write-Host Namespace is $Namespace1 and Class is $Class1.Name
Write-Output "Namespace is $Namespace1 and Class is" $Class1.Name | Out-File $OutLocation\Properties.txt
if ($Class1.Properties.length -eq 0 -or $null -eq $Class1.Properties.length) {
Write-Output "" | Out-File $OutLocation\Properties.txt -Append
Write-Host ""
Write-Warning "No Properties in this class"
Write-Output "No Properties in this class" | Out-File $global:OutLocation\Properties.txt -Append
Write-Host ""
}
else {
Write-Host ""
Write-Output "Namespace is $Namespace1 and Class is" $Class1.Name | Out-File $OutLocation\Properties.txt
$Class1.Properties | Sort-Object -Property Name | Format-Table -Property Name,Value
$Class1.Properties | Sort-Object -Property Name | Format-Table -Property Name,Value | Out-File $global:OutLocation\Properties.txt -Append
}
Write-Host "Methods"
Write-Host ""
Write-Host Namespace is $Namespace1 and Class is $Class1.Name
Write-Host ""
Write-Output "Namespace is $Namespace1 and Class is" $Class1.Name | Out-File $OutLocation\Methods.txt
Write-Output "" | Out-File $OutLocation\Methods.txt -Append
if ($Class1.Methods.length -eq 0 -or $null -eq $Class1.Methods.length) {
Write-Warning "No Methods in this class"
Write-Output "No Methods in this class" | Out-File $global:OutLocation\Methods.txt -Append
Write-Host ""
}
else {
$Class1.Methods | Sort-Object -Property Name | Format-Table -Property Name,Value
$Class1.Methods | Sort-Object -Property Name | Format-Table -Property Name,Value | Out-File $global:OutLocation\Methods.txt -Append
}
}
2 {
Write-Host ""
Write-Host "All Properties"
Write-Host ""
Write-Host "Namespace is $Namespace1 and Class is" $Class1.Name
Write-Host ""
if ($Class1.Properties.length -eq 0 -or $null -eq $Class1.Properties.length) {
Write-Warning "No Properties in this class"
Write-Host ""
}
else {
$Class1.Properties | Sort-Object -Property Name | Format-Table -Property Name,Value
}
Write-Host "Methods"
Write-Host ""
Write-Host "Namespace is $Namespace1 and Class is" $Class1.Name
Write-Host ""
if ($Class1.Methods.length -eq 0 -or $null -eq $Class1.Methods.length) {
Write-Warning "No Methods in this class"
Write-Host ""
}
else {
$Class1.Methods | Sort-Object -Property Name | Format-Table -Property Name,Value
}
}
}
}