Add check-cpu-temp.ps1

This commit is contained in:
Markus Fleschutz
2021-03-20 16:13:54 +01:00
parent 85d3137b14
commit 1fc4d5af0e
6 changed files with 32 additions and 3 deletions

View File

@@ -15,10 +15,14 @@ try {
if ($IsLinux) {
& check-drive-space.ps1 /
if ($lastExitCode -ne "0") { throw "check-drive-space.ps1 failed" }
} else {
& check-drive-space.ps1 C
if ($lastExitCode -ne "0") { throw "check-drive-space.ps1 failed" }
}
if ($lastExitCode -ne "0") { throw "check-drive-space.ps1 failed" }
& check-cpu-temp.ps1
if ($lastExitCode -ne "0") { throw "check-cpu-temp.ps1 failed" }
if (-not($IsLinux)) {
& check-windows-system-files.ps1