-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGet-HTMLSystemreport.ps1
203 lines (185 loc) · 6.47 KB
/
Get-HTMLSystemreport.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
<#
.SYNOPSIS
Generates an HTML-based system report for one or more computers.
Each computer specified will result in a separate HTML file;
specify the -path as a folder where you want the files written.
Note that existing files will be overwritten.
.PARAMETER ComputerName
One or more computer names or IP addresses to query.
.PARAMETER Path
The path of the folder where the files should be written.
.PARAMETER CssPath
The path and filename of the CSS template to use.
.EXAMPLE
New-HTMLSystemReport -Computername ONE,tWO `
-Path C:\Reports\
#>
[CmdletBinding()]
param(
[Parameter(Mandatory=$True,
ValueFromPipeline=$True,
ValueFromPipelineByPropertyName=$True)]
[String[]]$ComputerName,
[Parameter(Mandatory=$True)]
[String]$Path
)
PROCESS {
$Style = @"
<style>
Body {
color:#333333;
font-family:calibri,Tahoma;
font-size: 10pt;
}
h1 {
text-align:center;
}
h2 {
border-top:1px solid #666666;
}
th {
font-weight:bold;
color:#eeeeee;
background-color:#333333;
}
.odd { Background-color:#ffffff; }
.even { Background-color:#dddddd; }
</style>
"@
function Get-InfoOS {
[CmdletBinding()]
param(
[Parameter(Mandatory=$True)]
[String]$Computername
)
$os = Get-WmiObject -Class Win32_OperatingSystem -ComputerName $Computername
$props = @{'OSVersion'=$os.Version;
'SPVersion'=$os.ServicePackageMajorVersion;
'OSBuild'=$os.BuildNumber}
New-Object -TypeName PSObject -Property $props
}
function Get-InfoCompSystem {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)]
[String]$ComputerName
)
$CS = Get-WmiObject -Class Win32_ComputerSystem -ComputerName $ComputerName
$Props = @{'Model'=$CS.Model;
'Manufacturer'=$cs.Manufacturer;
'RAM (GB)'="{0:N2}" -f ($cs.totalphysicalmemory / 1GB);
'Sockets'=$cs.numberofprocessors;
'cores'=$cs.numberoflogicalprocessors}
New-Object -TypeName PSObject -Property $props
}
function Get-InfoBadservice {
[CmdletBinding()]
param(
[Parameter(Mandatory=$True)]
[String]$ComputerName
)
$svcs = Get-WmiObject Win32_Service -ComputerName $ComputerName `
-Filter "StartMode='Auto' AND State<>'Running'"
foreach ($svc in $svcs) {
$Props = @{'ServiceName'=$svc.name;
'LogonAccount'=$svc.startname;
'DisplayName'=$svc.displayname}
New-Object -TypeName PSObject -Property $props
}
}
function Get-InfoProc {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)]
[String]$ComputerName
)
$procs = Get-WmiObject -class Win32_Process -ComputerName $ComputerName
foreach ($proc in $Procs) {
$props = @{'procname'=$Proc.Name;
'Executable'=$proc.ExecutablePath}
New-Object -TypeName PSObject -Property $props
}
}
function Get-InfoNIC {
[CmdletBinding()]
param (
[Parameter(Mandatory=$True)]
[String]$ComputerName
)
$nics = Get-WmiObject -Class Win32_NetworkAdapter -ComputerName $ComputerName `
-Filter "PhysicalAdapter=True"
foreach ($nic in $nics) {
$props = @{'NICName'=$nic.serviceName;
'Speed'=$nic.speed / 1MB -as [int];
'Manufacturer'=$nic.manufacturer;
'MACAddress'=$nic.macaddress}
New-Object -TypeName PSObject -Property $props
}
}
function set-AlternatingCSSClasses {
[CmdletBinding()]
param(
[Parameter(Mandatory=$True,
ValuefromPipeLine=$True)]
[String]$HTMLFragment,
[Parameter(Mandatory=$True)]
[String]$CSSEvenClass,
[Parameter(Mandatory=$True)]
[String]$CssOddClass
)
[xml]$xml = $HTMLFragment
$table = $xml.SelectSingleNode('table')
$classname = $CssOddClass
foreach ($tr in $table.tr) {
if ($classname -eq $CSSEvenClass) {
$classname = $CssOddClass
} else {
$classname = $CSSEvenClass
}
$class = $xml.CreateAttribute('class')
$class.value = $classname
$tr.attributes.append($class) | Out-Null
}
$xml.InnerXml | Out-String
}
foreach ($computer in $ComputerName) {
Try {
$everything_ok = $true
Write-Verbose "Checking Connectivity to $computer"
Get-WmiObject -Class Win32_Bios -ComputerName $computer -EA Stop | Out-Null
} catch {
Write-Warning "$Computer failed"
$everything_ok = $false
}
if ($everything_ok) {
$filepath = Join-Path $path -ChildPath "$computer.html"
$html_os = Get-InfoOS -Computername $Computer |
ConvertTo-Html -as List -Fragment `
-PreContent "<h2>OS</h2>" |
Out-String
$html_cs = Get-InfoCompSystem -ComputerName $Computer |
ConvertTo-Html -as List -Fragment `
-PreContent "<h2>Hardware</h2>" |
Out-String
$html_pr = Get-InfoProc -ComputerName $Computer |
ConvertTo-Html -Fragment |
out-String |
set-AlternatingCSSClasses -CSSEvenClass 'even' -CssOddClass 'odd'
$html_pr = "<h2>Processes</h2>$html_pr"
$html_sv = Get-InfoBadservice -ComputerName $Computer |
ConvertTo-Html -Fragment |
Out-String |
set-AlternatingCSSClasses -CSSEvenClass 'even' -CssOddClass 'odd'
$html_sv = "<h2>Check services</h2>$html_sv"
$html_na = Get-InfoNIC -ComputerName $computer |
ConvertTo-Html -Fragment |
Out-String |
set-AlternatingCSSClasses -CSSEvenClass 'Even' -CssOddClass 'odd'
$html_na = "<h2>NICs</h2>$html_na"
$params = @{'Head'="<title>Report for $computer</title>$style";
'PreContent'="<h1>System Report for $computer</h1>";
'PostContent'=$html_os, $html_cs, $html_pr, $html_sv, $html_na}
ConvertTo-Html @params | Out-File -filepath $filepath
}
}
}