Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

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