Skip to content

Commit

Permalink
Update naming (Endpoint -> System)
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffen Winternheimer committed Aug 28, 2023
1 parent 41311bd commit 828b6aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SystemValidator.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ function Create-HTMLHead {
htmlElement 'meta' @{ charset = 'UTF-8' } { }
htmlElement 'meta' @{ name = 'viewport'; content = 'width=device-width, initial-scale=1.0' } { }
htmlElement 'meta' @{ 'http-equiv' = 'X-UA-Compatible'; content = 'ie=edge' } { }
htmlElement 'title' @{} { "Endpoint_Validator [$(Get-Date)]" }
htmlElement 'title' @{} { "System_Validator [$(Get-Date)]" }
htmlElement 'style' @{} {
".informationRow{
padding-right: 200px;
Expand Down Expand Up @@ -875,7 +875,7 @@ function Create-HTMLBody {
Write-Host "Done"
return $body
}
$Path = "C:\Temp\EndpointValidatorOutput.html"
$Path = "C:\Temp\SystemValidatorOutput.html"
if (!(isAdmin)) {
[System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
[System.Windows.Forms.MessageBox]::Show("Please run as administrator", "Insufficient permisions", 0, [System.Windows.Forms.MessageBoxIcon]::Error)
Expand Down

0 comments on commit 828b6aa

Please sign in to comment.