enable/disable system restore command line


Recommended Posts

  • 10 years later...

Managing system restore from command promt (using these cmd lines):

1) Turn Off (it may delete all system restore points) :

sc config srservice start= disabled

Reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore" /v DisableSR /t REG_DWORD /d 1 /f

net stop srservice

2) Turn On:

sc config srservice start= Auto

net start srservice

Reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore" /v DisableSR /t REG_DWORD /d 0 /f

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.