Skip to content

Restore Point - Create

config/tweaks.json
890  "WPFTweaksRestorePoint": {
891    "Content": "Restore Point - Create",
892    "Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications.",
893    "category": "Essential Tweaks",
894    "panel": "1",
895    "Checked": "False",
896    "registry": [
897      {
898        "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SystemRestore",
899        "Name": "SystemRestorePointCreationFrequency",
900        "Value": "0",
901        "Type": "DWord",
902        "OriginalValue": "1440"
903      }
904    ],
905    "InvokeScript": [
906      "
907      if (-not (Get-ComputerRestorePoint)) {
908          Enable-ComputerRestore -Drive $Env:SystemDrive
909      }
910
911      Checkpoint-Computer -Description \"System Restore Point created by WinUtil\" -RestorePointType MODIFY_SETTINGS
912      Write-Host \"System Restore Point Created Successfully\" -ForegroundColor Green
913      "
914    ],

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.