From ee0a2818b678ccf68430400df6d91d479a0958bb Mon Sep 17 00:00:00 2001 From: ChrisTitusTech Date: Wed, 7 Aug 2024 16:57:14 +0000 Subject: [PATCH] Compile Winutil --- .../Features/DisableLegacyRecovery.md | 2 +- .../Features/DisableSearchSuggestions.md | 2 +- .../features/Features/EnableLegacyRecovery.md | 2 +- .../Features/EnableSearchSuggestions.md | 2 +- docs/dev/features/Features/RegBackup.md | 2 +- .../tweaks/Essential-Tweaks/DiskCleanup.md | 2 +- .../Essential-Tweaks/LaptopHibernation.md | 6 +- .../tweaks/Essential-Tweaks/RestorePoint.md | 2 +- docs/dev/tweaks/Essential-Tweaks/Tele.md | 2 +- .../BlockAdobeNet.md | 4 +- .../z--Advanced-Tweaks---CAUTION/DeBloat.md | 2 +- .../DebloatAdobe.md | 4 +- .../DisableLMS1.md | 4 +- .../RemoveCopilot.md | 4 +- .../RemoveEdge.md | 4 +- .../RemoveHomeGallery.md | 4 +- .../RemoveOnedrive.md | 4 +- .../RightClickMenu.md | 6 +- winutil.ps1 | 501 +++++++++++++----- 19 files changed, 388 insertions(+), 171 deletions(-) diff --git a/docs/dev/features/Features/DisableLegacyRecovery.md b/docs/dev/features/Features/DisableLegacyRecovery.md index 4b8fbb96..98b948ca 100644 --- a/docs/dev/features/Features/DisableLegacyRecovery.md +++ b/docs/dev/features/Features/DisableLegacyRecovery.md @@ -48,7 +48,7 @@ Disables Advanced Boot Options screen that lets you start Windows in advanced tr } New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Configuration Manager\LastKnownGood' -Name 'Enabled' -Type DWord -Value 0 -Force Start-Process -FilePath cmd.exe -ArgumentList '/c bcdedit /Set {Current} BootMenuPolicy Standard' -Wait - + ``` diff --git a/docs/dev/features/Features/DisableSearchSuggestions.md b/docs/dev/features/Features/DisableSearchSuggestions.md index 3c94d0bb..f683b270 100644 --- a/docs/dev/features/Features/DisableSearchSuggestions.md +++ b/docs/dev/features/Features/DisableSearchSuggestions.md @@ -48,7 +48,7 @@ Disables web suggestions when searching using Windows Search. } New-ItemProperty -Path 'HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer' -Name 'DisableSearchBoxSuggestions' -Type DWord -Value 1 -Force Stop-Process -name explorer -force - + ``` diff --git a/docs/dev/features/Features/EnableLegacyRecovery.md b/docs/dev/features/Features/EnableLegacyRecovery.md index 9f03b193..938a8e53 100644 --- a/docs/dev/features/Features/EnableLegacyRecovery.md +++ b/docs/dev/features/Features/EnableLegacyRecovery.md @@ -48,7 +48,7 @@ Enables Advanced Boot Options screen that lets you start Windows in advanced tro } New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Configuration Manager\LastKnownGood' -Name 'Enabled' -Type DWord -Value 1 -Force Start-Process -FilePath cmd.exe -ArgumentList '/c bcdedit /Set {Current} BootMenuPolicy Legacy' -Wait - + ``` diff --git a/docs/dev/features/Features/EnableSearchSuggestions.md b/docs/dev/features/Features/EnableSearchSuggestions.md index 3c817732..1cb9c51a 100644 --- a/docs/dev/features/Features/EnableSearchSuggestions.md +++ b/docs/dev/features/Features/EnableSearchSuggestions.md @@ -48,7 +48,7 @@ Enables web suggestions when searching using Windows Search. } New-ItemProperty -Path 'HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer' -Name 'DisableSearchBoxSuggestions' -Type DWord -Value 0 -Force Stop-Process -name explorer -force - + ``` diff --git a/docs/dev/features/Features/RegBackup.md b/docs/dev/features/Features/RegBackup.md index 4b81bb9e..2012d605 100644 --- a/docs/dev/features/Features/RegBackup.md +++ b/docs/dev/features/Features/RegBackup.md @@ -48,7 +48,7 @@ Enables daily registry backup, previously disabled by Microsoft in Windows 10 18 $action = New-ScheduledTaskAction -Execute 'schtasks' -Argument '/run /i /tn "\Microsoft\Windows\Registry\RegIdleBackup"' $trigger = New-ScheduledTaskTrigger -Daily -At 00:30 Register-ScheduledTask -Action $action -Trigger $trigger -TaskName 'AutoRegBackup' -Description 'Create System Registry Backups' -User 'System' - + ``` diff --git a/docs/dev/tweaks/Essential-Tweaks/DiskCleanup.md b/docs/dev/tweaks/Essential-Tweaks/DiskCleanup.md index 76908882..fedad44a 100644 --- a/docs/dev/tweaks/Essential-Tweaks/DiskCleanup.md +++ b/docs/dev/tweaks/Essential-Tweaks/DiskCleanup.md @@ -41,7 +41,7 @@ Runs Disk Cleanup on Drive C: and removes old Windows Updates. cleanmgr.exe /d C: /VERYLOWDISK Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase - + ``` diff --git a/docs/dev/tweaks/Essential-Tweaks/LaptopHibernation.md b/docs/dev/tweaks/Essential-Tweaks/LaptopHibernation.md index cd1b6fa8..ff8cce93 100644 --- a/docs/dev/tweaks/Essential-Tweaks/LaptopHibernation.md +++ b/docs/dev/tweaks/Essential-Tweaks/LaptopHibernation.md @@ -81,7 +81,7 @@ Most modern laptops have connected standby enabled which drains the battery, thi Start-Process -FilePath powercfg -ArgumentList "/change standby-timeout-dc 60" -NoNewWindow -Wait Start-Process -FilePath powercfg -ArgumentList "/change monitor-timeout-ac 10" -NoNewWindow -Wait Start-Process -FilePath powercfg -ArgumentList "/change monitor-timeout-dc 1" -NoNewWindow -Wait - + ``` ## Undo Script @@ -96,7 +96,7 @@ Most modern laptops have connected standby enabled which drains the battery, thi Start-Process -FilePath powercfg -ArgumentList "/change standby-timeout-dc 15" -NoNewWindow -Wait Start-Process -FilePath powercfg -ArgumentList "/change monitor-timeout-ac 15" -NoNewWindow -Wait Start-Process -FilePath powercfg -ArgumentList "/change monitor-timeout-dc 15" -NoNewWindow -Wait - + ``` ## Registry Changes @@ -113,7 +113,7 @@ You can find information about the registry on [Wikipedia](https://www.wikiwand. **New Value:** 2 -### Registry Key: Attributes +### Registry Key: Attributes **Type:** DWord diff --git a/docs/dev/tweaks/Essential-Tweaks/RestorePoint.md b/docs/dev/tweaks/Essential-Tweaks/RestorePoint.md index 0d1aaea8..a7db58af 100644 --- a/docs/dev/tweaks/Essential-Tweaks/RestorePoint.md +++ b/docs/dev/tweaks/Essential-Tweaks/RestorePoint.md @@ -126,7 +126,7 @@ Creates a restore point at runtime in case a revert is needed from WinUtil modif Checkpoint-Computer -Description $description -RestorePointType "MODIFY_SETTINGS" Write-Host -ForegroundColor Green "System Restore Point Created Successfully" } - + ``` diff --git a/docs/dev/tweaks/Essential-Tweaks/Tele.md b/docs/dev/tweaks/Essential-Tweaks/Tele.md index 544b8adf..648398b6 100644 --- a/docs/dev/tweaks/Essential-Tweaks/Tele.md +++ b/docs/dev/tweaks/Essential-Tweaks/Tele.md @@ -428,7 +428,7 @@ Disables Microsoft Telemetry. Note: This will lock many Edge Browser settings. M # Disable Defender Auto Sample Submission Set-MpPreference -SubmitSamplesConsent 2 -ErrorAction SilentlyContinue | Out-Null - + ``` ## Registry Changes diff --git a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md index 54ef2fe2..a4683703 100644 --- a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md +++ b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md @@ -182,7 +182,7 @@ Reduce user interruptions by selectively blocking connections to Adobe's activat } catch { Write-Error "Failed to flush DNS cache. Error: $_" } - + ``` ## Undo Script @@ -232,7 +232,7 @@ Reduce user interruptions by selectively blocking connections to Adobe's activat } catch { Write-Error "Failed to flush DNS cache. Error: $_" } - + ``` diff --git a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md index a59d4715..c5b0e205 100644 --- a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md +++ b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md @@ -176,7 +176,7 @@ USE WITH CAUTION!!!!! This will remove ALL Microsoft store apps other than the e $proc = Start-Process -FilePath $FilePath -Args $ProcessArgs -PassThru $proc.WaitForExit() } - + ``` diff --git a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DebloatAdobe.md b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DebloatAdobe.md index ae598dfd..ad05c612 100644 --- a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DebloatAdobe.md +++ b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DebloatAdobe.md @@ -220,7 +220,7 @@ Manages Adobe Services, Adobe Desktop Service, and Acrobat Updates CCStopper AcrobatUpdates - + ``` ## Undo Script @@ -262,7 +262,7 @@ Manages Adobe Services, Adobe Desktop Service, and Acrobat Updates RestoreCCService AcrobatUpdates - + ``` ## Service Changes diff --git a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableLMS1.md b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableLMS1.md index 5f0b339d..834e0c0f 100644 --- a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableLMS1.md +++ b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableLMS1.md @@ -123,7 +123,7 @@ Intel LMS service is always listening on all ports and could be a huge security Write-Host "All found LMS.exe files have been deleted."; } Write-Host 'Intel LMS vPro service has been disabled, removed, and blocked.'; - + ``` ## Undo Script @@ -132,7 +132,7 @@ Intel LMS service is always listening on all ports and could be a huge security Write-Host "LMS vPro needs to be redownloaded from intel.com" - + ``` diff --git a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md index 1594735d..7ed43cfa 100644 --- a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md +++ b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md @@ -70,7 +70,7 @@ Disables MS Copilot AI built into Windows since 23H2. Write-Host "Remove Copilot" dism /online /remove-package /package-name:Microsoft.Windows.Copilot - + ``` ## Undo Script @@ -79,7 +79,7 @@ Disables MS Copilot AI built into Windows since 23H2. Write-Host "Install Copilot" dism /online /add-package /package-name:Microsoft.Windows.Copilot - + ``` ## Registry Changes diff --git a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md index cfd3c1cc..6662face 100644 --- a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md +++ b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md @@ -45,7 +45,7 @@ Removes MS Edge when it gets reinstalled by updates. Credit: Techie Jack ```powershell Uninstall-WinUtilEdgeBrowser - + ``` ## Undo Script @@ -54,7 +54,7 @@ Removes MS Edge when it gets reinstalled by updates. Credit: Techie Jack Write-Host "Install Microsoft Edge" Start-Process -FilePath winget -ArgumentList "install --force -e --accept-source-agreements --accept-package-agreements --silent Microsoft.Edge " -NoNewWindow -Wait - + ``` ## Function: Uninstall-WinUtilEdgeBrowser diff --git a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHomeGallery.md b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHomeGallery.md index 8c927b3b..25fd7090 100644 --- a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHomeGallery.md +++ b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHomeGallery.md @@ -50,7 +50,7 @@ Removes the Home and Gallery from explorer and sets This PC as default REG DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}" /f REG DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}" /f REG ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v "LaunchTo" /t REG_DWORD /d "1" - + ``` ## Undo Script @@ -60,7 +60,7 @@ Removes the Home and Gallery from explorer and sets This PC as default REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}" /f /ve /t REG_SZ /d "{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}" REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}" /f /ve /t REG_SZ /d "CLSID_MSGraphHomeFolder" REG DELETE "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v "LaunchTo" - + ``` diff --git a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOnedrive.md b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOnedrive.md index 294de59b..9bfada63 100644 --- a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOnedrive.md +++ b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOnedrive.md @@ -197,7 +197,7 @@ Moves OneDrive files to Default Home Folders and Uninstalls it. } else { Write-Host "Something went Wrong during the Unistallation of OneDrive" -ForegroundColor Red } - + ``` ## Undo Script @@ -206,7 +206,7 @@ Moves OneDrive files to Default Home Folders and Uninstalls it. Write-Host "Install OneDrive" Start-Process -FilePath winget -ArgumentList "install -e --accept-source-agreements --accept-package-agreements --silent Microsoft.OneDrive " -NoNewWindow -Wait - + ``` diff --git a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md index 400b11a2..34cbb569 100644 --- a/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md +++ b/docs/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md @@ -1,4 +1,4 @@ -# Set Classic Right-Click Menu +# Set Classic Right-Click Menu Last Updated: 2024-08-07 @@ -54,7 +54,7 @@ Great Windows 11 tweak to bring back good context menus when right clicking thin Write-Host Restarting explorer.exe ... $process = Get-Process -Name "explorer" Stop-Process -InputObject $process - + ``` ## Undo Script @@ -66,7 +66,7 @@ Great Windows 11 tweak to bring back good context menus when right clicking thin Write-Host Restarting explorer.exe ... $process = Get-Process -Name "explorer" Stop-Process -InputObject $process - + ``` diff --git a/winutil.ps1 b/winutil.ps1 index d46f5b66..2158ed4f 100644 --- a/winutil.ps1 +++ b/winutil.ps1 @@ -8811,7 +8811,8 @@ $sync.configs.feature = '{ "NetFx4-AdvSrvs", "NetFx3" ], - "InvokeScript": [] + "InvokeScript": [], + "link": "https://christitustech.github.io/winutil/dev/features/Features/dotnet" }, "WPFFeatureshyperv": { "Content": "HyperV Virtualization", @@ -8831,7 +8832,8 @@ $sync.configs.feature = '{ ], "InvokeScript": [ "Start-Process -FilePath cmd.exe -ArgumentList ''/c bcdedit /set hypervisorschedulertype classic'' -Wait" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/features/Features/hyperv" }, "WPFFeatureslegacymedia": { "Content": "Legacy Media (WMP, DirectPlay)", @@ -8845,7 +8847,8 @@ $sync.configs.feature = '{ "DirectPlay", "LegacyComponents" ], - "InvokeScript": [] + "InvokeScript": [], + "link": "https://christitustech.github.io/winutil/dev/features/Features/legacymedia" }, "WPFFeaturewsl": { "Content": "Windows Subsystem for Linux", @@ -8857,7 +8860,8 @@ $sync.configs.feature = '{ "VirtualMachinePlatform", "Microsoft-Windows-Subsystem-Linux" ], - "InvokeScript": [] + "InvokeScript": [], + "link": "https://christitustech.github.io/winutil/dev/features/Features/wsl" }, "WPFFeaturenfs": { "Content": "NFS - Network File System", @@ -8876,7 +8880,8 @@ $sync.configs.feature = '{ "Set-ItemProperty -Path ''HKLM:\\SOFTWARE\\Microsoft\\ClientForNFS\\CurrentVersion\\Default'' -Name ''AnonymousGID'' -Type DWord -Value 0", "nfsadmin client start", "nfsadmin client localhost config fileaccess=755 SecFlavors=+sys -krb5 -krb5i" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/features/Features/nfs" }, "WPFFeatureEnableSearchSuggestions": { "Content": "Enable Search Box Web Suggestions in Registry(explorer restart)", @@ -8893,7 +8898,8 @@ $sync.configs.feature = '{ New-ItemProperty -Path ''HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer'' -Name ''DisableSearchBoxSuggestions'' -Type DWord -Value 0 -Force Stop-Process -name explorer -force " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/features/Features/EnableSearchSuggestions" }, "WPFFeatureDisableSearchSuggestions": { "Content": "Disable Search Box Web Suggestions in Registry(explorer restart)", @@ -8910,7 +8916,8 @@ $sync.configs.feature = '{ New-ItemProperty -Path ''HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer'' -Name ''DisableSearchBoxSuggestions'' -Type DWord -Value 1 -Force Stop-Process -name explorer -force " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/features/Features/DisableSearchSuggestions" }, "WPFFeatureRegBackup": { "Content": "Enable Daily Registry Backup Task 12.30am", @@ -8927,7 +8934,8 @@ $sync.configs.feature = '{ $trigger = New-ScheduledTaskTrigger -Daily -At 00:30 Register-ScheduledTask -Action $action -Trigger $trigger -TaskName ''AutoRegBackup'' -Description ''Create System Registry Backups'' -User ''System'' " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/features/Features/RegBackup" }, "WPFFeatureEnableLegacyRecovery": { "Content": "Enable Legacy F8 Boot Recovery", @@ -8944,7 +8952,8 @@ $sync.configs.feature = '{ New-ItemProperty -Path ''HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood'' -Name ''Enabled'' -Type DWord -Value 1 -Force Start-Process -FilePath cmd.exe -ArgumentList ''/c bcdedit /Set {Current} BootMenuPolicy Legacy'' -Wait " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/features/Features/EnableLegacyRecovery" }, "WPFFeatureDisableLegacyRecovery": { "Content": "Disable Legacy F8 Boot Recovery", @@ -8961,14 +8970,16 @@ $sync.configs.feature = '{ New-ItemProperty -Path ''HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Configuration Manager\\LastKnownGood'' -Name ''Enabled'' -Type DWord -Value 0 -Force Start-Process -FilePath cmd.exe -ArgumentList ''/c bcdedit /Set {Current} BootMenuPolicy Standard'' -Wait " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/features/Features/DisableLegacyRecovery" }, - "WPFFeaturesandbox": { + "WPFFeaturesSandbox": { "Content": "Windows Sandbox", "category": "Features", "panel": "1", "Order": "a021_", - "Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation." + "Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.", + "link": "https://christitustech.github.io/winutil/dev/features/Features/Sandbox" }, "WPFFeatureInstall": { "Content": "Install Features", @@ -8976,7 +8987,8 @@ $sync.configs.feature = '{ "panel": "1", "Order": "a060_", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Features/Install" }, "WPFPanelAutologin": { "Content": "Set Up Autologin", @@ -8984,7 +8996,8 @@ $sync.configs.feature = '{ "Order": "a040_", "panel": "1", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Fixes/Autologin" }, "WPFFixesUpdate": { "Content": "Reset Windows Update", @@ -8992,7 +9005,8 @@ $sync.configs.feature = '{ "panel": "1", "Order": "a041_", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Fixes/Update" }, "WPFFixesNetwork": { "Content": "Reset Network", @@ -9000,7 +9014,8 @@ $sync.configs.feature = '{ "Order": "a042_", "panel": "1", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Fixes/Network" }, "WPFPanelDISM": { "Content": "System Corruption Scan", @@ -9008,7 +9023,8 @@ $sync.configs.feature = '{ "panel": "1", "Order": "a043_", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Fixes/DISM" }, "WPFFixesWinget": { "Content": "WinGet Reinstall", @@ -9016,7 +9032,8 @@ $sync.configs.feature = '{ "panel": "1", "Order": "a044_", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Fixes/Winget" }, "WPFRunAdobeCCCleanerTool": { "Content": "Remove Adobe Creative Cloud", @@ -9024,56 +9041,64 @@ $sync.configs.feature = '{ "panel": "1", "Order": "a045_", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Fixes/RunAdobeCCCleanerTool" }, "WPFPanelnetwork": { "Content": "Network Connections", "category": "Legacy Windows Panels", "panel": "2", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Legacy-Windows-Panels/network" }, "WPFPanelcontrol": { "Content": "Control Panel", "category": "Legacy Windows Panels", "panel": "2", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Legacy-Windows-Panels/control" }, "WPFPanelpower": { "Content": "Power Panel", "category": "Legacy Windows Panels", "panel": "2", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Legacy-Windows-Panels/power" }, "WPFPanelregion": { "Content": "Region", "category": "Legacy Windows Panels", "panel": "2", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Legacy-Windows-Panels/region" }, "WPFPanelsound": { "Content": "Sound Settings", "category": "Legacy Windows Panels", "panel": "2", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Legacy-Windows-Panels/sound" }, "WPFPanelsystem": { "Content": "System Properties", "category": "Legacy Windows Panels", "panel": "2", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Legacy-Windows-Panels/system" }, "WPFPaneluser": { "Content": "User Accounts", "category": "Legacy Windows Panels", "panel": "2", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/features/Legacy-Windows-Panels/user" } }' | convertfrom-json $sync.configs.preset = '{ @@ -9321,7 +9346,8 @@ $sync.configs.tweaks = '{ "Value": "0", "OriginalValue": "1" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/AH" }, "WPFTweaksHiber": { "Content": "Disable Hibernation", @@ -9350,7 +9376,8 @@ $sync.configs.tweaks = '{ ], "UndoScript": [ "powercfg.exe /hibernate on" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Hiber" }, "WPFTweaksLaptopHibernation": { "Content": "Set Hibernation as default (good for laptops)", @@ -9397,7 +9424,8 @@ $sync.configs.tweaks = '{ Start-Process -FilePath powercfg -ArgumentList \"/change monitor-timeout-ac 15\" -NoNewWindow -Wait Start-Process -FilePath powercfg -ArgumentList \"/change monitor-timeout-dc 15\" -NoNewWindow -Wait " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/LaptopHibernation" }, "WPFTweaksHome": { "Content": "Disable Homegroup", @@ -9416,7 +9444,8 @@ $sync.configs.tweaks = '{ "StartupType": "Manual", "OriginalType": "Automatic" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Home" }, "WPFTweaksLoc": { "Content": "Disable Location Tracking", @@ -9453,7 +9482,8 @@ $sync.configs.tweaks = '{ "Value": "0", "OriginalValue": "1" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Loc" }, "WPFTweaksServices": { "Content": "Set Services to Manual", @@ -10872,7 +10902,8 @@ $sync.configs.tweaks = '{ "StartupType": "Manual", "OriginalType": "Manual" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Services" }, "WPFTweaksEdgeDebloat": { "Content": "Debloat Edge", @@ -11028,7 +11059,8 @@ $sync.configs.tweaks = '{ "Value": "0", "OriginalValue": "1" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/EdgeDebloat" }, "WPFTweaksConsumerFeatures": { "Content": "Disable ConsumerFeatures", @@ -11044,7 +11076,8 @@ $sync.configs.tweaks = '{ "Value": "1", "Type": "DWord" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/ConsumerFeatures" }, "WPFTweaksTele": { "Content": "Disable Telemetry", @@ -11415,7 +11448,8 @@ $sync.configs.tweaks = '{ # Disable Defender Auto Sample Submission Set-MpPreference -SubmitSamplesConsent 2 -ErrorAction SilentlyContinue | Out-Null " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Tele" }, "WPFTweaksWifi": { "Content": "Disable Wifi-Sense", @@ -11438,7 +11472,8 @@ $sync.configs.tweaks = '{ "Value": "0", "OriginalValue": "1" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Wifi" }, "WPFTweaksUTC": { "Content": "Set Time to UTC (Dual Boot)", @@ -11454,7 +11489,8 @@ $sync.configs.tweaks = '{ "Value": "1", "OriginalValue": "0" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC" }, "WPFTweaksRemoveHomeGallery": { "Content": "Remove Home and Gallery from explorer", @@ -11475,7 +11511,8 @@ $sync.configs.tweaks = '{ REG ADD \"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\NameSpace\\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}\" /f /ve /t REG_SZ /d \"CLSID_MSGraphHomeFolder\" REG DELETE \"HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\" /f /v \"LaunchTo\" " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHomeGallery" }, "WPFTweaksDisplay": { "Content": "Set Display for Performance", @@ -11581,7 +11618,8 @@ $sync.configs.tweaks = '{ ], "UndoScript": [ "Remove-ItemProperty -Path \"HKCU:\\Control Panel\\Desktop\" -Name \"UserPreferencesMask\"" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/Display" }, "WPFTweaksDeBloat": { "Content": "Remove ALL MS Store Apps - NOT RECOMMENDED", @@ -11699,7 +11737,8 @@ $sync.configs.tweaks = '{ $proc.WaitForExit() } " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat" }, "WPFTweaksRestorePoint": { "Content": "Create Restore Point", @@ -11755,7 +11794,8 @@ $sync.configs.tweaks = '{ Write-Host -ForegroundColor Green \"System Restore Point Created Successfully\" } " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/RestorePoint" }, "WPFTweaksEndTaskOnTaskbar": { "Content": "Enable End Task With Right Click", @@ -11788,7 +11828,8 @@ $sync.configs.tweaks = '{ # Set the property, creating it if it doesn''t exist New-ItemProperty -Path $path -Name $name -PropertyType DWord -Value $value -Force | Out-Null" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/EndTaskOnTaskbar" }, "WPFTweaksPowershell7": { "Content": "Change Windows Terminal default: PowerShell 5 -> PowerShell 7", @@ -11801,7 +11842,8 @@ $sync.configs.tweaks = '{ ], "UndoScript": [ "Invoke-WPFTweakPS7 -action \"PS5\"" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Powershell7" }, "WPFTweaksPowershell7Tele": { "Content": "Disable Powershell 7 Telemetry", @@ -11814,7 +11856,8 @@ $sync.configs.tweaks = '{ ], "UndoScript": [ "[Environment]::SetEnvironmentVariable(''POWERSHELL_TELEMETRY_OPTOUT'', '''', ''Machine'')" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Powershell7Tele" }, "WPFTweaksStorage": { "Content": "Disable Storage Sense", @@ -11827,7 +11870,8 @@ $sync.configs.tweaks = '{ ], "UndoScript": [ "Set-ItemProperty -Path \"HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\StorageSense\\Parameters\\StoragePolicy\" -Name \"01\" -Value 1 -Type Dword -Force" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Storage" }, "WPFTweaksRemoveEdge": { "Content": "Remove Microsoft Edge", @@ -11845,7 +11889,8 @@ $sync.configs.tweaks = '{ Write-Host \"Install Microsoft Edge\" Start-Process -FilePath winget -ArgumentList \"install --force -e --accept-source-agreements --accept-package-agreements --silent Microsoft.Edge \" -NoNewWindow -Wait " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge" }, "WPFTweaksRemoveCopilot": { "Content": "Disable Microsoft Copilot", @@ -11887,7 +11932,8 @@ $sync.configs.tweaks = '{ Write-Host \"Install Copilot\" dism /online /add-package /package-name:Microsoft.Windows.Copilot " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot" }, "WPFTweaksDisableLMS1": { "Content": "Disable Intel MM (vPro LMS)", @@ -11944,7 +11990,8 @@ $sync.configs.tweaks = '{ Write-Host \"LMS vPro needs to be redownloaded from intel.com\" " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableLMS1" }, "WPFTweaksRemoveOnedrive": { "Content": "Remove OneDrive", @@ -12038,7 +12085,8 @@ $sync.configs.tweaks = '{ Write-Host \"Install OneDrive\" Start-Process -FilePath winget -ArgumentList \"install -e --accept-source-agreements --accept-package-agreements --silent Microsoft.OneDrive \" -NoNewWindow -Wait " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOnedrive" }, "WPFTweaksDisableNotifications": { "Content": "Disable Notification Tray/Calendar", @@ -12061,7 +12109,8 @@ $sync.configs.tweaks = '{ "Value": "0", "OriginalValue": "1" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableNotifications" }, "WPFTweaksDebloatAdobe": { "Content": "Adobe Debloat", @@ -12209,7 +12258,8 @@ $sync.configs.tweaks = '{ "StartupType": "Manual", "OriginalType": "Automatic" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/DebloatAdobe" }, "WPFTweaksBlockAdobeNet": { "Content": "Adobe Network Block", @@ -12316,7 +12366,8 @@ $sync.configs.tweaks = '{ Write-Error \"Failed to flush DNS cache. Error: $_\" } " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet" }, "WPFTweaksRightClickMenu": { "Content": "Set Classic Right-Click Menu ", @@ -12340,7 +12391,8 @@ $sync.configs.tweaks = '{ $process = Get-Process -Name \"explorer\" Stop-Process -InputObject $process " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu" }, "WPFTweaksDiskCleanup": { "Content": "Run Disk Cleanup", @@ -12353,7 +12405,8 @@ $sync.configs.tweaks = '{ cleanmgr.exe /d C: /VERYLOWDISK Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase " - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/DiskCleanup" }, "WPFTweaksDeleteTempFiles": { "Content": "Delete Temporary Files", @@ -12364,7 +12417,8 @@ $sync.configs.tweaks = '{ "InvokeScript": [ "Get-ChildItem -Path \"C:\\Windows\\Temp\" *.* -Recurse | Remove-Item -Force -Recurse Get-ChildItem -Path $env:TEMP *.* -Recurse | Remove-Item -Force -Recurse" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/DeleteTempFiles" }, "WPFTweaksDVR": { "Content": "Disable GameDVR", @@ -12408,7 +12462,8 @@ $sync.configs.tweaks = '{ "OriginalValue": "1", "Type": "DWord" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/DVR" }, "WPFTweaksTeredo": { "Content": "Disable Teredo", @@ -12430,7 +12485,8 @@ $sync.configs.tweaks = '{ ], "UndoScript": [ "netsh interface teredo set state default" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Teredo" }, "WPFTweaksDisableipsix": { "Content": "Disable IPv6", @@ -12452,7 +12508,8 @@ $sync.configs.tweaks = '{ ], "UndoScript": [ "Enable-NetAdapterBinding -Name \"*\" -ComponentID ms_tcpip6" - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/Disableipsix" }, "WPFTweaksDisableBGapps": { "Content": "Disable Background Apps", @@ -12468,7 +12525,8 @@ $sync.configs.tweaks = '{ "OriginalValue": "0", "Type": "DWord" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableBGapps" }, "WPFTweaksDisableFSO": { "Content": "Disable Fullscreen Optimizations", @@ -12484,7 +12542,8 @@ $sync.configs.tweaks = '{ "OriginalValue": "0", "Type": "DWord" } - ] + ], + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableFSO" }, "WPFToggleDarkMode": { "Content": "Dark Theme for Windows", @@ -12492,7 +12551,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a100_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/DarkMode" }, "WPFToggleBingSearch": { "Content": "Bing Search in Start Menu", @@ -12500,7 +12560,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a101_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/BingSearch" }, "WPFToggleNumLock": { "Content": "NumLock on Startup", @@ -12508,7 +12569,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a102_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/NumLock" }, "WPFToggleVerboseLogon": { "Content": "Verbose Messages During Logon", @@ -12516,7 +12578,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a103_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/VerboseLogon" }, "WPFToggleSnapWindow": { "Content": "Snap Window", @@ -12524,7 +12587,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a104_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/SnapWindow" }, "WPFToggleSnapFlyout": { "Content": "Snap Assist Flyout", @@ -12532,7 +12596,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a105_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/SnapFlyout" }, "WPFToggleSnapSuggestion": { "Content": "Snap Assist Suggestion", @@ -12540,7 +12605,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a106_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/SnapSuggestion" }, "WPFToggleMouseAcceleration": { "Content": "Mouse Acceleration", @@ -12548,7 +12614,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a107_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/MouseAcceleration" }, "WPFToggleStickyKeys": { "Content": "Sticky Keys", @@ -12556,7 +12623,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a108_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/StickyKeys" }, "WPFToggleHiddenFiles": { "Content": "Show Hidden Files", @@ -12564,7 +12632,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a200_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/HiddenFiles" }, "WPFToggleShowExt": { "Content": "Show File Extensions", @@ -12572,7 +12641,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a201_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/ShowExt" }, "WPFToggleTaskbarSearch": { "Content": "Search Button in Taskbar", @@ -12580,7 +12650,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a202_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/TaskbarSearch" }, "WPFToggleTaskView": { "Content": "Task View Button in Taskbar", @@ -12588,7 +12659,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a203_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/TaskView" }, "WPFToggleTaskbarWidgets": { "Content": "Widgets Button in Taskbar", @@ -12596,7 +12668,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a204_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/TaskbarWidgets" }, "WPFToggleTaskbarAlignment": { "Content": "Center Taskbar Items", @@ -12604,7 +12677,8 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a204_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/TaskbarAlignment" }, "WPFToggleDetailedBSoD": { "Content": "Detailed BSoD", @@ -12612,14 +12686,16 @@ $sync.configs.tweaks = '{ "category": "Customize Preferences", "panel": "2", "Order": "a205_", - "Type": "Toggle" + "Type": "Toggle", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Customize-Preferences/DetailedBSoD" }, "WPFOOSUbutton": { "Content": "Run OO Shutup 10", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", "Order": "a039_", - "Type": "Button" + "Type": "Button", + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton" }, "WPFchangedns": { "Content": "DNS", @@ -12627,21 +12703,24 @@ $sync.configs.tweaks = '{ "panel": "1", "Order": "a040_", "Type": "Combobox", - "ComboItems": "Default DHCP Google Cloudflare Cloudflare_Malware Cloudflare_Malware_Adult Open_DNS Quad9 AdGuard_Ads_Trackers AdGuard_Ads_Trackers_Malware_Adult" + "ComboItems": "Default DHCP Google Cloudflare Cloudflare_Malware Cloudflare_Malware_Adult Open_DNS Quad9 AdGuard_Ads_Trackers AdGuard_Ads_Trackers_Malware_Adult", + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns" }, "WPFTweaksbutton": { "Content": "Run Tweaks", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", "Order": "a041_", - "Type": "Button" + "Type": "Button", + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/button" }, "WPFUndoall": { "Content": "Undo Selected Tweaks", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", "Order": "a042_", - "Type": "Button" + "Type": "Button", + "link": "https://christitustech.github.io/winutil/dev/tweaks/z--Advanced-Tweaks---CAUTION/Undoall" }, "WPFAddUltPerf": { "Content": "Add and Activate Ultimate Performance Profile", @@ -12649,7 +12728,8 @@ $sync.configs.tweaks = '{ "panel": "2", "Order": "a080_", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Performance-Plans/AddUltPerf" }, "WPFRemoveUltPerf": { "Content": "Remove Ultimate Performance Profile", @@ -12657,7 +12737,8 @@ $sync.configs.tweaks = '{ "panel": "2", "Order": "a081_", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Performance-Plans/RemoveUltPerf" }, "WPFWinUtilShortcut": { "Content": "Create WinUtil Shortcut", @@ -12665,7 +12746,8 @@ $sync.configs.tweaks = '{ "panel": "2", "Order": "a082_", "Type": "Button", - "ButtonWidth": "300" + "ButtonWidth": "300", + "link": "https://christitustech.github.io/winutil/dev/tweaks/Shortcuts/Shortcut" } }' | convertfrom-json $inputXML = ' - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +