I need to Create an automatic restore point on startup. I want to deploy it via Endpoint manager.

Kiran Maharjan 1 Reputation point
2021-05-17T23:54:07.377+00:00

I know we can schedule and create restore point on each start up but I am wanting to deploy it through endpoint manager. I have 1000's of device within the organization to run this.

Any help will be appreciated.

Microsoft Configuration Manager
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Jason Sandys 31,196 Reputation points Microsoft Employee
    2021-05-18T02:22:49.48+00:00

    Do you have a command-line to perform this operation? If so, then just deploy that command-line using a package, run script, or CI. There's nothing different really about doing this in ConfigMgr although I'd suggest that in general what you are wanting to do is a bad idea. Why aren't built-in restore points based on OS level changes sufficient?

    0 comments No comments

  2. HanyunZhu-MSFT 1,846 Reputation points
    2021-05-18T06:16:15.047+00:00

    @Kiran Maharjan

    Agree with Jason, we may achieve this via commline line or scripts.
    Checkpoint-Computer -Description "RestorePoint1" -RestorePointType "MODIFY_SETTINGS"

    Just add a step Run PowerShell Script in the task sequence and choose Enter a PowerShell script, then enter the script.

    For the script, I also performed a quick test in the lab. You may try it in your environment to see if it works either.

    Here's the screenshot for your reference:
    97366-script.png

    Hope the above information may help you.


    If the response is helpful, please click "Accept Answer"and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.