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

26 lines
572 B
PowerShell
Raw Normal View History

2021-09-11 11:37:22 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
check-windows-system-files.ps1
.DESCRIPTION
2021-08-29 17:50:03 +02:00
Checks the validity of the Windows system files (requires admin rights).
2021-07-13 21:10:02 +02:00
.EXAMPLE
PS> .\check-windows-system-files.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-29 17:50:03 +02:00
Author: Markus Fleschutz · License: CC0
2021-02-26 19:41:03 +01:00
#>
2021-09-11 11:37:22 +02: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
2021-08-24 20:46:03 +02:00
"✔️ checked Windows system files"
2021-02-26 19:41:03 +01:00
exit 0
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2021-02-26 19:41:03 +01:00
exit 1
}