Create a restore point
AnsweredIs there already an easy way to create a restore point before starting an installation?
-
Official comment
It's pretty easy to do with PowerShell. Create a PowerShell step in deploy and paste the following script. Run it as Local System.
$Service = Get-Service -Name "Secondary Logon"
if ($Service.Status -ne "Running"){
Start-Service $Service
}
Checkpoint-Computer -Description "Manual Restore Point"All this does is checks to see if the Secondary Logon service is running, if it's not running, it starts that service, then runs a basic system restore point with the description of "Manual Restore Point".
Comment actions
Please sign in to leave a comment.
Comments
3 comments