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