Answered

Create a restore point

Is there already an easy way to create a restore point before starting an installation?

0

Comments

3 comments
Date Votes
  • 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". 

  • You can use attached VBS script.

    0
  • Hi Nate;

      Test this in my company. Works amazing!! Thanks.

    0

Post is closed for comments.

Didn't find what you were looking for?

New post