forked from SheepReaper/SQLPowerDoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Get-WindowsInventoryToClixml.ps1
410 lines (320 loc) · 12.9 KB
/
Get-WindowsInventoryToClixml.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
<#
.SYNOPSIS
Collects comprehensive information about hosts running Microsoft Windows and saves the result to a file.
.DESCRIPTION
This script leverages the NetworkScan and WindowsInventory modules along with Windows Management Instrumentation (WMI) to scan for and collect comprehensive information about hosts running a Windows Operating System and save the results to a file in PowerShell's CLIXML format.
This script can can find, verify, and collect information by Computer Name, Subnet Scan, or Active Directory DNS query.
This script collects information from Windows 2000 or higher.
.PARAMETER DnsServer
'Automatic', or the Name or IP address of an Active Directory DNS server to query for a list of hosts to inventory.
When 'Automatic' is specified the function will use WMI queries to discover the current computer's DNS server(s) to query.
.PARAMETER DnsDomain
'Automatic' or the Active Directory domain name to use when querying DNS for a list of hosts.
When 'Automatic' is specified the function will use the current computer's AD domain.
'Automatic' will be used by default if DnsServer is specified but DnsDomain is not provided.
.PARAMETER Subnet
'Automatic' or a comma delimited list of subnets (in CIDR notation) to scan for hosts to inventory.
When 'Automatic' is specified the function will use the current computer's IP configuration to determine subnets to scan.
A quick refresher on CIDR notation:
BITS SUBNET MASK USABLE HOSTS PER SUBNET
---- --------------- -----------------------
/20 255.255.240.0 4094
/21 255.255.248.0 2046
/22 255.255.252.0 1022
/23 255.255.254.0 510
/24 255.255.255.0 254
/25 255.255.255.128 126
/26 255.255.255.192 62
/27 255.255.255.224 30
/28 255.255.255.240 14
/29 255.255.255.248 6
/30 255.255.255.252 2
/32 255.255.255.255 1
.PARAMETER ComputerName
A comma delimited list of computer names to inventory.
.PARAMETER ExcludeSubnet
A comma delimited list of subnets (in CIDR notation) to exclude when testing for connectivity.
.PARAMETER LimitSubnet
A comma delimited list of subnets (in CIDR notation) to limit the scope of connectivity tests. Only hosts with IP Addresses that fall within the specified subnet(s) will be included in the results.
.PARAMETER ExcludeComputerName
A comma delimited list of computer names to exclude when testing for connectivity. Wildcards are accepted.
An attempt will be made to resolve the IP Address(es) for each computer in this list and those addresses will also be used when determining if a host should be included or excluded when testing for connectivity.
.PARAMETER MaxConcurrencyThrottle
Number between 1-100 to indicate how many instances to collect information from concurrently.
If not provided then the number of logical CPUs present to your session will be used.
.PARAMETER PrivateOnly
Restrict inventory to instances on private class A, B, or C IP addresses
.PARAMETER AdditionalData
A comma delimited list of additional data to collect as part of the Inventory.
Valid values include: AdditionalHardware, BIOS, DesktopSessions, EventLog, FullyQualifiedDomainName, InstalledApplications, InstalledPatches, IPRoutes, LastLoggedOnUser, LocalGroups, LocalUserAccounts, None, PowerPlans, Printers, PrintSpoolerLocation, Processes, ProductKeys, RegistrySize, Services, Shares, StartupCommands, WindowsComponents
Use "None" to bypass collecting all additional information.
The default value is all listed values excluding "None"
.PARAMETER DirectoryPath
Specifies the literal path to the directory where the inventory file and log file will be written.
If not specified then the script defaults to your "My Documents" folder.
.PARAMETER LoggingPreference
Specifies the logging verbosity to use when writing log entries.
Valid values include: None, Standard, Verbose, and Debug.
The default value is "None"
.PARAMETER Zip
Combine the Inventory and Log files into a single compressed ZIP file. This is useful for transferring the output of an inventory to another machine for further analysis.
.EXAMPLE
.\Get-WindowsInventoryToClixml.psm1 -DNSServer automatic -DNSDomain automatic -PrivateOnly
Description
-----------
Collect an inventory by querying Active Directory for a list of hosts to scan for Windows machines. The list of hosts will be restricted to private IP addresses only.
The Inventory file will be written to your "My Documents" folder.
No Log file will be written.
.EXAMPLE
.\Get-WindowsInventoryToClixml.psm1 -Subnet 172.20.40.0/28 -LoggingPreference Standard
Description
-----------
Collect an inventory by scanning all hosts in the subnet 172.20.40.0/28 for Windows machines.
The Inventory and Log files will be written to your "My Documents" folder.
Standard logging will be used.
.EXAMPLE
.\Get-WindowsInventoryToClixml.psm1 -Computername Server1,Server2,Server3
Description
-----------
Collect an inventory by scanning Server1, Server2, and Server3 for Windows machines.
The Inventory file will be written to your "My Documents" folder.
No Log file will be written.
.EXAMPLE
.\Get-WindowsInventoryToClixml.psm1 -Computername $env:COMPUTERNAME -AdditionalData None -LoggingPreference Verbose
Description
-----------
Collect an inventory by scanning the local machine for Windows machines.
Do not collect any data beyond the core set of information.
The Inventory and Log files will be written to your "My Documents" folder.
Verbose logging will be used.
.OUTPUTS
System.Management.Automation.PSObject
.NOTES
.LINK
.\Convert-WindowsInventoryClixmlToExcel.ps1
#>
[cmdletBinding(SupportsShouldProcess=$false, DefaultParametersetName='dns')]
param(
[Parameter(
Mandatory=$true,
ParameterSetName='dns',
HelpMessage='DNS Server(s)'
)]
[alias('dns')]
[ValidatePattern('^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$|^auto$|^automatic$')]
[string[]]
$DnsServer = 'automatic'
,
[Parameter(
Mandatory=$false,
ParameterSetName='dns',
HelpMessage='DNS Domain Name'
)]
[alias("domain")]
[string]
$DnsDomain = 'automatic'
,
[Parameter(
Mandatory=$true,
ParameterSetName='subnet',
HelpMessage='Subnet (in CIDR notation)'
)]
[ValidatePattern('^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)[\\/]\d{1,2}$|^auto$|^automatic$')]
[string[]]
$Subnet = 'automatic'
,
[Parameter(
Mandatory=$true,
ParameterSetName='computername',
HelpMessage='Computer Name(s)'
)]
[alias('computer')]
[string[]]
$ComputerName
,
[Parameter(Mandatory=$false, ParameterSetName='dns')]
[Parameter(Mandatory=$false, ParameterSetName='subnet')]
[ValidatePattern('^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)[\\/]\d{1,2}$')]
[string[]]
$ExcludeSubnet
,
[Parameter(Mandatory=$false, ParameterSetName='dns')]
[ValidatePattern('^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)[\\/]\d{1,2}$')]
[string[]]
$LimitSubnet
,
[Parameter(Mandatory=$false, ParameterSetName='dns')]
[Parameter(Mandatory=$false, ParameterSetName='subnet')]
[string[]]
$ExcludeComputerName
,
[Parameter(Mandatory=$false)]
[ValidateRange(1,100)]
[byte]
$MaxConcurrencyThrottle = $env:NUMBER_OF_PROCESSORS
,
[Parameter(Mandatory=$false)]
[switch]
$PrivateOnly = $false
,
[Parameter(Mandatory=$false)]
[alias('data')]
[ValidateSet('AdditionalHardware','All','BIOS','DesktopSessions','EventLog','FullyQualifiedDomainName','InstalledApplications','InstalledPatches','IPRoutes', `
'LastLoggedOnUser','LocalGroups','LocalUserAccounts','None','PowerPlans','Printers','PrintSpoolerLocation','Processes', `
'ProductKeys','RegistrySize','Services','Shares','StartupCommands','WindowsComponents')]
[string[]]
$AdditionalData = @('None')
,
[Parameter(Mandatory=$false)]
[alias('Directory','Path')]
[ValidateNotNullOrEmpty()]
[string]
$DirectoryPath = ([Environment]::GetFolderPath([Environment+SpecialFolder]::MyDocuments))
,
[Parameter(Mandatory=$false)]
[alias('LogLevel')]
[ValidateSet('none','standard','verbose','debug')]
[string]
$LoggingPreference = 'none'
,
[Parameter(Mandatory=$false)]
[switch]
$Zip = $false
)
######################
# FUNCTIONS
######################
function Write-LogMessage {
[CmdletBinding()]
param(
[Parameter(Position=0, Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Message
,
[Parameter(Position=1, Mandatory=$true)]
[alias('level')]
[ValidateSet('information','verbose','debug','error','warning')]
[System.String]
$MessageLevel
)
try {
if ((Test-Path -Path 'function:Write-Log') -eq $true) {
Write-Log -Message $Message -MessageLevel $MessageLevel
} else {
Write-Host $Message
}
}
catch {
Throw
}
}
function Test-FileIsOpen {
[CmdletBinding()]
[OutputType([System.Boolean])]
param(
[Parameter(Position=0, Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Path
)
process {
$FileIsOpen = $false
$Filestream = $null
try {
$Filestream = [System.IO.File]::Open($ZipFilePath, [System.IO.FileMode]::Open, [System.IO.FileAccess]::Read, [System.IO.FileShare]::None)
$Filestream.Close()
Write-Output $false
}
catch {
Write-Output $true
}
}
}
######################
# VARIABLES
######################
$Inventory = $null
$ParameterHash = $null
[String]$ZipFilePath = $null
$ZipFile = $null
$BasePath = (Join-Path -Path $DirectoryPath -ChildPath ('Windows Inventory - ' + (Get-Date -Format 'yyyy-MM-dd-HH-mm')))
$CliXmlPath = [System.IO.Path]::ChangeExtension($BasePath, 'xml')
$LogPath = [System.IO.Path]::ChangeExtension($BasePath, 'log')
$ZipFilePath = [System.IO.Path]::ChangeExtension($BasePath,'zip')
# Fallback in case value isn't supplied or somehow missing from the environment variables
if (-not $MaxConcurrencyThrottle) { $MaxConcurrencyThrottle = 1 }
######################
# BEGIN SCRIPT
######################
# Import Modules that we need
Import-Module -Name LogHelper, WindowsInventory
# Set logging variables
Set-LogFile -Path $LogPath
Set-LoggingPreference -Preference $LoggingPreference
Write-LogMessage -Message "Starting Script: $($MyInvocation.MyCommand.Path)" -MessageLevel Information
# Build inventory collection command parameters
$ParameterHash = @{
MaxConcurrencyThrottle = $MaxConcurrencyThrottle
PrivateOnly = $PrivateOnly
AdditionalData = $AdditionalData
}
switch ($PsCmdlet.ParameterSetName) {
'dns' {
$ParameterHash.Add('DnsServer',$DnsServer)
$ParameterHash.Add('DnsDomain',$DnsDomain)
if ($ExcludeSubnet) { $ParameterHash.Add('ExcludeSubnet',$ExcludeSubnet) }
if ($LimitSubnet) { $ParameterHash.Add('IncludeSubnet',$LimitSubnet) }
if ($ExcludeComputerName) { $ParameterHash.Add('ExcludeComputerName',$ExcludeComputerName) }
}
'subnet' {
$ParameterHash.Add('Subnet',$Subnet)
if ($ExcludeSubnet) { $ParameterHash.Add('ExcludeSubnet',$ExcludeSubnet) }
if ($ExcludeComputerName) { $ParameterHash.Add('ExcludeComputerName',$ExcludeComputerName) }
}
'computername' {
$ParameterHash.Add('ComputerName',$ComputerName)
}
}
# Collect inventory and export results to Excel (if there are results in the inventory collection)
$Inventory = Get-WindowsInventory @ParameterHash
if ($Inventory.ScanSuccessCount -gt 0) {
$Inventory | Export-Clixml -Path $CliXmlPath -Force -Depth 100 -Encoding UTF8
} else {
Write-LogMessage -Message 'No machines found!' -MessageLevel Warning
}
Write-LogMessage -Message "End Script: $($MyInvocation.MyCommand.Path)" -MessageLevel Information
# Try to create compressed file if the option was specified and a log or CliXml file was created
if (($Zip -eq $true) -and ((Test-Path -Path $LogPath) -or (Test-Path -Path $CliXmlPath))) {
# Create the zip file; if it already exists write a message to the console and skip this part
if ((Test-Path -Path $ZipFilePath) -ne $true) {
Set-Content -Path $ZipFilePath -Value ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18))
$ZipFile = (New-Object -ComObject Shell.Application).NameSpace($ZipFilePath)
# Add log file if it exists
if (($LoggingPreference -ine 'none') -and (Test-Path -Path $LogPath)) {
$ZipFile.CopyHere($LogPath)
Start-Sleep -Milliseconds 500
while (Test-FileIsOpen -Path $ZipFilePath) {
Start-Sleep -Seconds 1
}
}
# Add CliXml file if it exists
if (Test-Path -Path $CliXmlPath) {
$ZipFile.CopyHere($CliXmlPath)
Start-Sleep -Milliseconds 500
while (Test-FileIsOpen -Path $ZipFilePath) {
Start-Sleep -Seconds 1
}
}
# Remove reference to zip file
$ZipFile = $null
} else {
Write-LogMessage -Message "Unable to compress files - '$ZipFilePath' already exists" -MessageLevel Error
}
}
# Remove Variables
Remove-Variable -Name Inventory, ParameterHash, ZipFilePath, ZipFile, BasePath, CliXmlPath, LogPath
# Remove Modules
Remove-Module -Name WindowsInventory, LogHelper
# Call garbage collector
[System.GC]::Collect()