Skip to content

Restore Point - Create

config/tweaks.json
843  "WPFTweaksRestorePoint": {
844    "Content": "Restore Point - Create",
845    "Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications.",
846    "category": "Essential Tweaks",
847    "panel": "1",
848    "Checked": "False",
849    "registry": [
850      {
851        "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SystemRestore",
852        "Name": "SystemRestorePointCreationFrequency",
853        "Value": "0",
854        "Type": "DWord",
855        "OriginalValue": "1440"
856      }
857    ],
858    "InvokeScript": [
859      "
860      if (-not (Get-ComputerRestorePoint)) {
861          Enable-ComputerRestore -Drive $Env:SystemDrive
862      }
863
864      Checkpoint-Computer -Description \"System Restore Point created by WinUtil\" -RestorePointType MODIFY_SETTINGS
865      Write-Host \"System Restore Point Created Successfully\" -ForegroundColor Green
866      "
867    ],

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.