$head = @'
'@
$header = "
Reporting Running Software
"
$title = "Example HTML Output"
Get-Process | Sort-Object Company | Where-Object { $_.Product -ne $null } | Select-Object Company, Product, FileVersion | ConvertTo-HTML -head $head -body $header -title $title | Out-File $env:temp\report.htm
& "$env:temp\report.htm"