Restore Point - Create
config/tweaks.json
828 "WPFTweaksRestorePoint": {
829 "Content": "Restore Point - Create",
830 "Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications.",
831 "category": "Essential Tweaks",
832 "panel": "1",
833 "Checked": "False",
834 "registry": [
835 {
836 "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SystemRestore",
837 "Name": "SystemRestorePointCreationFrequency",
838 "Value": "0",
839 "Type": "DWord",
840 "OriginalValue": "1440"
841 }
842 ],
843 "InvokeScript": [
844 "
845 if (-not (Get-ComputerRestorePoint)) {
846 Enable-ComputerRestore -Drive $Env:SystemDrive
847 }
848
849 Checkpoint-Computer -Description \"System Restore Point created by WinUtil\" -RestorePointType MODIFY_SETTINGS
850 Write-Host \"System Restore Point Created Successfully\" -ForegroundColor Green
851 "
852 ],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.