Files

4 lines
244 B
PowerShell
Raw Permalink Normal View History

If ( $null -ne $(Get-ComputerRestorePoint) ) { Write-Output "System Restore is already enabled" ; Exit }
2023-10-05 13:11:38 -04:00
Write-Output "Enabling System Restore"
2023-04-26 12:22:22 -04:00
Try { Enable-ComputerRestore -Drive $Env:SystemDrive }
2023-10-05 13:17:18 -04:00
Catch { Write-Error $_.Exception.Message }