From 828b6aa471891c9b5a547dcc298c879a3ed0bf7c Mon Sep 17 00:00:00 2001 From: Steffen Winternheimer Date: Mon, 28 Aug 2023 09:39:48 +0200 Subject: [PATCH] Update naming (Endpoint -> System) --- SystemValidator.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SystemValidator.ps1 b/SystemValidator.ps1 index 93595bf..503ce6d 100644 --- a/SystemValidator.ps1 +++ b/SystemValidator.ps1 @@ -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; @@ -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)