i want to create a restore point in vista
and also tell how to enable it through group policy
where i will get the group policy option

Dani AI

Generated

A short, practical summary tied to the existing replies ( , , , ) that explains what works on Vista Home and how to troubleshoot.

On Vista Home (the Local Group Policy Editor isn’t included), the simplest built‑in method is the System Protection dialog: open System Properties → System Protection, enable protection for the system drive if it’s off, then use Create to add a manual restore point and give it a descriptive name. The System Protection dialog can also be opened directly with systempropertiesprotection.exe. (learn.microsoft.com)

A quick one‑line alternative (useful for a shortcut or scheduled task) is to run an elevated command prompt and call the WMI method that makes restore points. Example command (Run as Administrator):

wmic.exe /Namespace:\\root\default Path SystemRestore Call CreateRestorePoint "Manual Restore Point", 100, 7

If the command reports “Method execution successful” and ReturnValue = 0, the checkpoint was created. Note that Windows may skip creating a new restore point if one was created recently (there is a default frequency limit). The WMI CreateRestorePoint API is the documented way to script this behavior. (makeuseof.com)

If the Create button is greyed out or the dialog says creation is blocked by Group Policy (as mentioned), that usually means policy/registry settings have disabled System Restore. Because Vista Home doesn’t include gpedit.msc, the practical options are: use the System Protection GUI or the WMIC/script approach above; check that System Protection is enabled and there’s free disk space; inspect the Event Viewer for restore/VSS errors; and run VSS diagnostics such as vssadmin list writers to confirm shadow‑copy writers are healthy. For stubborn cases, run System File Checker (sfc /scannow) and review VSS event errors before changing policies or registry keys. (learn.microsoft.com)

These steps provide a safe, Home‑edition friendly way to create and verify restore points without gpedit.msc, and explain why an existing point might be labeled “Automatic Update” (that label is the description Windows assigns to automatically created checkpoints).

Recommended Answers

All 4 Replies

Um, not really sure how the GP Manger relates to the System Protection Manger, which handles Restore-Point creation. Can you take a little more time to clearly explain what you are actually hoping to achieve?

You must be getting this message

Restore point creation disabled by Group Policy


Follow below steps and its gonna work for you


Using the Group Policy Editor

If your edition of Windows Vista includes the Group Policy Editor snap-in (gpedit.msc), follow these steps:

1. Click Start, type gpedit.msc and press ENTER

2. Go to the following branch:
Computer Configuration | Administrative Templates | System | System Restore

3. Double-click Turn off Configuration and set it to Not configured.

Note: If the above setting is already set to Not configured, set it to Enabled and click Apply. Then revert back the setting to Not configured, and click Apply, OK.

4. Exit the Group Policy Editor.

Let me know if the issue is resolved !

once i have created restore point now it shows me automatic update when i click on it
now how to create a new restore point
the gpedit.msc is not opening as i have vista home os

Have you tried the steps given here:

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.