PowerShell/Scripts/check-windows-system-files.ps1

21 lines
573 B
PowerShell
Raw Normal View History

2021-04-07 11:53:57 +02:00
#!/usr/bin/pwsh
2021-02-26 19:41:03 +01:00
<#
2021-03-22 20:10:18 +01:00
.SYNTAX ./check-windows-system-files.ps1
.DESCRIPTION checks the validity of the Windows system files (requires admin rights)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-02-26 19:41:03 +01:00
#>
#Requires -RunAsAdministrator
2021-02-26 19:41:03 +01:00
try {
sfc /verifyOnly
if ($lastExitCode -ne "0") { throw "'sfc /verifyOnly' failed" }
2021-02-26 19:41:03 +01:00
write-host -foregroundColor green "OK - Windows system files have been checked"
2021-02-26 19:41:03 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}