
close
close
Over the last few articles, I have demonstrated some HTML tips and tricks for creating HTML reports in PowerShell. We are going to pick up where we left off. If you are just jumping in, take a few minutes to get caught up. I am going to use the same event log data as my source.
$data = Get-Eventlog -List | Select @{Name="Max(K)";Expression = {"{0:n0}" -f $_.MaximumKilobytes }}, @{Name="Retain";Expression = {$_.MinimumRetentionDays }}, OverFlowAction, @{Name="Entries";Expression = {"{0:n0}" -f $_.entries.count}}, @{Name="Log";Expression = {$_.LogDisplayname}}
In the previous file, I used a CSS that included this entry:
.footer{ color:green; margin-left:25px; font-family:Tahoma; font-size:8pt; }
However, my final files never had any green text. My original intention was that the date information at the end of the report would be the footer. In order for the style to apply, the final HTML code needs to look like this:
<p class='footer'>07/24/2017 15:07:29</p>
Because this is post-content, all I need to do is use a value like this for the -PostContent parameter:
"<p class='footer'>$(get-date)</p>"
Here is the complete hashtable of parameters that I am going to splat to Convertto-HTML:
$convertParams = @{ PreContent = "<H1>$($env:COMPUTERNAME)</H1>" PostContent = "<p class='footer'>$(get-date)</p>" head = @" <Title>Event Log Report</Title> <style> body { background-color:#E5E4E2; font-family:Monospace; font-size:10pt; } td, th { border:0px solid black; border-collapse:collapse; white-space:pre; } th { color:white; background-color:black; } table, tr, td, th { padding: 2px; margin: 0px ;white-space:pre; } tr:nth-child(odd) {background-color: lightgray} table { width:95%;margin-left:5px; margin-bottom:20px;} h2 { font-family:Tahoma; color:#6D7B8D; } .footer { color:green; margin-left:10px; font-family:Tahoma; font-size:8pt; font-style:italic; } </style> "@ } $data | convertto-html @convertParams | out-file d:\temp\a.htm
[xml]$html = $data | convertto-html -Fragment
Now the fun part. I need to loop through each table row and check the value of the entry count.
for ($i=1;$i -le $html.table.tr.count-1;$i++) { if ($html.table.tr[$i].td[3] -eq 0) { $class = $html.CreateAttribute("class") $class.value = 'alert' $html.table.tr[$i].childnodes[3].attributes.append($class) | out-null } }
I am starting my loop at 1 because the table header is row 0. I will keep looping for every table row in the table. For each row, I check the value of the 4th table column, (starting at 0 remember?) which is the column with my entry count. If the value is equal to 0, I will create the class attribute and append it to the column entry. The final results are in the InnerXML property.
$convertParams = @{ PreContent = "<H1>$($env:COMPUTERNAME)</H1>" PostContent = "<p class='footer'>$(get-date)</p>" head = @" <Title>Event Log Report</Title> <style> body { background-color:#E5E4E2; font-family:Monospace; font-size:10pt; } td, th { border:0px solid black; border-collapse:collapse; white-space:pre; } th { color:white; background-color:black; } table, tr, td, th { padding: 2px; margin: 0px ;white-space:pre; } tr:nth-child(odd) {background-color: lightgray} table { width:95%;margin-left:5px; margin-bottom:20px;} h2 { font-family:Tahoma; color:#6D7B8D; } .alert { color: red; } .footer { color:green; margin-left:10px; font-family:Tahoma; font-size:8pt; font-style:italic; } </style> "@ }
I already have the HTML body, so I will not be piping $data to Convertto-HTML. Instead, I will add it as a parameter and splat the hashtable.
$convertParams.add("body",$html.InnerXml) convertto-html @convertParams | out-file d:\temp\a.htm
$fragments = @() $fragments+= "<H1>$($env:COMPUTERNAME)</H1>" [xml]$html = $data | convertto-html -Fragment for ($i=1;$i -le $html.table.tr.count-1;$i++) { if ($html.table.tr[$i].td[3] -eq 0) { $class = $html.CreateAttribute("class") $class.value = 'alert' $html.table.tr[$i].childnodes[3].attributes.append($class) | out-null } } $fragments+= $html.InnerXml $fragments+= "<p class='footer'>$(get-date)</p>" $convertParams = @{ head = @" <Title>Event Log Report</Title> <style> body { background-color:#E5E4E2; font-family:Monospace; font-size:10pt; } td, th { border:0px solid black; border-collapse:collapse; white-space:pre; } th { color:white; background-color:black; } table, tr, td, th { padding: 2px; margin: 0px ;white-space:pre; } tr:nth-child(odd) {background-color: lightgray} table { width:95%;margin-left:5px; margin-bottom:20px;} h2 { font-family:Tahoma; color:#6D7B8D; } .alert { color: red; } .footer { color:green; margin-left:10px; font-family:Tahoma; font-size:8pt; font-style:italic; } </style> "@ body = $fragments } convertto-html @convertParams | out-file d:\temp\a.htm
To highlight the entire row in red, append the class to the row, instead of the table cell:
#$html.table.tr[$i].childnodes[3].attributes.append($class) | out-null $html.table.tr[$i].attributes.append($class) | out-null
Highlighted Rows (Image credit: Jeff Hicks)
More in PowerShell
Most popular on petri