Skip to content

Create Restore Point

config/tweaks.json
1758  "WPFTweaksRestorePoint": {
1759    "Content": "Create Restore Point",
1760    "Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications.",
1761    "category": "Essential Tweaks",
1762    "panel": "1",
1763    "Checked": "False",
1764    "registry": [
1765      {
1766        "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SystemRestore",
1767        "Name": "SystemRestorePointCreationFrequency",
1768        "Value": "0",
1769        "Type": "DWord",
1770        "OriginalValue": "1440"
1771      }
1772    ],
1773    "InvokeScript": [
1774      "
1775      if (-not (Get-ComputerRestorePoint)) {
1776          Enable-ComputerRestore -Drive $Env:SystemDrive
1777      }
1778
1779      Checkpoint-Computer -Description \"System Restore Point created by WinUtil\" -RestorePointType MODIFY_SETTINGS
1780      Write-Host \"System Restore Point Created Successfully\" -ForegroundColor Green
1781      "
1782    ],

Registry Changes

Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place.

You can find information about the registry on Wikipedia and Microsoft’s Website.