Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions DefenderEval/DefenderEval-Report.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -795,8 +795,8 @@ function Invoke-GenerateReport {
$output += "<div class='row justify-content-around'>" # Start of header cards


$output += "<div class='card text-bg-light text-center p-0' style='width: 18rem;'>
<div class='card-header h5 mb-0'>Computer ID</div>
$output += "<div class='card text-bg-light text-center p-0 border-info' style='width: 18rem;'>
<div class='card-header h5 mb-0 text-bg-info'>Computer ID</div>
<div class='card-body mb-0 small'>
<p class='card-text user-select-all'>$($MpPref.ComputerID)</p>
<p class='card-text'><strong>Platform:</strong> $($MpComputerStatus.AMProductVersion)</p>
Expand All @@ -805,8 +805,8 @@ function Invoke-GenerateReport {
</div>"


$output += "<div class='card text-bg-light text-center p-0' style='width: 18rem;'>
<div class='card-header h5'>Operating System</div>
$output += "<div class='card text-bg-light text-center p-0 border-info' style='width: 18rem;'>
<div class='card-header h5 text-bg-info'>Operating System</div>
<div class='card-body small'>
<p class='card-text'><strong>Name:</strong> $(($ComputerInfo.OsName).TrimStart('Microsoft '))</p>"
if ($($ComputerInfo.WindowsInstallationType) -eq "Client") {
Expand Down