From 5516be2464405a37840605f54c0e8447152849a9 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Tue, 7 Apr 2026 14:10:34 -0500 Subject: [PATCH 01/22] chore: Update generated dev docs (#4338) --- .../tweaks/Performance-Plans/AddUltPerf.md | 103 +++++------------- .../tweaks/Performance-Plans/RemoveUltPerf.md | 103 +++++------------- 2 files changed, 54 insertions(+), 152 deletions(-) diff --git a/docs/content/dev/tweaks/Performance-Plans/AddUltPerf.md b/docs/content/dev/tweaks/Performance-Plans/AddUltPerf.md index 584aac1b..1eb2f3f5 100644 --- a/docs/content/dev/tweaks/Performance-Plans/AddUltPerf.md +++ b/docs/content/dev/tweaks/Performance-Plans/AddUltPerf.md @@ -4,88 +4,39 @@ description: "" --- ```powershell {filename="functions/public/Invoke-WPFUltimatePerformance.ps1",linenos=inline,linenostart=1} -Function Invoke-WPFUltimatePerformance { - <# - - .SYNOPSIS - Enables or disables the Ultimate Performance power scheme based on its GUID. - - .PARAMETER State - Specifies whether to "Enable" or "Disable" the Ultimate Performance power scheme. - - #> +function Invoke-WPFUltimatePerformance { param( - [Parameter(Mandatory = $true)] - [ValidateSet("Enable", "Disable")] - [string]$State + [switch]$Do ) - try { - # GUID of the Ultimate Performance power plan - $ultimateGUID = "e9a42b02-d5df-448d-aa00-03f14749eb61" - - switch ($State) { - "Enable" { - # Duplicate the Ultimate Performance power plan using its GUID - $duplicateOutput = powercfg /duplicatescheme $ultimateGUID - - $guid = $null - $nameFromFile = "ChrisTitus - Ultimate Power Plan" - $description = "Ultimate Power Plan, added via WinUtils" - - # Extract the new GUID from the duplicateOutput - foreach ($line in $duplicateOutput) { - if ($line -match "\b[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\b") { - $guid = $matches[0] # $matches[0] will contain the first match, which is the GUID - Write-Output "GUID: $guid has been extracted and stored in the variable." - break - } - } - - if (-not $guid) { - Write-Output "No GUID found in the duplicateOutput. Check the output format." - exit 1 - } - - # Change the name of the power plan and set its description - $changeNameOutput = powercfg /changename $guid "$nameFromFile" "$description" - Write-Output "The power plan name and description have been changed. Output:" - Write-Output $changeNameOutput - - # Set the duplicated Ultimate Performance plan as active - $setActiveOutput = powercfg /setactive $guid - Write-Output "The power plan has been set as active. Output:" - Write-Output $setActiveOutput - - Write-Host "> Ultimate Performance plan installed and set as active." - } - "Disable" { - # Check if the Ultimate Performance plan is installed by GUID - $installedPlan = powercfg -list | Select-String -Pattern "ChrisTitus - Ultimate Power Plan" - - if ($installedPlan) { - # Extract the GUID of the installed Ultimate Performance plan - $ultimatePlanGUID = $installedPlan.Line.Split()[3] - - # Set a different power plan as active before deleting the Ultimate Performance plan - $balancedPlanGUID = "381b4222-f694-41f0-9685-ff5bb260df2e" - powercfg -setactive $balancedPlanGUID - - # Delete the Ultimate Performance plan by GUID - powercfg -delete $ultimatePlanGUID - - Write-Host "Ultimate Performance plan has been uninstalled." - Write-Host "> Balanced plan is now active." - } else { - Write-Host "Ultimate Performance plan is not installed." + if ($Do) { + if (-not (powercfg /list | Select-String "ChrisTitus - Ultimate Power Plan")) { + if (-not (powercfg /list | Select-String "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c")) { + powercfg /restoredefaultschemes + if (-not (powercfg /list | Select-String "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c")) { + Write-Host "Failed to restore High Performance plan. Default plans do not include high performance. If you are on a laptop, do NOT use High Performance or Ultimate Performance plans." -ForegroundColor Red + return } } - default { - Write-Host "Invalid state. Please use 'Enable' or 'Disable'." - } + $guid = ((powercfg /duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c) -split '\s+')[3] + powercfg /changename $guid "ChrisTitus - Ultimate Power Plan" + powercfg /setacvalueindex $guid SUB_PROCESSOR IDLEDISABLE 1 + powercfg /setacvalueindex $guid 54533251-82be-4824-96c1-47b60b740d00 4d2b0152-7d5c-498b-88e2-34345392a2c5 1 + powercfg /setacvalueindex $guid SUB_PROCESSOR PROCTHROTTLEMIN 100 + powercfg /setactive $guid + Write-Host "ChrisTitus - Ultimate Power Plan plan installed and activated." -ForegroundColor Green + } else { + Write-Host "ChrisTitus - Ultimate Power Plan plan is already installed." -ForegroundColor Red + return + } + } else { + if (powercfg /list | Select-String "ChrisTitus - Ultimate Power Plan") { + powercfg /setactive SCHEME_BALANCED + powercfg /delete ((powercfg /list | Select-String "ChrisTitus - Ultimate Power Plan").ToString().Split()[3]) + Write-Host "ChrisTitus - Ultimate Power Plan plan was removed." -ForegroundColor Red + } else { + Write-Host "ChrisTitus - Ultimate Power Plan plan is not installed." -ForegroundColor Yellow } - } catch { - Write-Error "Error occurred: $_" } } ``` diff --git a/docs/content/dev/tweaks/Performance-Plans/RemoveUltPerf.md b/docs/content/dev/tweaks/Performance-Plans/RemoveUltPerf.md index 5aabc88e..7cf32057 100644 --- a/docs/content/dev/tweaks/Performance-Plans/RemoveUltPerf.md +++ b/docs/content/dev/tweaks/Performance-Plans/RemoveUltPerf.md @@ -4,88 +4,39 @@ description: "" --- ```powershell {filename="functions/public/Invoke-WPFUltimatePerformance.ps1",linenos=inline,linenostart=1} -Function Invoke-WPFUltimatePerformance { - <# - - .SYNOPSIS - Enables or disables the Ultimate Performance power scheme based on its GUID. - - .PARAMETER State - Specifies whether to "Enable" or "Disable" the Ultimate Performance power scheme. - - #> +function Invoke-WPFUltimatePerformance { param( - [Parameter(Mandatory = $true)] - [ValidateSet("Enable", "Disable")] - [string]$State + [switch]$Do ) - try { - # GUID of the Ultimate Performance power plan - $ultimateGUID = "e9a42b02-d5df-448d-aa00-03f14749eb61" - - switch ($State) { - "Enable" { - # Duplicate the Ultimate Performance power plan using its GUID - $duplicateOutput = powercfg /duplicatescheme $ultimateGUID - - $guid = $null - $nameFromFile = "ChrisTitus - Ultimate Power Plan" - $description = "Ultimate Power Plan, added via WinUtils" - - # Extract the new GUID from the duplicateOutput - foreach ($line in $duplicateOutput) { - if ($line -match "\b[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\b") { - $guid = $matches[0] # $matches[0] will contain the first match, which is the GUID - Write-Output "GUID: $guid has been extracted and stored in the variable." - break - } - } - - if (-not $guid) { - Write-Output "No GUID found in the duplicateOutput. Check the output format." - exit 1 - } - - # Change the name of the power plan and set its description - $changeNameOutput = powercfg /changename $guid "$nameFromFile" "$description" - Write-Output "The power plan name and description have been changed. Output:" - Write-Output $changeNameOutput - - # Set the duplicated Ultimate Performance plan as active - $setActiveOutput = powercfg /setactive $guid - Write-Output "The power plan has been set as active. Output:" - Write-Output $setActiveOutput - - Write-Host "> Ultimate Performance plan installed and set as active." - } - "Disable" { - # Check if the Ultimate Performance plan is installed by GUID - $installedPlan = powercfg -list | Select-String -Pattern "ChrisTitus - Ultimate Power Plan" - - if ($installedPlan) { - # Extract the GUID of the installed Ultimate Performance plan - $ultimatePlanGUID = $installedPlan.Line.Split()[3] - - # Set a different power plan as active before deleting the Ultimate Performance plan - $balancedPlanGUID = "381b4222-f694-41f0-9685-ff5bb260df2e" - powercfg -setactive $balancedPlanGUID - - # Delete the Ultimate Performance plan by GUID - powercfg -delete $ultimatePlanGUID - - Write-Host "Ultimate Performance plan has been uninstalled." - Write-Host "> Balanced plan is now active." - } else { - Write-Host "Ultimate Performance plan is not installed." + if ($Do) { + if (-not (powercfg /list | Select-String "ChrisTitus - Ultimate Power Plan")) { + if (-not (powercfg /list | Select-String "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c")) { + powercfg /restoredefaultschemes + if (-not (powercfg /list | Select-String "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c")) { + Write-Host "Failed to restore High Performance plan. Default plans do not include high performance. If you are on a laptop, do NOT use High Performance or Ultimate Performance plans." -ForegroundColor Red + return } } - default { - Write-Host "Invalid state. Please use 'Enable' or 'Disable'." - } + $guid = ((powercfg /duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c) -split '\s+')[3] + powercfg /changename $guid "ChrisTitus - Ultimate Power Plan" + powercfg /setacvalueindex $guid SUB_PROCESSOR IDLEDISABLE 1 + powercfg /setacvalueindex $guid 54533251-82be-4824-96c1-47b60b740d00 4d2b0152-7d5c-498b-88e2-34345392a2c5 1 + powercfg /setacvalueindex $guid SUB_PROCESSOR PROCTHROTTLEMIN 100 + powercfg /setactive $guid + Write-Host "ChrisTitus - Ultimate Power Plan plan installed and activated." -ForegroundColor Green + } else { + Write-Host "ChrisTitus - Ultimate Power Plan plan is already installed." -ForegroundColor Red + return + } + } else { + if (powercfg /list | Select-String "ChrisTitus - Ultimate Power Plan") { + powercfg /setactive SCHEME_BALANCED + powercfg /delete ((powercfg /list | Select-String "ChrisTitus - Ultimate Power Plan").ToString().Split()[3]) + Write-Host "ChrisTitus - Ultimate Power Plan plan was removed." -ForegroundColor Red + } else { + Write-Host "ChrisTitus - Ultimate Power Plan plan is not installed." -ForegroundColor Yellow } - } catch { - Write-Error "Error occurred: $_" } } ``` From ed6ee897d57ce67164e2f79b3b9efa18d6729084 Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Wed, 8 Apr 2026 19:19:10 +0300 Subject: [PATCH 02/22] Added language support warning to CONTRIBUTING.md (#4342) --- .github/CONTRIBUTING.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index c4b3155f..ac8147a4 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -21,12 +21,14 @@ * Pull requests are now handled directly on the **MAIN branch**. This was done since we can now select specific releases to launch via releases in GitHub. -* If you're doing code changes, then you can submit a PR to the `main` branch, but I am very selective about these. +* If you're doing code changes, then you can submit a PR to the `main` branch. !!! warning "Important" Do not use a code formatter, make massive amounts of line changes, or make multiple feature changes. EACH FEATURE CHANGE SHOULD BE IT'S OWN PULL REQUEST! + Do not open a pull request that adds support for other languages to WinUtil for now, until we decide how we want to move forward with language support. + * When creating pull requests, it is essential to thoroughly document all changes made. This includes, but is not limited to, documenting any additions made to the `tweaks` section and corresponding `undo tweak`, so users are able to remove the newly added tweaks if necessary, and comprehensive documentation is required for all code changes. Document your changes and briefly explain why you made your changes in your Pull Request Description. Failure to adhere to this format may result in the denial of the pull request. Additionally, any code lacking sufficient documentation may also be denied. * By following these guidelines, we can maintain a high standard of quality and ensure that the codebase remains organized and well-documented. From 4ab1681eb8422fc567af002a2f8fca6bbdd9ad32 Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Wed, 8 Apr 2026 20:33:12 +0300 Subject: [PATCH 03/22] Added dorion to applications.json (#4340) --- config/applications.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config/applications.json b/config/applications.json index 92a5cc04..fe7d0316 100644 --- a/config/applications.json +++ b/config/applications.json @@ -528,6 +528,15 @@ "link": "https://ntlite.com", "winget": "Nlitesoft.NTLite" }, + "dorion": { + "category": "Communications", + "choco": "na", + "content": "Dorion", + "description": "Tiny alternative Discord client with a smaller footprint, snappier startup, themes, plugins and more!", + "link": "https://github.com/SpikeHD/Dorion", + "winget": "SpikeHD.Dorion", + "foss": true + }, "ditto": { "category": "Utilities", "choco": "ditto", From f47dcb01d277798d6e87c44295950402548cd747 Mon Sep 17 00:00:00 2001 From: YusufKhalifadev Date: Tue, 14 Apr 2026 16:38:16 +0200 Subject: [PATCH 04/22] Fix a ton of typos and still (#4347) --- config/applications.json | 512 ++++++++++++++++++++++++--------------- 1 file changed, 320 insertions(+), 192 deletions(-) diff --git a/config/applications.json b/config/applications.json index fe7d0316..f0ac1402 100644 --- a/config/applications.json +++ b/config/applications.json @@ -5,7 +5,8 @@ "content": "1Password", "description": "1Password is a password manager that allows you to store and manage your passwords securely.", "link": "https://1password.com/", - "winget": "AgileBits.1Password" + "winget": "AgileBits.1Password", + "foss": false }, "7zip": { "category": "Utilities", @@ -22,7 +23,8 @@ "content": "Adobe Acrobat Reader", "description": "Adobe Acrobat Reader is a free PDF viewer with essential features for viewing, printing, and annotating PDF documents.", "link": "https://www.adobe.com/acrobat/pdf-reader.html", - "winget": "Adobe.Acrobat.Reader.64-bit" + "winget": "Adobe.Acrobat.Reader.64-bit", + "foss": false }, "advancedip": { "category": "Pro Tools", @@ -30,7 +32,8 @@ "content": "Advanced IP Scanner", "description": "Advanced IP Scanner is a fast and easy-to-use network scanner. It is designed to analyze LAN networks and provides information about connected devices.", "link": "https://www.advanced-ip-scanner.com/", - "winget": "Famatech.AdvancedIPScanner" + "winget": "Famatech.AdvancedIPScanner", + "foss": false }, "affine": { "category": "Document", @@ -56,7 +59,8 @@ "content": "AIMP (Music Player)", "description": "AIMP is a feature-rich music player with support for various audio formats, playlists, and customizable user interface.", "link": "https://www.aimp.ru/", - "winget": "AIMP.AIMP" + "winget": "AIMP.AIMP", + "foss": false }, "alacritty": { "category": "Utilities", @@ -73,7 +77,8 @@ "content": "Anaconda", "description": "Anaconda is a distribution of the Python and R programming languages for scientific computing.", "link": "https://www.anaconda.com/products/distribution", - "winget": "Anaconda.Anaconda3" + "winget": "Anaconda.Anaconda3", + "foss": false }, "angryipscanner": { "category": "Pro Tools", @@ -99,7 +104,8 @@ "content": "AnyDesk", "description": "AnyDesk is a remote desktop software that enables users to access and control computers remotely. It is known for its fast connection and low latency.", "link": "https://anydesk.com/", - "winget": "AnyDesk.AnyDesk" + "winget": "AnyDesk.AnyDesk", + "foss": false }, "anythingllm": { "category": "AI-Automation", @@ -125,7 +131,8 @@ "content": "Autoruns", "description": "This utility shows you what programs are configured to run during system bootup or login.", "link": "https://learn.microsoft.com/en-us/sysinternals/downloads/autoruns", - "winget": "Microsoft.Sysinternals.Autoruns" + "winget": "Microsoft.Sysinternals.Autoruns", + "foss": false }, "rdcman": { "category": "Microsoft Tools", @@ -133,7 +140,8 @@ "content": "RDCMan", "description": "RDCMan manages multiple remote desktop connections. It is useful for managing server labs where you need regular access to each machine such as automated checkin systems and data centers.", "link": "https://learn.microsoft.com/en-us/sysinternals/downloads/rdcman", - "winget": "Microsoft.Sysinternals.RDCMan" + "winget": "Microsoft.Sysinternals.RDCMan", + "foss": false }, "autohotkey": { "category": "Utilities", @@ -150,7 +158,7 @@ "content": "AutoIt", "description": "Windows GUI automation scripting tool (freeware) used to automate keystrokes, mouse actions, and window/control interactions.", "link": "https://www.autoitscript.com/site/autoit/", - "winget": "na", + "winget": "AutoIt.AutoIt", "foss": false }, "azuredatastudio": { @@ -159,7 +167,8 @@ "content": "Microsoft Azure Data Studio", "description": "Azure Data Studio is a data management tool that enables you to work with SQL Server, Azure SQL DB and SQL DW from Windows, macOS and Linux.", "link": "https://docs.microsoft.com/sql/azure-data-studio/what-is-azure-data-studio", - "winget": "Microsoft.AzureDataStudio" + "winget": "Microsoft.Azure.DataStudio", + "foss": true }, "barrier": { "category": "Utilities", @@ -185,7 +194,8 @@ "content": "Beeper", "description": "All your chats in one app.", "link": "https://www.beeper.com/", - "winget": "Beeper.Beeper" + "winget": "Beeper.Beeper", + "foss": false }, "bitwarden": { "category": "Utilities", @@ -238,7 +248,8 @@ "content": "Bulk Rename Utility", "description": "Bulk Rename Utility allows you to easily rename files and folders recursively based upon find-replace, character place, fields, sequences, regular expressions, EXIF data, and more.", "link": "https://www.bulkrenameutility.co.uk", - "winget": "TGRMNSoftware.BulkRenameUtility" + "winget": "TGRMNSoftware.BulkRenameUtility", + "foss": false }, "buzz": { "category": "AI-Automation", @@ -255,7 +266,8 @@ "content": "Advanced Renamer", "description": "Advanced Renamer is a program for renaming multiple files and folders at once. By configuring renaming methods the names can be manipulated in various ways.", "link": "https://www.advancedrenamer.com/", - "winget": "HulubuluSoftware.AdvancedRenamer" + "winget": "HulubuluSoftware.AdvancedRenamer", + "foss": false }, "cryptomator": { "category": "Utilities", @@ -272,7 +284,8 @@ "content": "Citrix Workspace app", "description": "A secure, unified client application that provides instant access to virtual desktops, SaaS, web, and Windows apps from any device (Windows, macOS, Linux, iOS, Android) or browser.", "link": "https://www.citrix.com/downloads/workspace-app/", - "winget": "Citrix.Workspace" + "winget": "Citrix.Workspace", + "foss": false }, "calibre": { "category": "Document", @@ -307,7 +320,8 @@ "content": "ChatGPT", "description": "ChatGPT desktop app provides direct access to OpenAI's conversational AI assistant for writing, analysis, and productivity tasks.", "link": "https://openai.com/chatgpt/desktop/", - "winget": "OpenAI.ChatGPT" + "winget": "9nt1r1c2hh7j", + "foss": false }, "chatterino": { "category": "Communications", @@ -324,7 +338,8 @@ "content": "Chrome", "description": "Google Chrome is a widely used web browser known for its speed, simplicity, and seamless integration with Google services.", "link": "https://www.google.com/chrome/", - "winget": "Google.Chrome" + "winget": "Google.Chrome", + "foss": false }, "chromium": { "category": "Browsers", @@ -377,7 +392,8 @@ "content": "Clone Hero", "description": "Clone Hero is a free rhythm game, which can be played with any 5 or 6 button guitar controller.", "link": "https://clonehero.net/", - "winget": "CloneHeroTeam.CloneHero" + "winget": "CloneHeroTeam.CloneHero", + "foss": false }, "cmake": { "category": "Development", @@ -403,7 +419,8 @@ "content": "CPU-Z", "description": "CPU-Z is a system monitoring and diagnostic tool for Windows. It provides detailed information about the computer's hardware components, including the CPU, memory, and motherboard.", "link": "https://www.cpuid.com/softwares/cpu-z.html", - "winget": "CPUID.CPU-Z" + "winget": "CPUID.CPU-Z", + "foss": false }, "crystaldiskinfo": { "category": "Utilities", @@ -465,7 +482,8 @@ "content": "Display Driver Uninstaller", "description": "Display Driver Uninstaller (DDU) is a tool for completely uninstalling graphics drivers from NVIDIA, AMD, and Intel. It is useful for troubleshooting graphics driver-related issues.", "link": "https://www.wagnardsoft.com/display-driver-uninstaller-DDU-", - "winget": "Wagnardsoft.DisplayDriverUninstaller" + "winget": "Wagnardsoft.DisplayDriverUninstaller", + "foss": true }, "deepl": { "category": "AI-Automation", @@ -500,7 +518,7 @@ "content": "digiKam", "description": "digiKam is an advanced open-source photo management software with features for organizing, editing, and sharing photos.", "link": "https://www.digikam.org/", - "winget": "KDE.digikam", + "winget": "KDE.digiKam", "foss": true }, "discord": { @@ -509,11 +527,12 @@ "content": "Discord", "description": "Discord is a popular communication platform with voice, video, and text chat, designed for gamers but used by a wide range of communities.", "link": "https://discord.com/", - "winget": "Discord.Discord" + "winget": "Discord.Discord", + "foss": false }, "dismtools": { "category": "Microsoft Tools", - "choco": "na", + "choco": "dismtools", "content": "DISMTools", "description": "DISMTools is a fast, customizable GUI for the DISM utility, supporting Windows images from Windows 7 onward. It handles installations on any drive, offers project support, and lets users tweak settings like color modes, language, and DISM versions; powered by both native DISM and a managed DISM API.", "link": "https://github.com/CodingWonders/DISMTools", @@ -526,11 +545,12 @@ "content": "NTLite", "description": "Integrate updates, drivers, automate Windows and application setup, speedup Windows deployment process and have it all set for the next time.", "link": "https://ntlite.com", - "winget": "Nlitesoft.NTLite" + "winget": "Nlitesoft.NTLite", + "foss": false }, "dorion": { "category": "Communications", - "choco": "na", + "choco": "dorion", "content": "Dorion", "description": "Tiny alternative Discord client with a smaller footprint, snappier startup, themes, plugins and more!", "link": "https://github.com/SpikeHD/Dorion", @@ -552,7 +572,8 @@ "content": "Docker Desktop", "description": "Docker Desktop is a powerful tool for containerized application development and deployment.", "link": "https://www.docker.com/products/docker-desktop", - "winget": "Docker.DockerDesktop" + "winget": "Docker.DockerDesktop", + "foss": false }, "dotnet3": { "category": "Microsoft Tools", @@ -560,7 +581,8 @@ "content": ".NET Desktop Runtime 3.1", "description": ".NET Desktop Runtime 3.1 is a runtime environment required for running applications developed with .NET Core 3.1.", "link": "https://dotnet.microsoft.com/download/dotnet/3.1", - "winget": "Microsoft.DotNet.DesktopRuntime.3_1" + "winget": "Microsoft.DotNet.DesktopRuntime.3_1", + "foss": true }, "dotnet5": { "category": "Microsoft Tools", @@ -568,7 +590,8 @@ "content": ".NET Desktop Runtime 5", "description": ".NET Desktop Runtime 5 is a runtime environment required for running applications developed with .NET 5.", "link": "https://dotnet.microsoft.com/download/dotnet/5.0", - "winget": "Microsoft.DotNet.DesktopRuntime.5" + "winget": "Microsoft.DotNet.DesktopRuntime.5", + "foss": true }, "dotnet6": { "category": "Microsoft Tools", @@ -576,7 +599,8 @@ "content": ".NET Desktop Runtime 6", "description": ".NET Desktop Runtime 6 is a runtime environment required for running applications developed with .NET 6.", "link": "https://dotnet.microsoft.com/download/dotnet/6.0", - "winget": "Microsoft.DotNet.DesktopRuntime.6" + "winget": "Microsoft.DotNet.DesktopRuntime.6", + "foss": true }, "dotnet7": { "category": "Microsoft Tools", @@ -584,7 +608,8 @@ "content": ".NET Desktop Runtime 7", "description": ".NET Desktop Runtime 7 is a runtime environment required for running applications developed with .NET 7.", "link": "https://dotnet.microsoft.com/download/dotnet/7.0", - "winget": "Microsoft.DotNet.DesktopRuntime.7" + "winget": "Microsoft.DotNet.DesktopRuntime.7", + "foss": true }, "dotnet8": { "category": "Microsoft Tools", @@ -592,7 +617,8 @@ "content": ".NET Desktop Runtime 8", "description": ".NET Desktop Runtime 8 is a runtime environment required for running applications developed with .NET 8.", "link": "https://dotnet.microsoft.com/download/dotnet/8.0", - "winget": "Microsoft.DotNet.DesktopRuntime.8" + "winget": "Microsoft.DotNet.DesktopRuntime.8", + "foss": true }, "dotnet9": { "category": "Microsoft Tools", @@ -600,7 +626,8 @@ "content": ".NET Desktop Runtime 9", "description": ".NET Desktop Runtime 9 is a runtime environment required for running applications developed with .NET 9.", "link": "https://dotnet.microsoft.com/download/dotnet/9.0", - "winget": "Microsoft.DotNet.DesktopRuntime.9" + "winget": "Microsoft.DotNet.DesktopRuntime.9", + "foss": true }, "dotnet10": { "category": "Microsoft Tools", @@ -608,7 +635,8 @@ "content": ".NET Desktop Runtime 10", "description": ".NET Desktop Runtime 10 is a runtime environment required for running applications developed with .NET 10.", "link": "https://dotnet.microsoft.com/download/dotnet/10.0", - "winget": "Microsoft.DotNet.DesktopRuntime.10" + "winget": "Microsoft.DotNet.DesktopRuntime.10", + "foss": true }, "dmt": { "winget": "GNE.DualMonitorTools", @@ -634,7 +662,8 @@ "content": "Easy Context Menu", "description": "Easy Context Menu (ECM) lets you add a variety of useful commands and tweaks to the Desktop, My Computer, Drives, File and Folder right-click context menus. This enables you to access the most used Windows components quickly and easily. Simply check the box next to the items you wish to add. Once added, just right click and the select the component shortcut to launch it. Easy Context Menu is both portable and freeware.", "link": "https://www.sordum.org/7615/easy-context-menu-v1-6/", - "winget": "sordum.EasyContextMenu" + "winget": "sordum.EasyContextMenu", + "foss": false }, "eaapp": { "category": "Games", @@ -642,7 +671,8 @@ "content": "EA App", "description": "EA App is a platform for accessing and playing Electronic Arts games.", "link": "https://www.ea.com/ea-app", - "winget": "ElectronicArts.EADesktop" + "winget": "ElectronicArts.EADesktop", + "foss": false }, "eartrumpet": { "category": "Multimedia Tools", @@ -659,7 +689,8 @@ "content": "Edge", "description": "Microsoft Edge is a modern web browser built on Chromium, offering performance, security, and integration with Microsoft services.", "link": "https://www.microsoft.com/edge", - "winget": "Microsoft.Edge" + "winget": "Microsoft.Edge", + "foss": false }, "efibooteditor": { "category": "Pro Tools", @@ -667,7 +698,8 @@ "content": "EFI Boot Editor", "description": "EFI Boot Editor is a tool for managing the EFI/UEFI boot entries on your system. It allows you to customize the boot configuration of your computer.", "link": "https://www.easyuefi.com/", - "winget": "EFIBootEditor.EFIBootEditor" + "winget": "EFIBootEditor.EFIBootEditor", + "foss": false }, "emulationstation": { "category": "Games", @@ -693,7 +725,8 @@ "content": "Epic Games Launcher", "description": "Epic Games Launcher is the client for accessing and playing games from the Epic Games Store.", "link": "https://www.epicgames.com/store/en-US/", - "winget": "EpicGames.EpicGamesLauncher" + "winget": "EpicGames.EpicGamesLauncher", + "foss": false }, "esearch": { "category": "Utilities", @@ -701,7 +734,8 @@ "content": "Everything Search", "description": "Everything Search is a fast and efficient file search utility for Windows.", "link": "https://www.voidtools.com/", - "winget": "voidtools.Everything" + "winget": "voidtools.Everything", + "foss": false }, "espanso": { "category": "Utilities", @@ -712,9 +746,9 @@ "winget": "Espanso.Espanso", "foss": true }, - "ffmpeg": { + "ffmpeg-batch": { "category": "Utilities", - "choco": "na", + "choco": "ffmpeg-batch", "content": "FFmpeg Batch AV Converter", "description": "FFmpeg Batch AV Converter is a universal audio and video encoder, that allows to use the full potential of ffmpeg command line with a few mouse clicks in a convenient GUI with drag and drop, progress information.", "link": "https://ffmpeg-batch.sourceforge.io/", @@ -732,7 +766,7 @@ }, "fastfetch": { "category": "Utilities", - "choco": "na", + "choco": "fastfetch", "content": "Fastfetch", "description": "Fastfetch is a neofetch-like tool for fetching system information and displaying them in a pretty way.", "link": "https://github.com/fastfetch-cli/fastfetch/", @@ -748,13 +782,14 @@ "winget": "Ferdium.Ferdium", "foss": true }, - "ffmpeg-full": { + "ffmpeg": { "category": "Multimedia Tools", "choco": "ffmpeg-full", "content": "FFmpeg (full)", "description": "FFmpeg is a powerful multimedia processing tool that enables users to convert, edit, and stream audio and video files with a vast range of codecs and formats. | Note: FFmpeg can not be uninstalled using WinGet.", "link": "https://ffmpeg.org/", - "winget": "Gyan.FFmpeg" + "winget": "Gyan.FFmpeg", + "foss": true }, "fileconverter": { "category": "Utilities", @@ -771,7 +806,7 @@ "content": "Files", "description": "Alternative file explorer.", "link": "https://github.com/files-community/Files", - "winget": "na", + "winget": "FilesCommunity.Files", "foss": true }, "firealpaca": { @@ -780,7 +815,8 @@ "content": "Fire Alpaca", "description": "Fire Alpaca is a free digital painting software that provides a wide range of drawing tools and a user-friendly interface.", "link": "https://firealpaca.com/", - "winget": "FireAlpaca.FireAlpaca" + "winget": "FireAlpaca.FireAlpaca", + "foss": false }, "firefox": { "category": "Browsers", @@ -815,11 +851,12 @@ "content": "Lightshot (Screenshots)", "description": "Lightshot is an easy-to-use, light-weight screenshot software tool, where you can optionally edit your screenshots using different tools, share them via Internet and/or save to disk, and customize the available options.", "link": "https://app.prntscr.com/", - "winget": "Skillbrains.Lightshot" + "winget": "Skillbrains.Lightshot", + "foss": false }, "floorp": { "category": "Browsers", - "choco": "na", + "choco": "floorp", "content": "Floorp", "description": "Floorp is an open-source web browser project that aims to provide a simple and fast browsing experience.", "link": "https://floorp.app/", @@ -841,7 +878,8 @@ "content": "F.lux", "description": "f.lux adjusts the color temperature of your screen to reduce eye strain during nighttime use.", "link": "https://justgetflux.com/", - "winget": "flux.flux" + "winget": "flux.flux", + "foss": false }, "foobar": { "category": "Multimedia Tools", @@ -849,7 +887,8 @@ "content": "foobar2000 (Music Player)", "description": "foobar2000 is a highly customizable and extensible music player for Windows, known for its modular design and advanced features.", "link": "https://www.foobar2000.org/", - "winget": "PeterPawlowski.foobar2000" + "winget": "PeterPawlowski.foobar2000", + "foss": false }, "foxpdfeditor": { "category": "Document", @@ -857,7 +896,8 @@ "content": "Foxit PDF Editor", "description": "Foxit PDF Editor is a feature-rich PDF editor and viewer with a familiar ribbon-style interface.", "link": "https://www.foxit.com/pdf-editor/", - "winget": "Foxit.PhantomPDF" + "winget": "Foxit.PhantomPDF", + "foss": false }, "foxpdfreader": { "category": "Document", @@ -865,7 +905,8 @@ "content": "Foxit PDF Reader", "description": "Foxit PDF Reader is a free PDF viewer with a familiar ribbon-style interface.", "link": "https://www.foxit.com/pdf-reader/", - "winget": "Foxit.FoxitReader" + "winget": "Foxit.FoxitReader", + "foss": false }, "freecad": { "category": "Multimedia Tools", @@ -900,7 +941,8 @@ "content": "GeForce NOW", "description": "GeForce NOW is a cloud gaming service that allows you to play high-quality PC games on your device.", "link": "https://www.nvidia.com/en-us/geforce-now/", - "winget": "Nvidia.GeForceNow" + "winget": "Nvidia.GeForceNow", + "foss": false }, "gimp": { "category": "Multimedia Tools", @@ -922,11 +964,12 @@ }, "gitbutler": { "category": "Development", - "choco": "na", + "choco": "gitbutler", "content": "Git Butler", "description": "A Git client for simultaneous branches on top of your existing workflow.", "link": "https://gitbutler.com/", - "winget": "GitButler.GitButler" + "winget": "GitButler.GitButler", + "foss": false }, "gitextensions": { "category": "Development", @@ -934,7 +977,8 @@ "content": "Git Extensions", "description": "Git Extensions is a graphical user interface for Git, providing additional features for easier source code management.", "link": "https://gitextensions.github.io/", - "winget": "GitExtensionsTeam.GitExtensions" + "winget": "GitExtensionsTeam.GitExtensions", + "foss": true }, "githubcli": { "category": "Development", @@ -947,7 +991,7 @@ }, "github-copilot-cli": { "category": "AI-Automation", - "choco": "na", + "choco": "github-copilot-cli", "content": "GitHub Copilot CLI", "description": "GitHub Copilot experience for the command line: natural-language assistance for commands and development tasks; distributed via WinGet.", "link": "https://github.com/github/copilot-cli", @@ -969,7 +1013,8 @@ "content": "GitKraken Client", "description": "GitKraken Client is a powerful visual Git client from Axosoft that works with ALL git repositories on any hosting environment.", "link": "https://www.gitkraken.com/git-client", - "winget": "Axosoft.GitKraken" + "winget": "Axosoft.GitKraken", + "foss": false }, "glaryutilities": { "category": "Utilities", @@ -977,7 +1022,8 @@ "content": "Glary Utilities", "description": "Glary Utilities is a comprehensive system optimization and maintenance tool for Windows.", "link": "https://www.glarysoft.com/glary-utilities/", - "winget": "Glarysoft.GlaryUtilities" + "winget": "Glarysoft.GlaryUtilities", + "foss": false }, "godotengine": { "category": "Development", @@ -994,7 +1040,8 @@ "content": "GOG Galaxy", "description": "GOG Galaxy is a gaming client that offers DRM-free games, additional content, and more.", "link": "https://www.gog.com/galaxy", - "winget": "GOG.Galaxy" + "winget": "GOG.Galaxy", + "foss": false }, "gitify": { "category": "Development", @@ -1020,7 +1067,8 @@ "content": "Google Drive", "description": "File syncing across devices all tied to your Google account.", "link": "https://www.google.com/drive/", - "winget": "Google.GoogleDrive" + "winget": "Google.GoogleDrive", + "foss": false }, "gpt4all": { "category": "AI-Automation", @@ -1037,7 +1085,8 @@ "content": "GPU-Z", "description": "GPU-Z provides detailed information about your graphics card and GPU.", "link": "https://www.techpowerup.com/gpuz/", - "winget": "TechPowerUp.GPU-Z" + "winget": "TechPowerUp.GPU-Z", + "foss": false }, "greenshot": { "category": "Multimedia Tools", @@ -1054,13 +1103,14 @@ "content": "Gsudo", "description": "Gsudo is a sudo implementation for Windows, allowing elevated privilege execution.", "link": "https://gerardog.github.io/gsudo/", - "winget": "gerardog.gsudo" + "winget": "gerardog.gsudo", + "foss": true }, "hugo": { "category": "Utilities", "choco": "hugo-extended", "content": "Hugo", - "description": "The world’s fastest framework for building websites.", + "description": "The world's fastest framework for building websites.", "link": "https://github.com/gohugoio/hugo/", "winget": "Hugo.Hugo.Extended", "foss": true @@ -1125,7 +1175,8 @@ "content": "HWiNFO", "description": "HWiNFO provides comprehensive hardware information and diagnostics for Windows.", "link": "https://www.hwinfo.com/", - "winget": "REALiX.HWiNFO" + "winget": "REALiX.HWiNFO", + "foss": false }, "hwmonitor": { "category": "Utilities", @@ -1133,11 +1184,12 @@ "content": "HWMonitor", "description": "HWMonitor is a hardware monitoring program that reads PC systems main health sensors.", "link": "https://www.cpuid.com/softwares/hwmonitor.html", - "winget": "CPUID.HWMonitor" + "winget": "CPUID.HWMonitor", + "foss": false }, "imhex": { "category": "Development", - "choco": "na", + "choco": "imhex", "content": "ImHex (Hex Editor)", "description": "A modern, featureful Hex Editor for Reverse Engineers and Developers.", "link": "https://imhex.werwolv.net/", @@ -1159,7 +1211,8 @@ "content": "ImgBurn", "description": "ImgBurn is a lightweight CD, DVD, HD-DVD, and Blu-ray burning application with advanced features for creating and burning disc images.", "link": "https://www.imgburn.com/", - "winget": "LIGHTNINGUK.ImgBurn" + "winget": "LIGHTNINGUK.ImgBurn", + "foss": false }, "inkscape": { "category": "Multimedia Tools", @@ -1185,7 +1238,8 @@ "content": "iTunes", "description": "iTunes is a media player, media library, and online radio broadcaster application developed by Apple Inc.", "link": "https://www.apple.com/itunes/", - "winget": "Apple.iTunes" + "winget": "Apple.iTunes", + "foss": false }, "jami": { "category": "Communications", @@ -1256,7 +1310,8 @@ "content": "JDownloader", "description": "JDownloader is a feature-rich download manager with support for various file hosting services.", "link": "https://jdownloader.org/", - "winget": "AppWork.JDownloader" + "winget": "AppWork.JDownloader", + "foss": true }, "jellyfinmediaplayer": { "category": "Multimedia Tools", @@ -1282,7 +1337,8 @@ "content": "Jetbrains Toolbox", "description": "Jetbrains Toolbox is a platform for easy installation and management of JetBrains developer tools.", "link": "https://www.jetbrains.com/toolbox/", - "winget": "JetBrains.Toolbox" + "winget": "JetBrains.Toolbox", + "foss": false }, "joplin": { "category": "Document", @@ -1335,7 +1391,8 @@ "content": "K-Lite Codec Standard", "description": "K-Lite Codec Pack Standard is a collection of audio and video codecs and related tools, providing essential components for media playback.", "link": "https://www.codecguide.com/", - "winget": "CodecGuide.K-LiteCodecPack.Standard" + "winget": "CodecGuide.K-LiteCodecPack.Standard", + "foss": false }, "kodi": { "category": "Multimedia Tools", @@ -1388,7 +1445,8 @@ "content": "Link Shell extension", "description": "Link Shell Extension (LSE) provides for the creation of Hardlinks, Junctions, Volume Mountpoints, Symbolic Links, a folder cloning process that utilises Hardlinks or Symbolic Links and a copy process taking care of Junctions, Symbolic Links, and Hardlinks. LSE, as its name implies is implemented as a Shell extension and is accessed from Windows Explorer, or similar file/folder managers.", "link": "https://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html", - "winget": "HermannSchinagl.LinkShellExtension" + "winget": "HermannSchinagl.LinkShellExtension", + "foss": false }, "linphone": { "category": "Communications", @@ -1432,7 +1490,8 @@ "content": "LockHunter", "description": "LockHunter is a free tool to delete files blocked by something you do not know.", "link": "https://lockhunter.com/", - "winget": "CrystalRich.LockHunter" + "winget": "CrystalRich.LockHunter", + "foss": false }, "logseq": { "category": "Document", @@ -1449,7 +1508,8 @@ "content": "Logitech G Hub", "description": "Official software for managing Logitech gaming peripherals (mice, keyboards, headsets, lighting profiles, etc.).", "link": "https://www.logitechg.com/en-us/software/ghub", - "winget": "Logitech.GHUB" + "winget": "Logitech.GHUB", + "foss": false }, "malwarebytes": { "category": "Utilities", @@ -1457,7 +1517,8 @@ "content": "Malwarebytes", "description": "Malwarebytes is an anti-malware software that provides real-time protection against threats.", "link": "https://www.malwarebytes.com/", - "winget": "Malwarebytes.Malwarebytes" + "winget": "Malwarebytes.Malwarebytes", + "foss": false }, "mpc-qt": { "category": "Multimedia Tools", @@ -1495,7 +1556,7 @@ "winget": "Meld.Meld", "foss": true }, - "microsoft-aishell": { + "microsoft-aishell": { "category": "AI-Automation", "choco": "na", "content": "Microsoft AI Shell", @@ -1509,13 +1570,13 @@ "choco": "na", "content": "Microsoft Copilot", "description": "Microsoft Copilot desktop app for Windows (consumer Copilot), distributed via Microsoft Store and commonly installed via its Store ID.", - "link": "https://apps.microsoft.com/detail/9nht9rb2f4hd", - "winget": "9NHT9RB2F4HD", + "link": "https://apps.microsoft.com/detail/xp9cxngppj97xx", + "winget": "XP9CXNGPPJ97XX", "foss": false }, "ModernFlyouts": { "category": "Multimedia Tools", - "choco": "na", + "choco": "modernflyouts", "content": "Modern Flyouts", "description": "An open-source, modern, Fluent Design-based set of flyouts for Windows.", "link": "https://github.com/ModernFlyouts-Community/ModernFlyouts/", @@ -1582,7 +1643,8 @@ "content": "MSI Afterburner", "description": "MSI Afterburner is a graphics card overclocking utility with advanced features.", "link": "https://www.msi.com/Landing/afterburner", - "winget": "Guru3D.Afterburner" + "winget": "Guru3D.Afterburner", + "foss": false }, "mullvadvpn": { "category": "Pro Tools", @@ -1644,7 +1706,8 @@ "content": "MusicBee (Music Player)", "description": "MusicBee is a customizable music player with support for various audio formats. It includes features like an integrated search function, tag editing, and more.", "link": "https://getmusicbee.com/", - "winget": "MusicBee.MusicBee" + "winget": "9P4CLT2RJ1RS", + "foss": false }, "mp3tag": { "category": "Multimedia Tools", @@ -1652,7 +1715,8 @@ "content": "Mp3tag (Metadata Audio Editor)", "description": "Mp3tag is a powerful and yet easy-to-use tool to edit metadata of common audio formats.", "link": "https://www.mp3tag.de/en/", - "winget": "Mp3tag.Mp3tag" + "winget": "FlorianHeidenreich.Mp3tag", + "foss": false }, "tagscanner": { "category": "Multimedia Tools", @@ -1660,7 +1724,8 @@ "content": "TagScanner (Tag Scanner)", "description": "TagScanner is a powerful tool for organizing and managing your music collection.", "link": "https://www.xdlab.ru/en/", - "winget": "SergeySerkov.TagScanner" + "winget": "SergeySerkov.TagScanner", + "foss": false }, "nanazip": { "category": "Utilities", @@ -1677,7 +1742,7 @@ "content": "NetBird", "description": "NetBird is a open-source alternative comparable to TailScale that can be connected to a self-hosted server.", "link": "https://netbird.io/", - "winget": "netbird", + "winget": "Netbird.Netbird", "foss": true }, "naps2": { @@ -1704,7 +1769,8 @@ "content": "Neovim", "description": "Neovim is a highly extensible text editor and an improvement over the original Vim editor.", "link": "https://neovim.io/", - "winget": "Neovim.Neovim" + "winget": "Neovim.Neovim", + "foss": true }, "nextclouddesktop": { "category": "Utilities", @@ -1721,7 +1787,8 @@ "content": "nGlide (3dfx compatibility)", "description": "nGlide is a 3Dfx Voodoo Glide wrapper. It allows you to play games that use Glide API on modern graphics cards without the need for a 3Dfx Voodoo graphics card.", "link": "https://www.zeus-software.com/downloads/nglide", - "winget": "ZeusSoftware.nGlide" + "winget": "ZeusSoftware.nGlide", + "foss": false }, "nmap": { "category": "Pro Tools", @@ -1792,7 +1859,8 @@ "content": "NVCleanstall", "description": "NVCleanstall is a tool designed to customize NVIDIA driver installations, allowing advanced users to control more aspects of the installation process.", "link": "https://www.techpowerup.com/nvcleanstall/", - "winget": "TechPowerUp.NVCleanstall" + "winget": "TechPowerUp.NVCleanstall", + "foss": false }, "nvm": { "category": "Development", @@ -1818,7 +1886,8 @@ "content": "Obsidian", "description": "Obsidian is a powerful note-taking and knowledge management application.", "link": "https://obsidian.md/", - "winget": "Obsidian.Obsidian" + "winget": "Obsidian.Obsidian", + "foss": false }, "okular": { "category": "Document", @@ -1844,7 +1913,8 @@ "content": "OneDrive", "description": "OneDrive is a cloud storage service provided by Microsoft, allowing users to store and share files securely across devices.", "link": "https://onedrive.live.com/", - "winget": "Microsoft.OneDrive" + "winget": "Microsoft.OneDrive", + "foss": false }, "onlyoffice": { "category": "Document", @@ -1861,7 +1931,8 @@ "content": "OPAutoClicker", "description": "A full-fledged autoclicker with two modes of autoclicking, at your dynamic cursor location or at a prespecified location.", "link": "https://www.opautoclicker.com", - "winget": "OPAutoClicker.OPAutoClicker" + "winget": "OPAutoClicker.OPAutoClicker", + "foss": false }, "openhashtab": { "category": "Utilities", @@ -1937,7 +2008,7 @@ }, "qview": { "category": "Multimedia Tools", - "choco": "na", + "choco": "qview", "content": "qView", "description": "qView is an image viewer designed with minimalism and usability in mind.", "link": "https://github.com/jurplel/qView", @@ -1946,19 +2017,11 @@ }, "potplayer": { "category": "Multimedia Tools", - "choco": "na", + "choco": "potplayer", "content": "PotPlayer", "description": "PotPlayer is a free Windows media player with wide format support, high performance, built-in codecs, and extensive customization options.", "link": "https://potplayer.tv/", - "winget": "Daum.PotPlayer" - }, - "power-automate-desktop": { - "category": "AI-Automation", - "choco": "na", - "content": "Power Automate for desktop", - "description": "Microsoft's Windows RPA tool for building desktop flows to automate repetitive tasks across apps and services.", - "link": "https://powerautomate.microsoft.com/desktop/", - "winget": "na", + "winget": "Daum.PotPlayer", "foss": false }, "processexplorer": { @@ -1967,7 +2030,8 @@ "content": "Process Explorer", "description": "Process Explorer is a task manager and system monitor.", "link": "https://learn.microsoft.com/sysinternals/downloads/process-explorer", - "winget": "Microsoft.Sysinternals.ProcessExplorer" + "winget": "Microsoft.Sysinternals.ProcessExplorer", + "foss": false }, "Paintdotnet": { "category": "Multimedia Tools", @@ -1975,7 +2039,8 @@ "content": "Paint.NET", "description": "Paint.NET is a free image and photo editing software for Windows. It features an intuitive user interface and supports a wide range of powerful editing tools.", "link": "https://www.getpaint.net/", - "winget": "dotPDN.PaintDotNet" + "winget": "dotPDN.PaintDotNet", + "foss": false }, "parsec": { "category": "Utilities", @@ -1983,7 +2048,8 @@ "content": "Parsec", "description": "Parsec is a low-latency, high-quality remote desktop sharing application for collaborating and gaming across devices.", "link": "https://parsec.app/", - "winget": "Parsec.Parsec" + "winget": "Parsec.Parsec", + "foss": false }, "pdf-xchange": { "category": "Document", @@ -1991,7 +2057,8 @@ "content": "PDF-XChangeEditor", "description": "A comprehensive Windows-based software suite and editor for creating, viewing, editing, annotating, and signing PDF files.", "link": "https://www.pdf-xchange.com/", - "winget": "TrackerSoftware.PDF-XChangeEditor" + "winget": "TrackerSoftware.PDF-XChangeEditor", + "foss": false }, "pdf24creator": { "category": "Document", @@ -1999,7 +2066,8 @@ "content": "PDF24 creator", "description": "Free and easy-to-use online/desktop PDF tools that make you more productive", "link": "https://tools.pdf24.org/en/", - "winget": "geeksoftwareGmbH.PDF24Creator" + "winget": "geeksoftwareGmbH.PDF24Creator", + "foss": false }, "pdfsam": { "category": "Document", @@ -2025,7 +2093,8 @@ "content": "Raspberry Pi Imager", "description": "Raspberry Pi Imager is a utility for writing operating system images to SD cards for Raspberry Pi devices.", "link": "https://www.raspberrypi.com/software/", - "winget": "RaspberryPiFoundation.RaspberryPiImager" + "winget": "RaspberryPiFoundation.RaspberryPiImager", + "foss": true }, "playnite": { "category": "Games", @@ -2042,7 +2111,8 @@ "content": "Plex Media Server", "description": "Plex Media Server is a media server software that allows you to organize and stream your media library. It supports various media formats and offers a wide range of features.", "link": "https://www.plex.tv/your-media/", - "winget": "Plex.PlexMediaServer" + "winget": "Plex.PlexMediaServer", + "foss": false }, "plexdesktop": { "category": "Multimedia Tools", @@ -2050,7 +2120,8 @@ "content": "Plex Desktop", "description": "Plex Desktop for Windows is the front end for Plex Media Server.", "link": "https://www.plex.tv", - "winget": "Plex.Plex" + "winget": "Plex.Plex", + "foss": false }, "Portmaster": { "category": "Pro Tools", @@ -2076,7 +2147,8 @@ "content": "Postman", "description": "Postman is a collaboration platform for API development that simplifies the process of developing APIs.", "link": "https://www.postman.com/", - "winget": "Postman.Postman" + "winget": "Postman.Postman", + "foss": false }, "powerautomate": { "category": "Microsoft Tools", @@ -2084,7 +2156,8 @@ "content": "Power Automate", "description": "Using Power Automate Desktop you can automate tasks on the desktop as well as the Web.", "link": "https://www.microsoft.com/en-us/power-platform/products/power-automate", - "winget": "Microsoft.PowerAutomateDesktop" + "winget": "Microsoft.PowerAutomateDesktop", + "foss": false }, "powerbi": { "category": "Microsoft Tools", @@ -2092,7 +2165,8 @@ "content": "Power BI", "description": "Create stunning reports and visualizations with Power BI Desktop. It puts visual analytics at your fingertips with intuitive report authoring. Drag-and-drop to place content exactly where you want it on the flexible and fluid canvas. Quickly discover patterns as you explore a single unified view of linked, interactive visualizations.", "link": "https://www.microsoft.com/en-us/power-platform/products/power-bi/", - "winget": "Microsoft.PowerBI" + "winget": "Microsoft.PowerBI", + "foss": false }, "powershell": { "category": "Microsoft Tools", @@ -2127,7 +2201,8 @@ "content": "Process Lasso", "description": "Process Lasso is a system optimization and automation tool that improves system responsiveness and stability by adjusting process priorities and CPU affinities.", "link": "https://bitsum.com/", - "winget": "BitSum.ProcessLasso" + "winget": "BitSum.ProcessLasso", + "foss": false }, "protonauth": { "category": "Utilities", @@ -2140,7 +2215,7 @@ }, "protonmail": { "category": "Communications", - "choco": "na", + "choco": "protonmail", "content": "Proton Mail", "description": "Proton Mail is an end-to-end encrypted email service by Proton, protecting your privacy with zero-access encryption.", "link": "https://proton.me/mail", @@ -2149,7 +2224,7 @@ }, "protondrive": { "category": "Utilities", - "choco": "na", + "choco": "protondrive", "content": "Proton Drive", "description": "Proton Drive is an end-to-end encrypted Swiss vault for your files that protects your data.", "link": "https://proton.me/drive", @@ -2158,7 +2233,7 @@ }, "protonpass": { "category": "Utilities", - "choco": "na", + "choco": "protonpass", "content": "Proton Pass", "description": "Proton Pass is a cloud-based password manager with end-to-end encryption and unique email aliases.", "link": "https://proton.me/pass", @@ -2180,7 +2255,8 @@ "content": "SysInternals Process Monitor", "description": "SysInternals Process Monitor is an advanced monitoring tool that shows real-time file system, registry, and process/thread activity.", "link": "https://docs.microsoft.com/en-us/sysinternals/downloads/procmon", - "winget": "Microsoft.Sysinternals.ProcessMonitor" + "winget": "Microsoft.Sysinternals.ProcessMonitor", + "foss": false }, "orcaslicer": { "category": "Utilities", @@ -2191,13 +2267,13 @@ "winget": "SoftFever.OrcaSlicer", "foss": true }, - "prucaslicer": { + "prusaslicer": { "category": "Utilities", "choco": "prusaslicer", "content": "PrusaSlicer", "description": "PrusaSlicer is a powerful and easy-to-use slicing software for 3D printing with Prusa 3D printers.", "link": "https://www.prusa3d.com/prusaslicer/", - "winget": "Prusa3d.PrusaSlicer", + "winget": "Prusa3D.PrusaSlicer", "foss": true }, "psremoteplay": { @@ -2206,7 +2282,8 @@ "content": "PS Remote Play", "description": "PS Remote Play is a free application that allows you to stream games from your PlayStation console to a PC or mobile device.", "link": "https://remoteplay.dl.playstation.net/remoteplay/lang/gb/", - "winget": "PlayStation.PSRemotePlay" + "winget": "PlayStation.PSRemotePlay", + "foss": false }, "putty": { "category": "Pro Tools", @@ -2250,7 +2327,8 @@ "content": "Tixati", "description": "Tixati is a cross-platform BitTorrent client written in C++ that has been designed to be light on system resources.", "link": "https://www.tixati.com/", - "winget": "Tixati.Tixati.Portable" + "winget": "Tixati.Tixati.Portable", + "foss": false }, "qtox": { "category": "Communications", @@ -2265,14 +2343,14 @@ "category": "Utilities", "choco": "quicklook", "content": "Quicklook", - "description": "Bring macOS \u201cQuick Look\u201d feature to Windows.", + "description": "Bring macOS “Quick Look” feature to Windows.", "link": "https://github.com/QL-Win/QuickLook", "winget": "QL-Win.QuickLook", "foss": true }, "rainmeter": { "category": "Utilities", - "choco": "na", + "choco": "rainmeter", "content": "Rainmeter", "description": "Rainmeter is a desktop customization tool that allows you to create and share customizable skins for your desktop.", "link": "https://www.rainmeter.net/", @@ -2285,7 +2363,8 @@ "content": "Revo Uninstaller", "description": "Revo Uninstaller is an advanced uninstaller tool that helps you remove unwanted software and clean up your system.", "link": "https://www.revouninstaller.com/", - "winget": "RevoUninstaller.RevoUninstaller" + "winget": "RevoUninstaller.RevoUninstaller", + "foss": false }, "WiseProgramUninstaller": { "category": "Utilities", @@ -2293,7 +2372,8 @@ "content": "Wise Program Uninstaller (WiseCleaner)", "description": "Wise Program Uninstaller is the perfect solution for uninstalling Windows programs, allowing you to uninstall applications quickly and completely using its simple and user-friendly interface.", "link": "https://www.wisecleaner.com/wise-program-uninstaller.html", - "winget": "WiseCleaner.WiseProgramUninstaller" + "winget": "WiseCleaner.WiseProgramUninstaller", + "foss": false }, "revolt": { "category": "Communications", @@ -2391,11 +2471,12 @@ "content": "Nilesoft Shell", "description": "Shell is an expanded context menu tool that adds extra functionality and customization options to the Windows context menu.", "link": "https://nilesoft.org/", - "winget": "Nilesoft.Shell" + "winget": "Nilesoft.Shell", + "foss": false }, "systeminformer": { "category": "Development", - "choco": "na", + "choco": "systeminformer", "content": "System Informer", "description": "A free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware.", "link": "https://systeminformer.com/", @@ -2408,7 +2489,8 @@ "content": "SideQuestVR", "description": "SideQuestVR is a community-driven platform that enables users to discover, install, and manage virtual reality content on Oculus Quest devices.", "link": "https://sidequestvr.com/", - "winget": "SideQuestVR.SideQuest" + "winget": "SideQuestVR.SideQuest", + "foss": false }, "signal": { "category": "Communications", @@ -2425,7 +2507,8 @@ "content": "SignalRGB", "description": "SignalRGB lets you control and sync your favorite RGB devices with one free application.", "link": "https://www.signalrgb.com/", - "winget": "WhirlwindFX.SignalRgb" + "winget": "WhirlwindFX.SignalRgb", + "foss": false }, "simplenote": { "category": "Document", @@ -2451,7 +2534,8 @@ "content": "Slack", "description": "Slack is a collaboration hub that connects teams and facilitates communication through channels, messaging, and file sharing.", "link": "https://slack.com/", - "winget": "SlackTechnologies.Slack" + "winget": "SlackTechnologies.Slack", + "foss": false }, "spacedrive": { "category": "Utilities", @@ -2468,7 +2552,8 @@ "content": "SpaceSniffer", "description": "A tool application that lets you understand how folders and files are structured on your disks.", "link": "http://www.uderzo.it/main_products/space_sniffer/", - "winget": "UderzoSoftware.SpaceSniffer" + "winget": "UderzoSoftware.SpaceSniffer", + "foss": false }, "starship": { "category": "Development", @@ -2476,7 +2561,7 @@ "content": "Starship (Shell Prompt)", "description": "Starship is a minimal, fast, and customizable prompt for any shell.", "link": "https://starship.rs/", - "winget": "starship", + "winget": "Starship.Starship", "foss": true }, "steam": { @@ -2485,7 +2570,8 @@ "content": "Steam", "description": "Steam is a digital distribution platform for purchasing and playing video games, offering multiplayer gaming, video streaming, and more.", "link": "https://store.steampowered.com/about/", - "winget": "Valve.Steam" + "winget": "Valve.Steam", + "foss": false }, "strawberry": { "category": "Multimedia Tools", @@ -2511,7 +2597,8 @@ "content": "Sublime Merge", "description": "Sublime Merge is a Git client with advanced features and a beautiful interface.", "link": "https://www.sublimemerge.com/", - "winget": "SublimeHQ.SublimeMerge" + "winget": "SublimeHQ.SublimeMerge", + "foss": false }, "sublimetext": { "category": "Development", @@ -2519,7 +2606,8 @@ "content": "Sublime Text", "description": "Sublime Text is a sophisticated text editor for code, markup, and prose.", "link": "https://www.sublimetext.com/", - "winget": "SublimeHQ.SublimeText.4" + "winget": "SublimeHQ.SublimeText.4", + "foss": false }, "sumatra": { "category": "Document", @@ -2532,11 +2620,12 @@ }, "pdfgear": { "category": "Document", - "choco": "na", + "choco": "pdfgear", "content": "PDFgear", "description": "PDFgear is a piece of full-featured PDF management software for Windows, macOS, and mobile, and it's completely free to use.", "link": "https://www.pdfgear.com/", - "winget": "PDFgear.PDFgear" + "winget": "PDFgear.PDFgear", + "foss": false }, "sunshine": { "category": "Games", @@ -2580,7 +2669,8 @@ "content": "Microsoft SQL Server Management Studio", "description": "SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure, from SQL Server to Azure SQL Database. SSMS provides tools to configure, monitor, and administer instances of SQL Server and databases.", "link": "https://learn.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver16", - "winget": "Microsoft.SQLServerManagementStudio" + "winget": "Microsoft.SQLServerManagementStudio", + "foss": false }, "tabby": { "category": "Utilities", @@ -2597,7 +2687,7 @@ "content": "Tailscale", "description": "Tailscale is a secure and easy-to-use VPN solution for connecting your devices and networks.", "link": "https://tailscale.com/", - "winget": "tailscale.tailscale", + "winget": "Tailscale.Tailscale", "foss": true }, "TcNoAccSwitcher": { @@ -2615,7 +2705,8 @@ "content": "SysInternals TCPView", "description": "SysInternals TCPView is a network monitoring tool that displays a detailed list of all TCP and UDP endpoints on your system.", "link": "https://docs.microsoft.com/en-us/sysinternals/downloads/tcpview", - "winget": "Microsoft.Sysinternals.TCPView" + "winget": "Microsoft.Sysinternals.TCPView", + "foss": false }, "teams": { "category": "Communications", @@ -2623,7 +2714,8 @@ "content": "Teams", "description": "Microsoft Teams is a collaboration platform that integrates with Office 365 and offers chat, video conferencing, file sharing, and more.", "link": "https://www.microsoft.com/en-us/microsoft-teams/group-chat-software", - "winget": "Microsoft.Teams" + "winget": "Microsoft.Teams", + "foss": false }, "teamviewer": { "category": "Utilities", @@ -2631,7 +2723,8 @@ "content": "TeamViewer", "description": "TeamViewer is a popular remote access and support software that allows you to connect to and control remote devices.", "link": "https://www.teamviewer.com/", - "winget": "TeamViewer.TeamViewer" + "winget": "TeamViewer.TeamViewer", + "foss": false }, "teamspeak3": { "category": "Utilities", @@ -2639,7 +2732,8 @@ "content": "TeamSpeak 3", "description": "TEAMSPEAK. YOUR TEAM. YOUR RULES. Use crystal clear sound to communicate with your team mates cross-platform with military-grade security, lag-free performance & unparalleled reliability and uptime.", "link": "https://www.teamspeak.com/", - "winget": "TeamSpeakSystems.TeamSpeakClient" + "winget": "TeamSpeakSystems.TeamSpeakClient", + "foss": false }, "telegram": { "category": "Communications", @@ -2656,7 +2750,7 @@ "content": "Unigram", "description": "Unigram - Telegram for Windows.", "link": "https://unigramdev.github.io/", - "winget": "Telegram.Unigram", + "winget": "9N97ZCKPD60Q", "foss": true }, "terminal": { @@ -2715,11 +2809,12 @@ }, "tidal": { "category": "Multimedia Tools", - "choco": "na", + "choco": "tidal", "content": "Tidal", "description": "Tidal is a music streaming service known for its high-fidelity audio quality and exclusive content. It offers a vast library of songs and curated playlists.", "link": "https://tidal.com/", - "winget": "9NNCB5BS59PH" + "winget": "9NNCB5BS59PH", + "foss": false }, "tor": { "category": "Browsers", @@ -2736,7 +2831,8 @@ "content": "Total Commander", "description": "Total Commander is a file manager for Windows that provides a powerful and intuitive interface for file management.", "link": "https://www.ghisler.com/", - "winget": "Ghisler.TotalCommander" + "winget": "Ghisler.TotalCommander", + "foss": false }, "treesize": { "category": "Utilities", @@ -2744,7 +2840,8 @@ "content": "TreeSize Free", "description": "TreeSize Free is a disk space manager that helps you analyze and visualize the space usage on your drives.", "link": "https://www.jam-software.com/treesize_free/", - "winget": "JAMSoftware.TreeSize.Free" + "winget": "JAMSoftware.TreeSize.Free", + "foss": false }, "ttaskbar": { "category": "Utilities", @@ -2770,7 +2867,8 @@ "content": "Ubisoft Connect", "description": "Ubisoft Connect is Ubisoft's digital distribution and online gaming service, providing access to Ubisoft's games and services.", "link": "https://ubisoftconnect.com/", - "winget": "Ubisoft.Connect" + "winget": "Ubisoft.Connect", + "foss": false }, "ungoogled": { "category": "Browsers", @@ -2787,7 +2885,8 @@ "content": "Unity Game Engine", "description": "Unity is a powerful game development platform for creating 2D, 3D, augmented reality, and virtual reality games.", "link": "https://unity.com/", - "winget": "Unity.UnityHub" + "winget": "Unity.UnityHub", + "foss": false }, "veravrypt": { "category": "Utilities", @@ -2813,7 +2912,8 @@ "content": "Visual C++ 2015-2022 32-bit", "description": "Visual C++ 2015-2022 32-bit redistributable package installs runtime components of Visual C++ libraries required to run 32-bit applications.", "link": "https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads", - "winget": "Microsoft.VCRedist.2015+.x86" + "winget": "Microsoft.VCRedist.2015+.x86", + "foss": false }, "vc2015_64": { "category": "Microsoft Tools", @@ -2821,7 +2921,8 @@ "content": "Visual C++ 2015-2022 64-bit", "description": "Visual C++ 2015-2022 64-bit redistributable package installs runtime components of Visual C++ libraries required to run 64-bit applications.", "link": "https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads", - "winget": "Microsoft.VCRedist.2015+.x64" + "winget": "Microsoft.VCRedist.2015+.x64", + "foss": false }, "ventoy": { "category": "Pro Tools", @@ -2847,7 +2948,8 @@ "content": "Viber", "description": "Viber is a free messaging and calling app with features like group chats, video calls, and more.", "link": "https://www.viber.com/", - "winget": "Rakuten.Viber" + "winget": "Rakuten.Viber", + "foss": false }, "videomass": { "category": "Multimedia Tools", @@ -2864,7 +2966,8 @@ "content": "Visual Studio 2022", "description": "Visual Studio 2022 is an integrated development environment (IDE) for building, debugging, and deploying applications.", "link": "https://visualstudio.microsoft.com/", - "winget": "Microsoft.VisualStudio.2022.Community" + "winget": "Microsoft.VisualStudio.2022.Community", + "foss": false }, "visualstudio2026": { "category": "Development", @@ -2872,7 +2975,8 @@ "content": "Visual Studio 2026", "description": "Visual Studio 2026 is an integrated development environment (IDE) for building, debugging, and deploying applications.", "link": "https://visualstudio.microsoft.com/", - "winget": "Microsoft.VisualStudio.2026.Community" + "winget": "Microsoft.VisualStudio.Community", + "foss": false }, "vivaldi": { "category": "Browsers", @@ -2880,7 +2984,8 @@ "content": "Vivaldi", "description": "Vivaldi is a highly customizable web browser with a focus on user personalization and productivity features.", "link": "https://vivaldi.com/", - "winget": "Vivaldi.Vivaldi" + "winget": "Vivaldi.Vivaldi", + "foss": false }, "vlc": { "category": "Multimedia Tools", @@ -2897,7 +3002,8 @@ "content": "Voicemeeter (Audio)", "description": "Voicemeeter is a virtual audio mixer that allows you to manage and enhance audio streams on your computer. It is commonly used for audio recording and streaming purposes.", "link": "https://voicemeeter.com/", - "winget": "VB-Audio.Voicemeeter" + "winget": "VB-Audio.Voicemeeter", + "foss": false }, "VoicemeeterPotato": { "category": "Multimedia Tools", @@ -2905,7 +3011,8 @@ "content": "Voicemeeter Potato", "description": "Voicemeeter Potato is the ultimate version of the Voicemeeter Audio Mixer Application endowed with Virtual Audio Device to mix and manage any audio sources from or to any audio devices or applications.", "link": "https://voicemeeter.com/", - "winget": "VB-Audio.Voicemeeter.Potato" + "winget": "VB-Audio.Voicemeeter.Potato", + "foss": false }, "vrdesktopstreamer": { "category": "Games", @@ -2913,7 +3020,8 @@ "content": "Virtual Desktop Streamer", "description": "Virtual Desktop Streamer is a tool that allows you to stream your desktop screen to VR devices.", "link": "https://www.vrdesktop.net/", - "winget": "VirtualDesktop.Streamer" + "winget": "VirtualDesktop.Streamer", + "foss": false }, "vscode": { "category": "Development", @@ -2966,7 +3074,8 @@ "content": "Windows PC Health Check", "description": "Windows PC Health Check is a tool that helps you check if your PC meets the system requirements for Windows 11.", "link": "https://support.microsoft.com/en-us/windows/how-to-use-the-pc-health-check-app-9c8abd9b-03ba-4e67-81ef-36f37caa7844", - "winget": "Microsoft.WindowsPCHealthCheck" + "winget": "Microsoft.WindowsPCHealthCheck", + "foss": false }, "WindowGrid": { "category": "Utilities", @@ -2974,7 +3083,8 @@ "content": "WindowGrid", "description": "WindowGrid is a modern window management program for Windows that allows the user to quickly and easily layout their windows on a dynamic grid using just the mouse.", "link": "http://windowgrid.net/", - "winget": "na" + "winget": "na", + "foss": false }, "wingetui": { "category": "Utilities", @@ -3009,7 +3119,8 @@ "content": "WinRAR", "description": "WinRAR is a powerful archive manager that allows you to create, manage, and extract compressed files.", "link": "https://www.win-rar.com/", - "winget": "RARLab.WinRAR" + "winget": "RARLab.WinRAR", + "foss": false }, "winscp": { "category": "Pro Tools", @@ -3044,7 +3155,8 @@ "content": "WiseToys", "description": "WiseToys is a set of utilities and tools designed to enhance and optimize your Windows experience.", "link": "https://toys.wisecleaner.com/", - "winget": "WiseCleaner.WiseToys" + "winget": "WiseCleaner.WiseToys", + "foss": false }, "TeraCopy": { "category": "Utilities", @@ -3052,15 +3164,17 @@ "content": "TeraCopy", "description": "Copy your files faster and more securely.", "link": "https://codesector.com/teracopy", - "winget": "CodeSector.TeraCopy" + "winget": "CodeSector.TeraCopy", + "foss": false }, "wizfile": { "category": "Utilities", - "choco": "na", + "choco": "wizfile", "content": "WizFile", "description": "Find files by name on your hard drives almost instantly.", "link": "https://antibody-software.com/wizfile/", - "winget": "AntibodySoftware.WizFile" + "winget": "AntibodySoftware.WizFile", + "foss": false }, "wiztree": { "category": "Utilities", @@ -3068,7 +3182,8 @@ "content": "WizTree", "description": "WizTree is a fast disk space analyzer that helps you quickly find the files and folders consuming the most space on your hard drive.", "link": "https://wiztreefree.com/", - "winget": "AntibodySoftware.WizTree" + "winget": "AntibodySoftware.WizTree", + "foss": false }, "xdm": { "category": "Utilities", @@ -3085,7 +3200,8 @@ "content": "HxD Hex Editor", "description": "HxD is a free hex editor that allows you to edit, view, search, and analyze binary files.", "link": "https://mh-nexus.de/en/hxd/", - "winget": "MHNexus.HxD" + "winget": "MHNexus.HxD", + "foss": false }, "xemu": { "category": "Games", @@ -3102,7 +3218,8 @@ "content": "XnView classic", "description": "XnView is an efficient image viewer, browser and converter for Windows.", "link": "https://www.xnview.com/en/xnview/", - "winget": "XnSoft.XnView.Classic" + "winget": "XnSoft.XnView.Classic", + "foss": false }, "xournal": { "category": "Document", @@ -3146,7 +3263,8 @@ "content": "ZeroTier One", "description": "ZeroTier One is a software-defined networking tool that allows you to create secure and scalable networks.", "link": "https://zerotier.com/", - "winget": "ZeroTier.ZeroTierOne" + "winget": "ZeroTier.ZeroTierOne", + "foss": false }, "zim": { "category": "Document", @@ -3172,15 +3290,17 @@ "content": "Zoom", "description": "Zoom is a popular video conferencing and web conferencing service for online meetings, webinars, and collaborative projects.", "link": "https://zoom.us/", - "winget": "Zoom.Zoom" + "winget": "Zoom.Zoom", + "foss": false }, "zoomit": { "category": "Utilities", - "choco": "na", + "choco": "zoomit", "content": "ZoomIt", "description": "A screen zoom, annotation, and recording tool for technical presentations and demos.", "link": "https://learn.microsoft.com/en-us/sysinternals/downloads/zoomit", - "winget": "Microsoft.Sysinternals.ZoomIt" + "winget": "Microsoft.Sysinternals.ZoomIt", + "foss": false }, "zotero": { "category": "Document", @@ -3256,7 +3376,7 @@ }, "uv": { "category": "Development", - "choco": "na", + "choco": "uv", "content": "uv", "description": "uv is a fast Python package and project manager written in Rust.", "link": "https://docs.astral.sh/uv/getting-started/installation/", @@ -3287,7 +3407,7 @@ "content": "UltraVNC", "description": "UltraVNC is a powerful, easy to use and free - remote pc access software - that can display the screen of another computer (via internet or network) on your own screen. The program allows you to use your mouse and keyboard to control the other PC remotely. It means that you can work on a remote computer, as if you were sitting in front of it, right from your current location.", "link": "https://uvnc.com/", - "winget": "uvncbvba.UltraVnc", + "winget": "uvncbvba.UltraVNC", "foss": true }, "windowsfirewallcontrol": { @@ -3296,7 +3416,8 @@ "content": "Windows Firewall Control", "description": "Windows Firewall Control is a powerful tool which extends the functionality of Windows Firewall and provides new extra features which makes Windows Firewall better.", "link": "https://www.binisoft.org/wfc", - "winget": "BiniSoft.WindowsFirewallControl" + "winget": "BiniSoft.WindowsFirewallControl", + "foss": false }, "vistaswitcher": { "category": "Utilities", @@ -3304,7 +3425,8 @@ "content": "VistaSwitcher", "description": "VistaSwitcher makes it easier for you to locate windows and switch focus, even on multi-monitor systems. The switcher window consists of an easy-to-read list of all tasks running with clearly shown titles and a full-sized preview of the selected task.", "link": "https://www.ntwind.com/freeware/vistaswitcher.html", - "winget": "ntwind.VistaSwitcher" + "winget": "ntwind.VistaSwitcher", + "foss": false }, "autodarkmode": { "category": "Utilities", @@ -3312,7 +3434,7 @@ "content": "Windows Auto Dark Mode", "description": "Automatically switches between the dark and light theme of Windows 10 and Windows 11.", "link": "https://github.com/AutoDarkMode/Windows-Auto-Night-Mode", - "winget": "Armin2208.WindowsAutoNightMode", + "winget": "ArminOsaj.AutoDarkMode", "foss": true }, "AmbieWhiteNoise": { @@ -3362,7 +3484,7 @@ }, "glazewm": { "category": "Utilities", - "choco": "na", + "choco": "glazewm", "content": "GlazeWM", "description": "GlazeWM is a tiling window manager for Windows inspired by i3 and Polybar.", "link": "https://github.com/glzr-io/glazewm", @@ -3393,7 +3515,8 @@ "content": "Windhawk", "description": "The customization marketplace for Windows programs.", "link": "https://windhawk.net", - "winget": "RamenSoftware.Windhawk" + "winget": "RamenSoftware.Windhawk", + "foss": true }, "ForceAutoHDR": { "category": "Utilities", @@ -3410,7 +3533,8 @@ "content": "JoyToKey", "description": "Enables PC game controllers to emulate the keyboard and mouse input.", "link": "https://joytokey.net/en/", - "winget": "JTKsoftware.JoyToKey" + "winget": "JTKsoftware.JoyToKey", + "foss": false }, "nditools": { "category": "Multimedia Tools", @@ -3418,11 +3542,12 @@ "content": "NDI Tools", "description": "NDI, or Network Device Interface, is a video connectivity standard that enables multimedia systems to identify and communicate with one another over IP and to encode, transmit, and receive high-quality, low latency, frame-accurate video and audio, and exchange metadata in real-time.", "link": "https://ndi.video/", - "winget": "NDI.NDITools" + "winget": "NDI.NDITools", + "foss": false }, "kicad": { "category": "Multimedia Tools", - "choco": "na", + "choco": "kicad", "content": "Kicad", "description": "Kicad is an open-source EDA tool. It's a good starting point for those who want to do electrical design and is even used by professionals in the industry.", "link": "https://www.kicad.org/", @@ -3431,11 +3556,12 @@ }, "dropox": { "category": "Utilities", - "choco": "na", + "choco": "dropbox", "content": "Dropbox", - "description": "The Dropbox desktop app! Save hard drive space, share and edit files and send for signature \u2013 all without the distraction of countless browser tabs.", + "description": "The Dropbox desktop app! Save hard drive space, share and edit files and send for signature – all without the distraction of countless browser tabs.", "link": "https://www.dropbox.com/en_GB/desktop", - "winget": "Dropbox.Dropbox" + "winget": "Dropbox.Dropbox", + "foss": false }, "Overwolf": { "category": "Games", @@ -3443,7 +3569,8 @@ "content": "Overwolf", "description": "Popular platform for game overlays and companion apps (mod managers, trackers, etc.), widely used by gamers.", "link": "https://www.overwolf.com/app/overwolf-curseforge", - "winget": "Overwolf.CurseForge" + "winget": "Overwolf.CurseForge", + "foss": false }, "OFGB": { "category": "Utilities", @@ -3501,7 +3628,7 @@ }, "SubtitleEdit": { "category": "Multimedia Tools", - "choco": "na", + "choco": "subtitleedit", "content": "Subtitle Edit", "description": "Subtitle Edit is a free and open-source editor for video subtitles.", "link": "https://github.com/SubtitleEdit/subtitleedit", @@ -3514,11 +3641,12 @@ "content": "Fork", "description": "Fork - a fast and friendly git client.", "link": "https://git-fork.com/", - "winget": "Fork.Fork" + "winget": "Fork.Fork", + "foss": false }, "ZenBrowser": { "category": "Browsers", - "choco": "na", + "choco": "zen-browser", "content": "Zen Browser", "description": "The modern, privacy-focused, performance-driven browser built on Firefox.", "link": "https://zen-browser.app/", @@ -3527,7 +3655,7 @@ }, "Zed": { "category": "Development", - "choco": "na", + "choco": "zed", "content": "Zed", "description": "Zed is a modern, high-performance code editor designed from the ground up for speed and collaboration.", "link": "https://zed.dev/", @@ -3555,7 +3683,7 @@ "Ruby": { "category": "Development", "choco": "ruby", - "winget": "RubyInstallerTeam.RubyWithDevkit.3.4", + "winget": "RubyInstallerTeam.Ruby.4.0", "description": "A Ruby language execution environment with a MSYS2 installation.", "content": "Ruby", "link": "https://rubyinstaller.org/", From 780ea84e9e14c493e288ada694526b0b451986a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 09:38:39 -0500 Subject: [PATCH 05/22] Update sponsors in README (#4359) Co-authored-by: ChrisTitusTech <7896101+ChrisTitusTech@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9896ad17..26714596 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ You'll see a new file named `winutil.ps1`, which was created by `Compile.ps1` sc These are the sponsors that help keep this project alive with monthly contributions. -User avatar: User avatar: Martin StockzellUser avatar: Jason A. DiegmuellerUser avatar: RMSUser avatar: PaulUser avatar: Dave J  (WhamGeek)User avatar: Anthony MendezUser avatar: User avatar: DursleyGuyUser avatar: User avatar: Kiera MeredithUser avatar: Miguel DiazUser avatar: Andrew PUser avatar: Enzo Ferroni +User avatar: User avatar: Martin StockzellUser avatar: Jason A. DiegmuellerUser avatar: RMSUser avatar: PaulUser avatar: Dave J  (WhamGeek)User avatar: Anthony MendezUser avatar: User avatar: DursleyGuyUser avatar: User avatar: Kiera MeredithUser avatar: Miguel DiazUser avatar: Andrew PUser avatar: Di3Z1E ## 🏅 Thanks to all Contributors Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻. From 805a004a3a6b54b77bc536912dd2fa3b568c3d40 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 09:39:06 -0500 Subject: [PATCH 06/22] Bump actions/github-script from 8 to 9 (#4356) Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/label-pr.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/label-pr.yaml b/.github/workflows/label-pr.yaml index 72152ab8..5bf60fe9 100644 --- a/.github/workflows/label-pr.yaml +++ b/.github/workflows/label-pr.yaml @@ -13,7 +13,7 @@ jobs: contents: read # Often needed for github-script steps: - name: Check PR body for Type of Change - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prBody = context.payload.pull_request.body || ''; From 4783e71750175e5096ca2e083265f15c54a35890 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 09:39:29 -0500 Subject: [PATCH 07/22] Bump softprops/action-gh-release from 2 to 3 (#4355) Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 2 to 3. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/pre-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pre-release.yaml b/.github/workflows/pre-release.yaml index 08191678..e1988e49 100644 --- a/.github/workflows/pre-release.yaml +++ b/.github/workflows/pre-release.yaml @@ -111,7 +111,7 @@ jobs: - name: Create and Upload Release id: create_release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ env.VERSION }} name: Pre-Release ${{ env.VERSION }} From eb08eae35737252e0f155593b27bcbbf4d71500d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tommi=20P=C3=B6ntinen?= <98650216+tommipontinen76@users.noreply.github.com> Date: Tue, 14 Apr 2026 17:39:56 +0300 Subject: [PATCH 08/22] Remove Xtreme Download Manager from applications.json (#4352) Removed Xtreme Download Manager entry from applications. --- config/applications.json | 9 --------- 1 file changed, 9 deletions(-) diff --git a/config/applications.json b/config/applications.json index f0ac1402..1e28eae7 100644 --- a/config/applications.json +++ b/config/applications.json @@ -3185,15 +3185,6 @@ "winget": "AntibodySoftware.WizTree", "foss": false }, - "xdm": { - "category": "Utilities", - "choco": "xdm", - "content": "Xtreme Download Manager", - "description": "Xtreme Download Manager is an advanced download manager with support for various protocols and browsers. *Browser integration deprecated by google store. No official release.*", - "link": "https://xtremedownloadmanager.com/", - "winget": "subhra74.XtremeDownloadManager", - "foss": true - }, "xeheditor": { "category": "Utilities", "choco": "HxD", From 8378fd5377473e225503705d32fcbe92caf3303d Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Tue, 14 Apr 2026 18:04:16 +0300 Subject: [PATCH 09/22] Removed onedrivesetup removal from Invoke-WinUtilISOScript.ps1 (#4350) * Removed onedrivesetup removal Invoke-WinUtilISOScript.ps1 * Added OneDrive removal to autounattend.xml --- functions/private/Invoke-WinUtilISOScript.ps1 | 12 +++--------- tools/autounattend.xml | 3 +++ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/functions/private/Invoke-WinUtilISOScript.ps1 b/functions/private/Invoke-WinUtilISOScript.ps1 index 16dc7e20..166e314d 100644 --- a/functions/private/Invoke-WinUtilISOScript.ps1 +++ b/functions/private/Invoke-WinUtilISOScript.ps1 @@ -169,13 +169,7 @@ function Invoke-WinUtilISOScript { & $Log "Driver injection skipped." } - # ── 3. Remove OneDrive ──────────────────────────────────────────────────── - & $Log "Removing OneDrive..." - & takeown /f "$ScratchDir\Windows\System32\OneDriveSetup.exe" | Out-Null - & icacls "$ScratchDir\Windows\System32\OneDriveSetup.exe" /grant "$($adminGroup.Value):(F)" /T /C | Out-Null - Remove-Item -Path "$ScratchDir\Windows\System32\OneDriveSetup.exe" -Force -ErrorAction SilentlyContinue - - # ── 4. Registry tweaks ──────────────────────────────────────────────────── + # ── 3. Registry tweaks ──────────────────────────────────────────────────── & $Log "Loading offline registry hives..." reg load HKLM\zCOMPONENTS "$ScratchDir\Windows\System32\config\COMPONENTS" reg load HKLM\zDEFAULT "$ScratchDir\Windows\System32\config\default" @@ -329,7 +323,7 @@ function Invoke-WinUtilISOScript { reg unload HKLM\zSOFTWARE reg unload HKLM\zSYSTEM - # ── 5. Delete scheduled task definition files ───────────────────────────── + # ── 4. Delete scheduled task definition files ───────────────────────────── & $Log "Deleting scheduled task definition files..." $tasksPath = "$ScratchDir\Windows\System32\Tasks" Remove-Item "$tasksPath\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" -Force -ErrorAction SilentlyContinue @@ -345,7 +339,7 @@ function Invoke-WinUtilISOScript { Remove-Item "$tasksPath\Microsoft\WindowsUpdate" -Recurse -Force -ErrorAction SilentlyContinue & $Log "Scheduled task files deleted." - # ── 6. Remove ISO support folder ───────────────────────────────────────── + # ── 5. Remove ISO support folder ───────────────────────────────────────── if ($ISOContentsDir -and (Test-Path $ISOContentsDir)) { & $Log "Removing ISO support\ folder..." Remove-Item -Path (Join-Path $ISOContentsDir "support") -Recurse -Force -ErrorAction SilentlyContinue diff --git a/tools/autounattend.xml b/tools/autounattend.xml index 7a7c01e4..69bc0434 100644 --- a/tools/autounattend.xml +++ b/tools/autounattend.xml @@ -459,6 +459,9 @@ $scripts = @( Start-Process -FilePath (Join-Path $viveDir 'ViVeTool.exe') -ArgumentList '/disable /id:47205210' -Wait -NoNewWindow; Remove-Item -Path $viveDir -Recurse -Force; }; + { + Start-Process C:\Windows\System32\OneDriveSetup.exe -ArgumentList /uninstall + }; { if( (Get-BitLockerVolume -MountPoint $Env:SystemDrive).ProtectionStatus -eq 'On' ) { Disable-BitLocker -MountPoint $Env:SystemDrive; From 8e2dc2182389bb088c7fca3e4bfe2f2c5835c0ae Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Tue, 14 Apr 2026 19:03:07 +0300 Subject: [PATCH 10/22] Update `Invoke-WinUtilRemoveEdge.ps1` (#4358) * Replce Get-ChildItem with Resolve-Path inside of Invoke-WinUtilRemoveEdge.ps1 * Update Invoke-WinUtilRemoveEdge.ps1 * Update Invoke-WinUtilRemoveEdge.ps1 --- functions/public/Invoke-WinUtilRemoveEdge.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/public/Invoke-WinUtilRemoveEdge.ps1 b/functions/public/Invoke-WinUtilRemoveEdge.ps1 index def31d7f..b1111b21 100644 --- a/functions/public/Invoke-WinUtilRemoveEdge.ps1 +++ b/functions/public/Invoke-WinUtilRemoveEdge.ps1 @@ -1,7 +1,7 @@ function Invoke-WinUtilRemoveEdge { - $Path = Get-ChildItem -Path "$Env:ProgramFiles (x86)\Microsoft\Edge\Application\*\Installer\setup.exe" | Select-Object -First 1 - New-Item -Path "$Env:SystemRoot\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\MicrosoftEdge.exe" -Force + + $Path = Resolve-Path -Path "$Env:ProgramFiles (x86)\Microsoft\Edge\Application\*\Installer\setup.exe" | Select-Object -Last 1 Start-Process -FilePath $Path -ArgumentList '--uninstall --system-level --force-uninstall --delete-profile' -Wait Write-Host "Microsoft Edge was removed" -ForegroundColor Green From e1e077c69b77f83e2d78634c92ac7451ebec395a Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Fri, 17 Apr 2026 16:57:01 +0300 Subject: [PATCH 11/22] Added Notion and Todoist and Morgen and `Helium` to applications.json (#4345) * Added Notion and Todoist and Morgen to applications.json * Update applications.json * Update applications.json * Update applications.json * Update applications.json * Update applications.json * Update applications.json * Added helium to applications.json * Update applications.json * Added netspeedtray to applications.json --- config/applications.json | 45 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/config/applications.json b/config/applications.json index 1e28eae7..bc3e7bab 100644 --- a/config/applications.json +++ b/config/applications.json @@ -1106,6 +1106,15 @@ "winget": "gerardog.gsudo", "foss": true }, + "helium": { + "category": "Browsers", + "choco": "helium", + "content": "Helium", + "description": "Private, fast, and honest web browser.", + "link": "https://github.com/imputnet/helium/", + "winget": "ImputNet.Helium", + "foss": true + }, "hugo": { "category": "Utilities", "choco": "hugo-extended", @@ -1511,6 +1520,15 @@ "winget": "Logitech.GHUB", "foss": false }, + "morgen": { + "category": "Utilities", + "choco": "morgen", + "content": "Morgen", + "description": "A daily planner that prioritizes your most important to-dos, events, and projects in one app. Get AI-powered recommendations or plan manually.", + "link": "https://www.morgen.so/", + "winget": "Morgen.Morgen", + "foss": false + }, "malwarebytes": { "category": "Utilities", "choco": "malwarebytes", @@ -1727,6 +1745,24 @@ "winget": "SergeySerkov.TagScanner", "foss": false }, + "netspeedtray": { + "category": "Utilities", + "choco": "na", + "content": "NetSpeedTray", + "description": "A lightweight, open-source network monitor for Windows that displays live upload/download speeds directly on the Taskbar with a native look and feel.", + "link": "https://github.com/erez-c137/NetSpeedTray/tree/main/", + "winget": "erez-c137.NetSpeedTray", + "foss": true + }, + "notion": { + "category": "AI-Automation", + "choco": "notion", + "content": "Notion", + "description": "Build Custom Agents, search across all your apps, and automate busywork. The AI workspace where teams get more done, faster.", + "link": "https://www.notion.com/", + "winget": "Notion.Notion", + "foss": false + }, "nanazip": { "category": "Utilities", "choco": "nanazip", @@ -2726,6 +2762,15 @@ "winget": "TeamViewer.TeamViewer", "foss": false }, + "todoist": { + "category": "Utilities", + "choco": "todoist-desktop", + "content": "Todoist", + "description": "Join 50+ million professionals who simplify work and life with the world’s #1 to-do list app.", + "link": "https://www.todoist.com/", + "winget": "Doist.Todoist", + "foss": false + }, "teamspeak3": { "category": "Utilities", "choco": "teamspeak", From a4d0f36ed58f0a28ee7c21bcd7c3b0b06ad50ea8 Mon Sep 17 00:00:00 2001 From: Vaso <92270244+SillyVaso@users.noreply.github.com> Date: Fri, 17 Apr 2026 16:58:06 +0300 Subject: [PATCH 12/22] Add toggler for Acrylic effect on login screen (#4348) * Update applications.json * Remove Borderless Gaming * Update UniGetUI code for their link and winget * Add login blur toggler * hidden -> removed / sorry! --------- Co-authored-by: Vaso <92270244+VasoHD@users.noreply.github.com> --- config/tweaks.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/config/tweaks.json b/config/tweaks.json index 019d4e96..eab66cd4 100644 --- a/config/tweaks.json +++ b/config/tweaks.json @@ -2185,6 +2185,24 @@ ], "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/verboselogon" }, + "WPFToggleLoginBlur": { + "Content": "Acrylic Blur on Login Screen", + "Description": "If disabled, the acrylic blur effect will be removed on the Windows 10/11 login screen background.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System", + "Name": "DisableAcrylicBackgroundOnLogon", + "Value": "0", + "Type": "DWord", + "OriginalValue": "1", + "DefaultState": "true" + } + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/loginblur" + }, "WPFToggleStartMenuRecommendations": { "Content": "Recommendations in Start Menu", "Description": "If disabled, then you will not see recommendations in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.", From d736bc4305614dfa0574c200742bdcd86b0fdb94 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Fri, 17 Apr 2026 08:58:38 -0500 Subject: [PATCH 13/22] chore: Update generated dev docs (#4380) --- .../Customize-Preferences/DetailedBSoD.md | 2 +- .../DisableCrossDeviceResume.md | 2 +- .../Customize-Preferences/HiddenFiles.md | 2 +- .../Customize-Preferences/HideSettingsHome.md | 2 +- .../tweaks/Customize-Preferences/LoginBlur.md | 29 +++++++++++++++++++ .../MouseAcceleration.md | 2 +- .../MultiplaneOverlay.md | 2 +- .../Customize-Preferences/NewOutlook.md | 2 +- .../tweaks/Customize-Preferences/S3Sleep.md | 2 +- .../tweaks/Customize-Preferences/ShowExt.md | 2 +- .../StartMenuRecommendations.md | 2 +- .../Customize-Preferences/StickyKeys.md | 2 +- .../tweaks/Customize-Preferences/TaskView.md | 2 +- .../Customize-Preferences/TaskbarAlignment.md | 2 +- .../Customize-Preferences/TaskbarSearch.md | 2 +- .../DisableExplorerAutoDiscovery.md | 2 +- .../z--Advanced-Tweaks---CAUTION/changedns.md | 2 +- 17 files changed, 45 insertions(+), 16 deletions(-) create mode 100644 docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md diff --git a/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md b/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md index d037ef30..4f84ea8b 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md +++ b/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md @@ -3,7 +3,7 @@ title: "Detailed BSoD" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2482} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2500} "WPFToggleDetailedBSoD": { "Content": "Detailed BSoD", "Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md b/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md index bcd7b2c8..b2b5d2a6 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md +++ b/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md @@ -3,7 +3,7 @@ title: "Cross-Device Resume" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2612} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2630} "WPFToggleDisableCrossDeviceResume": { "Content": "Cross-Device Resume", "Description": "This tweak controls the Resume function in Windows 11 24H2 and later, which allows you to resume an activity from a mobile device and vice-versa.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md b/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md index f50bf32d..db74f4ed 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md +++ b/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md @@ -3,7 +3,7 @@ title: "Show Hidden Files" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2362} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2380} "WPFToggleHiddenFiles": { "Content": "Show Hidden Files", "Description": "If enabled, Hidden Files will be shown.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md b/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md index 82cdb8a2..981d8292 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md +++ b/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md @@ -3,7 +3,7 @@ title: "Remove Settings Home Page" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2232} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2250} "WPFToggleHideSettingsHome": { "Content": "Remove Settings Home Page", "Description": "Removes the Home Page in the Windows Settings app.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md b/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md new file mode 100644 index 00000000..98ef5d4d --- /dev/null +++ b/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md @@ -0,0 +1,29 @@ +--- +title: "Acrylic Blur on Login Screen" +description: "" +--- + +```json {filename="config/tweaks.json",linenos=inline,linenostart=2188} + "WPFToggleLoginBlur": { + "Content": "Acrylic Blur on Login Screen", + "Description": "If disabled, the acrylic blur effect will be removed on the Windows 10/11 login screen background.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\System", + "Name": "DisableAcrylicBackgroundOnLogon", + "Value": "0", + "Type": "DWord", + "OriginalValue": "1", + "DefaultState": "true" + } + ], +``` + +## 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](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry). diff --git a/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md b/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md index 0d2609eb..f2ec6f87 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md +++ b/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md @@ -3,7 +3,7 @@ title: "Mouse Acceleration" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2250} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2268} "WPFToggleMouseAcceleration": { "Content": "Mouse Acceleration", "Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md b/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md index 5b0f614d..8c0285f5 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md +++ b/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md @@ -3,7 +3,7 @@ title: "Disable Multiplane Overlay" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2344} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2362} "WPFToggleMultiplaneOverlay": { "Content": "Disable Multiplane Overlay", "Description": "Disable the Multiplane Overlay which can sometimes cause issues with Graphics Cards.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md b/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md index 24292514..b3ce4d5a 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md +++ b/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md @@ -3,7 +3,7 @@ title: "New Outlook" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2302} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2320} "WPFToggleNewOutlook": { "Content": "New Outlook", "Description": "If disabled, it removes the new Outlook toggle, disables the new Outlook migration, and ensures the classic Outlook application is used.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md b/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md index 51222d1e..acb4327c 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md +++ b/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md @@ -3,7 +3,7 @@ title: "S3 Sleep" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2508} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2526} "WPFToggleS3Sleep": { "Content": "S3 Sleep", "Description": "Toggles between Modern Standby and S3 Sleep.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md b/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md index d1604ac9..38e63574 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md +++ b/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md @@ -3,7 +3,7 @@ title: "Show File Extensions" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2390} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2408} "WPFToggleShowExt": { "Content": "Show File Extensions", "Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md b/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md index d4da528b..0ec0b832 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md @@ -3,7 +3,7 @@ title: "Recommendations in Start Menu" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2188} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2206} "WPFToggleStartMenuRecommendations": { "Content": "Recommendations in Start Menu", "Description": "If disabled, then you will not see recommendations in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md b/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md index 18691d57..9621f87a 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md @@ -3,7 +3,7 @@ title: "Sticky Keys" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2284} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2302} "WPFToggleStickyKeys": { "Content": "Sticky Keys", "Description": "If enabled, Sticky Keys is activated. Sticky keys is an accessibility feature of some graphical user interfaces which assists users who have physical disabilities or help users reduce repetitive strain injury.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskView.md b/docs/content/dev/tweaks/Customize-Preferences/TaskView.md index dfc6065c..648af551 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskView.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskView.md @@ -3,7 +3,7 @@ title: "Task View Button in Taskbar" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2436} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2454} "WPFToggleTaskView": { "Content": "Task View Button in Taskbar", "Description": "If enabled, Task View Button in Taskbar will be shown.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md b/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md index 3a774463..ee8ae402 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md @@ -3,7 +3,7 @@ title: "Center Taskbar Items" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2454} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2472} "WPFToggleTaskbarAlignment": { "Content": "Center Taskbar Items", "Description": "[Windows 11] If enabled, the Taskbar Items will be shown on the Center, otherwise the Taskbar Items will be shown on the Left.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md b/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md index 5bcbb9ba..912d8d5b 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md @@ -3,7 +3,7 @@ title: "Search Button in Taskbar" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2418} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2436} "WPFToggleTaskbarSearch": { "Content": "Search Button in Taskbar", "Description": "If enabled, Search Button will be on the Taskbar.", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md b/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md index e7c9b697..7d934112 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md @@ -3,7 +3,7 @@ title: "Disable Explorer Automatic Folder Discovery" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2557} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2575} "WPFTweaksDisableExplorerAutoDiscovery": { "Content": "Disable Explorer Automatic Folder Discovery", "Description": "Windows Explorer automatically tries to guess the type of the folder based on its contents, slowing down the browsing experience. WARNING! Will disable File Explorer grouping.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md index a67393c2..54ba01c0 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md @@ -3,7 +3,7 @@ title: "DNS" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2533} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2551} "WPFchangedns": { "Content": "DNS", "category": "z__Advanced Tweaks - CAUTION", From 5dc8547dad950b6ed0617d2254d8a1e7ba944234 Mon Sep 17 00:00:00 2001 From: Vaso <92270244+SillyVaso@users.noreply.github.com> Date: Fri, 17 Apr 2026 16:58:47 +0300 Subject: [PATCH 14/22] Added YASB and Modrinth (#4353) --- config/applications.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/config/applications.json b/config/applications.json index bc3e7bab..150d1f8a 100644 --- a/config/applications.json +++ b/config/applications.json @@ -1592,6 +1592,15 @@ "winget": "XP9CXNGPPJ97XX", "foss": false }, + "modrinth": { + "category": "Games", + "choco": "na", + "content": "Modrinth App", + "description": "Modrinth App is a desktop application for managing Minecraft mods and modpacks.", + "link": "https://modrinth.com/app", + "winget": "Modrinth.ModrinthApp", + "foss": true + }, "ModernFlyouts": { "category": "Multimedia Tools", "choco": "modernflyouts", @@ -3275,6 +3284,15 @@ "winget": "xpipe-io.xpipe", "foss": true }, + "yasb": { + "category": "Utilities", + "choco": "na", + "content": "YASB", + "description": "YASB (Yet Another Status Bar) is a highly configurable status bar for Windows, written in Python, with support for many widgets, easy theming, and deep customization.", + "link": "https://yasb.dev/", + "winget": "AmN.yasb", + "foss": true + }, "yarn": { "category": "Development", "choco": "yarn", From 5902b0bd643370d70b778c6e26ac643b85790ea0 Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Fri, 17 Apr 2026 17:00:39 +0300 Subject: [PATCH 15/22] Move `SvcHostSplitThresholdInKB` tweak into `WPFTweaksServices` tweak (#4364) --- config/tweaks.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/config/tweaks.json b/config/tweaks.json index eab66cd4..6cdc0661 100644 --- a/config/tweaks.json +++ b/config/tweaks.json @@ -1134,6 +1134,12 @@ "OriginalType": "Manual" } ], + "InvokeScript": [ + " + $Memory = (Get-CimInstance Win32_PhysicalMemory | Measure-Object Capacity -Sum).Sum / 1KB + Set-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\" -Name SvcHostSplitThresholdInKB -Value $Memory + " + ], "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/services" }, "WPFTweaksBraveDebloat": { @@ -1426,9 +1432,6 @@ # Disable (Windows Error Reporting Manager) Service Set-Service -Name wermgr -StartupType Disabled - $Memory = (Get-CimInstance Win32_PhysicalMemory | Measure-Object Capacity -Sum).Sum / 1KB - Set-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\" -Name SvcHostSplitThresholdInKB -Value $Memory - Remove-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Siuf\\Rules\" -Name PeriodInNanoSeconds " ], From c5fc9490a89a5d11ee6063da2f8263402cdf6126 Mon Sep 17 00:00:00 2001 From: "Sean (ANGRYxScotsman)" <36518683+seanh1995@users.noreply.github.com> Date: Fri, 17 Apr 2026 15:01:04 +0100 Subject: [PATCH 16/22] fixed a lie (#4368) --- docs/content/userguide/win11Creator/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/userguide/win11Creator/_index.md b/docs/content/userguide/win11Creator/_index.md index 340fbd74..5f704825 100644 --- a/docs/content/userguide/win11Creator/_index.md +++ b/docs/content/userguide/win11Creator/_index.md @@ -80,7 +80,7 @@ Once the modification is complete, choose how to save your image: > [!NOTE] > `oscdimg.exe` (part of the Windows ADK) is required. If it's not found, Winutil will attempt to install it automatically via winget. If that fails, install it manually: `winget install -e --id Microsoft.OSCDIMG` - **Typical output size:** 2.5–3.5 GB (down from 5–6 GB original) + {{< /tab >}} {{< tab name="Write to USB" >}} From 26959b0e632b60e0b4d06d6126ec7bf1f7269f9f Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Fri, 17 Apr 2026 09:01:16 -0500 Subject: [PATCH 17/22] chore: Update generated dev docs (#4381) --- docs/content/dev/tweaks/Customize-Preferences/BingSearch.md | 2 +- docs/content/dev/tweaks/Customize-Preferences/DarkMode.md | 2 +- .../dev/tweaks/Customize-Preferences/DetailedBSoD.md | 2 +- .../Customize-Preferences/DisableCrossDeviceResume.md | 2 +- .../content/dev/tweaks/Customize-Preferences/HiddenFiles.md | 2 +- .../dev/tweaks/Customize-Preferences/HideSettingsHome.md | 2 +- docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md | 2 +- .../dev/tweaks/Customize-Preferences/MouseAcceleration.md | 2 +- .../dev/tweaks/Customize-Preferences/MultiplaneOverlay.md | 2 +- docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md | 2 +- docs/content/dev/tweaks/Customize-Preferences/NumLock.md | 2 +- docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md | 2 +- docs/content/dev/tweaks/Customize-Preferences/ShowExt.md | 2 +- docs/content/dev/tweaks/Customize-Preferences/StandbyFix.md | 2 +- .../Customize-Preferences/StartMenuRecommendations.md | 2 +- docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md | 2 +- docs/content/dev/tweaks/Customize-Preferences/TaskView.md | 2 +- .../dev/tweaks/Customize-Preferences/TaskbarAlignment.md | 2 +- .../dev/tweaks/Customize-Preferences/TaskbarSearch.md | 2 +- .../dev/tweaks/Customize-Preferences/VerboseLogon.md | 2 +- .../content/dev/tweaks/Essential-Tweaks/ConsumerFeatures.md | 2 +- docs/content/dev/tweaks/Essential-Tweaks/DeleteTempFiles.md | 2 +- .../tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md | 2 +- docs/content/dev/tweaks/Essential-Tweaks/DiskCleanup.md | 2 +- .../content/dev/tweaks/Essential-Tweaks/EndTaskOnTaskbar.md | 2 +- docs/content/dev/tweaks/Essential-Tweaks/Powershell7Tele.md | 2 +- docs/content/dev/tweaks/Essential-Tweaks/RestorePoint.md | 2 +- docs/content/dev/tweaks/Essential-Tweaks/Services.md | 6 ++++++ docs/content/dev/tweaks/Essential-Tweaks/Telemetry.md | 5 +---- docs/content/dev/tweaks/Essential-Tweaks/WPBT.md | 2 +- .../tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/BraveDebloat.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md | 2 +- .../tweaks/z--Advanced-Tweaks---CAUTION/DisableBGapps.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableFSO.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableIPv6.md | 2 +- .../z--Advanced-Tweaks---CAUTION/DisableNotifications.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/Display.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/EdgeDebloat.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/IPv46.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/RazerBlock.md | 2 +- .../tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md | 2 +- .../tweaks/z--Advanced-Tweaks---CAUTION/RemoveGallery.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHome.md | 2 +- .../tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md | 2 +- .../tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/Storage.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/Teredo.md | 2 +- docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/XboxRemoval.md | 2 +- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md | 2 +- 52 files changed, 57 insertions(+), 54 deletions(-) diff --git a/docs/content/dev/tweaks/Customize-Preferences/BingSearch.md b/docs/content/dev/tweaks/Customize-Preferences/BingSearch.md index 18cb7f02..9f922c19 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/BingSearch.md +++ b/docs/content/dev/tweaks/Customize-Preferences/BingSearch.md @@ -3,7 +3,7 @@ title: "Bing Search in Start Menu" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2108} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2111} "WPFToggleBingSearch": { "Content": "Bing Search in Start Menu", "Description": "If enabled, Bing web search results will be included in your Start Menu search.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/DarkMode.md b/docs/content/dev/tweaks/Customize-Preferences/DarkMode.md index 4d7b8078..3014decf 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/DarkMode.md +++ b/docs/content/dev/tweaks/Customize-Preferences/DarkMode.md @@ -3,7 +3,7 @@ title: "Dark Theme for Windows" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2066} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2069} "WPFToggleDarkMode": { "Content": "Dark Theme for Windows", "Description": "Enable/Disable Dark Mode.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md b/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md index 4f84ea8b..dc33eb0e 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md +++ b/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md @@ -3,7 +3,7 @@ title: "Detailed BSoD" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2500} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2503} "WPFToggleDetailedBSoD": { "Content": "Detailed BSoD", "Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md b/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md index b2b5d2a6..07e70cf8 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md +++ b/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md @@ -3,7 +3,7 @@ title: "Cross-Device Resume" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2630} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2633} "WPFToggleDisableCrossDeviceResume": { "Content": "Cross-Device Resume", "Description": "This tweak controls the Resume function in Windows 11 24H2 and later, which allows you to resume an activity from a mobile device and vice-versa.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md b/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md index db74f4ed..c4a63072 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md +++ b/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md @@ -3,7 +3,7 @@ title: "Show Hidden Files" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2380} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2383} "WPFToggleHiddenFiles": { "Content": "Show Hidden Files", "Description": "If enabled, Hidden Files will be shown.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md b/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md index 981d8292..e890582e 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md +++ b/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md @@ -3,7 +3,7 @@ title: "Remove Settings Home Page" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2250} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2253} "WPFToggleHideSettingsHome": { "Content": "Remove Settings Home Page", "Description": "Removes the Home Page in the Windows Settings app.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md b/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md index 98ef5d4d..85688b5b 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md +++ b/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md @@ -3,7 +3,7 @@ title: "Acrylic Blur on Login Screen" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2188} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2191} "WPFToggleLoginBlur": { "Content": "Acrylic Blur on Login Screen", "Description": "If disabled, the acrylic blur effect will be removed on the Windows 10/11 login screen background.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md b/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md index f2ec6f87..fa23435f 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md +++ b/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md @@ -3,7 +3,7 @@ title: "Mouse Acceleration" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2268} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2271} "WPFToggleMouseAcceleration": { "Content": "Mouse Acceleration", "Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md b/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md index 8c0285f5..6e134b1a 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md +++ b/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md @@ -3,7 +3,7 @@ title: "Disable Multiplane Overlay" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2362} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2365} "WPFToggleMultiplaneOverlay": { "Content": "Disable Multiplane Overlay", "Description": "Disable the Multiplane Overlay which can sometimes cause issues with Graphics Cards.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md b/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md index b3ce4d5a..5e3c7e87 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md +++ b/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md @@ -3,7 +3,7 @@ title: "New Outlook" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2320} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2323} "WPFToggleNewOutlook": { "Content": "New Outlook", "Description": "If disabled, it removes the new Outlook toggle, disables the new Outlook migration, and ensures the classic Outlook application is used.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/NumLock.md b/docs/content/dev/tweaks/Customize-Preferences/NumLock.md index d302095b..177b5c5d 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/NumLock.md +++ b/docs/content/dev/tweaks/Customize-Preferences/NumLock.md @@ -3,7 +3,7 @@ title: "Num Lock on Startup" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2144} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2147} "WPFToggleNumLock": { "Content": "Num Lock on Startup", "Description": "Toggle the Num Lock key state when your computer starts.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md b/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md index acb4327c..e7270d31 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md +++ b/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md @@ -3,7 +3,7 @@ title: "S3 Sleep" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2526} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2529} "WPFToggleS3Sleep": { "Content": "S3 Sleep", "Description": "Toggles between Modern Standby and S3 Sleep.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md b/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md index 38e63574..a49d15b5 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md +++ b/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md @@ -3,7 +3,7 @@ title: "Show File Extensions" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2408} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2411} "WPFToggleShowExt": { "Content": "Show File Extensions", "Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/StandbyFix.md b/docs/content/dev/tweaks/Customize-Preferences/StandbyFix.md index 28195da9..306d7e5f 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StandbyFix.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StandbyFix.md @@ -3,7 +3,7 @@ title: "Modern Standby fix" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2126} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2129} "WPFToggleStandbyFix": { "Content": "Modern Standby fix", "Description": "Disable network connection during S0 Sleep. If network connectivity is turned on during S0 Sleep it could cause overheating on modern laptops.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md b/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md index 0ec0b832..f9d3fc39 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md @@ -3,7 +3,7 @@ title: "Recommendations in Start Menu" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2206} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2209} "WPFToggleStartMenuRecommendations": { "Content": "Recommendations in Start Menu", "Description": "If disabled, then you will not see recommendations in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md b/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md index 9621f87a..0e097cbe 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md @@ -3,7 +3,7 @@ title: "Sticky Keys" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2302} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2305} "WPFToggleStickyKeys": { "Content": "Sticky Keys", "Description": "If enabled, Sticky Keys is activated. Sticky keys is an accessibility feature of some graphical user interfaces which assists users who have physical disabilities or help users reduce repetitive strain injury.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskView.md b/docs/content/dev/tweaks/Customize-Preferences/TaskView.md index 648af551..fe8fda2d 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskView.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskView.md @@ -3,7 +3,7 @@ title: "Task View Button in Taskbar" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2454} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2457} "WPFToggleTaskView": { "Content": "Task View Button in Taskbar", "Description": "If enabled, Task View Button in Taskbar will be shown.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md b/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md index ee8ae402..5a41a687 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md @@ -3,7 +3,7 @@ title: "Center Taskbar Items" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2472} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2475} "WPFToggleTaskbarAlignment": { "Content": "Center Taskbar Items", "Description": "[Windows 11] If enabled, the Taskbar Items will be shown on the Center, otherwise the Taskbar Items will be shown on the Left.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md b/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md index 912d8d5b..07c3f9dd 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md @@ -3,7 +3,7 @@ title: "Search Button in Taskbar" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2436} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2439} "WPFToggleTaskbarSearch": { "Content": "Search Button in Taskbar", "Description": "If enabled, Search Button will be on the Taskbar.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/VerboseLogon.md b/docs/content/dev/tweaks/Customize-Preferences/VerboseLogon.md index 66275097..d208db45 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/VerboseLogon.md +++ b/docs/content/dev/tweaks/Customize-Preferences/VerboseLogon.md @@ -3,7 +3,7 @@ title: "Verbose Messages During Logon" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2170} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2173} "WPFToggleVerboseLogon": { "Content": "Verbose Messages During Logon", "Description": "Show detailed messages during the login process for troubleshooting and diagnostics.", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/ConsumerFeatures.md b/docs/content/dev/tweaks/Essential-Tweaks/ConsumerFeatures.md index 0de41f8d..c2d76d68 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/ConsumerFeatures.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/ConsumerFeatures.md @@ -3,7 +3,7 @@ title: "Disable ConsumerFeatures" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1311} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1317} "WPFTweaksConsumerFeatures": { "Content": "Disable ConsumerFeatures", "Description": "Windows will not automatically install any games, third-party apps, or application links from the Windows Store for the signed-in user. Some default Apps will be inaccessible (eg. Phone Link).", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/DeleteTempFiles.md b/docs/content/dev/tweaks/Essential-Tweaks/DeleteTempFiles.md index e26e27dc..85224e39 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/DeleteTempFiles.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/DeleteTempFiles.md @@ -3,7 +3,7 @@ title: "Delete Temporary Files" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1961} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1964} "WPFTweaksDeleteTempFiles": { "Content": "Delete Temporary Files", "Description": "Erases TEMP Folders.", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md b/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md index 7d934112..0f761779 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md @@ -3,7 +3,7 @@ title: "Disable Explorer Automatic Folder Discovery" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2575} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2578} "WPFTweaksDisableExplorerAutoDiscovery": { "Content": "Disable Explorer Automatic Folder Discovery", "Description": "Windows Explorer automatically tries to guess the type of the folder based on its contents, slowing down the browsing experience. WARNING! Will disable File Explorer grouping.", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/DiskCleanup.md b/docs/content/dev/tweaks/Essential-Tweaks/DiskCleanup.md index 49372259..4ac52837 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/DiskCleanup.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/DiskCleanup.md @@ -3,7 +3,7 @@ title: "Run Disk Cleanup" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1948} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1951} "WPFTweaksDiskCleanup": { "Content": "Run Disk Cleanup", "Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/EndTaskOnTaskbar.md b/docs/content/dev/tweaks/Essential-Tweaks/EndTaskOnTaskbar.md index f375df81..7bcfa840 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/EndTaskOnTaskbar.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/EndTaskOnTaskbar.md @@ -3,7 +3,7 @@ title: "Enable End Task With Right Click" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1744} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1747} "WPFTweaksEndTaskOnTaskbar": { "Content": "Enable End Task With Right Click", "Description": "Enables option to end task when right clicking a program in the taskbar.", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Powershell7Tele.md b/docs/content/dev/tweaks/Essential-Tweaks/Powershell7Tele.md index 0705b6c0..5907a1e4 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/Powershell7Tele.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/Powershell7Tele.md @@ -3,7 +3,7 @@ title: "Disable PowerShell 7 Telemetry" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1760} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1763} "WPFTweaksPowershell7Tele": { "Content": "Disable PowerShell 7 Telemetry", "Description": "Creates an Environment Variable called 'POWERSHELL_TELEMETRY_OPTOUT' with a value of '1' which will tell PowerShell 7 to not send Telemetry Data.", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/RestorePoint.md b/docs/content/dev/tweaks/Essential-Tweaks/RestorePoint.md index 76c1cf01..27cf1908 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/RestorePoint.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/RestorePoint.md @@ -3,7 +3,7 @@ title: "Create Restore Point" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1717} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1720} "WPFTweaksRestorePoint": { "Content": "Create Restore Point", "Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications.", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Services.md b/docs/content/dev/tweaks/Essential-Tweaks/Services.md index 6e7ed614..151b8978 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/Services.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/Services.md @@ -966,4 +966,10 @@ description: "" "OriginalType": "Manual" } ], + "InvokeScript": [ + " + $Memory = (Get-CimInstance Win32_PhysicalMemory | Measure-Object Capacity -Sum).Sum / 1KB + Set-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\" -Name SvcHostSplitThresholdInKB -Value $Memory + " + ], ``` diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Telemetry.md b/docs/content/dev/tweaks/Essential-Tweaks/Telemetry.md index af409b9f..ef93d547 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/Telemetry.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/Telemetry.md @@ -3,7 +3,7 @@ title: "Disable Telemetry" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1327} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1333} "WPFTweaksTelemetry": { "Content": "Disable Telemetry", "Description": "Disables Microsoft Telemetry.", @@ -106,9 +106,6 @@ description: "" # Disable (Windows Error Reporting Manager) Service Set-Service -Name wermgr -StartupType Disabled - $Memory = (Get-CimInstance Win32_PhysicalMemory | Measure-Object Capacity -Sum).Sum / 1KB - Set-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\" -Name SvcHostSplitThresholdInKB -Value $Memory - Remove-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Siuf\\Rules\" -Name PeriodInNanoSeconds " ], diff --git a/docs/content/dev/tweaks/Essential-Tweaks/WPBT.md b/docs/content/dev/tweaks/Essential-Tweaks/WPBT.md index 15fab936..de79a76e 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/WPBT.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/WPBT.md @@ -3,7 +3,7 @@ title: "Disable Windows Platform Binary Table (WPBT)" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1816} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1819} "WPFTweaksWPBT": { "Content": "Disable Windows Platform Binary Table (WPBT)", "Description": "If enabled, WPBT allows your computer vendor to execute programs at boot time, such as anti-theft software, software drivers, as well as force install software without user consent. Poses potential security risk.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md index 5e69e593..e4a0b327 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md @@ -3,7 +3,7 @@ title: "Adobe Network Block" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1896} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1899} "WPFTweaksBlockAdobeNet": { "Content": "Adobe Network Block", "Description": "Reduces user interruptions by selectively blocking connections to Adobe's activation and telemetry servers. Credit: Ruddernation-Designs", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BraveDebloat.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BraveDebloat.md index e6023208..46c675b8 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BraveDebloat.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BraveDebloat.md @@ -3,7 +3,7 @@ title: "Brave Debloat" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1139} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1145} "WPFTweaksBraveDebloat": { "Content": "Brave Debloat", "Description": "Disables various annoyances like Brave Rewards, Leo AI, Crypto Wallet and VPN.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md index 0a33004e..68eab245 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md @@ -3,7 +3,7 @@ title: "Remove Unwanted Pre-Installed Apps" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1676} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1679} "WPFTweaksDeBloat": { "Content": "Remove Unwanted Pre-Installed Apps", "Description": "This will remove a bunch of Windows pre-installed applications which most people dont want on there system.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableBGapps.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableBGapps.md index 5784657d..65ff6558 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableBGapps.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableBGapps.md @@ -3,7 +3,7 @@ title: "Disable Background Apps" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2034} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2037} "WPFTweaksDisableBGapps": { "Content": "Disable Background Apps", "Description": "Disables all Microsoft Store apps from running in the background, which has to be done individually since Windows 11.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableFSO.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableFSO.md index 3f027bec..733150f6 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableFSO.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableFSO.md @@ -3,7 +3,7 @@ title: "Disable Fullscreen Optimizations" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2050} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2053} "WPFTweaksDisableFSO": { "Content": "Disable Fullscreen Optimizations", "Description": "Disables FSO in all applications. NOTE: This will disable Color Management in Exclusive Fullscreen.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableIPv6.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableIPv6.md index e08b4f6b..ec791624 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableIPv6.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableIPv6.md @@ -3,7 +3,7 @@ title: "Disable IPv6" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2012} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2015} "WPFTweaksDisableIPv6": { "Content": "Disable IPv6", "Description": "Disables IPv6.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableNotifications.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableNotifications.md index a0831bd0..1f36f29c 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableNotifications.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableNotifications.md @@ -3,7 +3,7 @@ title: "Disable Notification Tray/Calendar" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1873} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1876} "WPFTweaksDisableNotifications": { "Content": "Disable Notification Tray/Calendar", "Description": "Disables all Notifications INCLUDING Calendar.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Display.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Display.md index 48cd8a56..61cf4336 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Display.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Display.md @@ -3,7 +3,7 @@ title: "Set Display for Performance" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1554} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1557} "WPFTweaksDisplay": { "Content": "Set Display for Performance", "Description": "Sets the system preferences to performance. You can do this manually with sysdm.cpl as well.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/EdgeDebloat.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/EdgeDebloat.md index bc2b374d..547f3d2d 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/EdgeDebloat.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/EdgeDebloat.md @@ -3,7 +3,7 @@ title: "Edge Debloat" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1183} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1189} "WPFTweaksEdgeDebloat": { "Content": "Edge Debloat", "Description": "Disables various telemetry options, popups, and other annoyances in Edge.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/IPv46.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/IPv46.md index 012bb00e..18c7b8e3 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/IPv46.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/IPv46.md @@ -3,7 +3,7 @@ title: "Prefer IPv4 over IPv6" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1974} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1977} "WPFTweaksIPv46": { "Content": "Prefer IPv4 over IPv6", "Description": "Setting the IPv4 preference can have latency and security benefits on private networks where IPv6 is not configured.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RazerBlock.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RazerBlock.md index 2cd76e37..68dc2860 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RazerBlock.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RazerBlock.md @@ -3,7 +3,7 @@ title: "Block Razer Software Installs" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1832} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1835} "WPFTweaksRazerBlock": { "Content": "Block Razer Software Installs", "Description": "Blocks ALL Razer Software installations. The hardware works fine without any software.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md index eb9ef2b6..9bb151a9 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md @@ -3,7 +3,7 @@ title: "Remove Microsoft Copilot" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1789} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1792} "WPFTweaksRemoveCopilot": { "Content": "Remove Microsoft Copilot", "Description": "Removes Copilot AppXPackages and related ai packages", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md index 74ca23d5..b7140a60 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md @@ -3,7 +3,7 @@ title: "Remove Microsoft Edge" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1449} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1452} "WPFTweaksRemoveEdge": { "Content": "Remove Microsoft Edge", "Description": "Unblocks Microsoft Edge uninstaller restrictions then uses that uninstaller to remove Microsoft Edge.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveGallery.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveGallery.md index 4e5b59fe..12c883bb 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveGallery.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveGallery.md @@ -3,7 +3,7 @@ title: "Remove Gallery from Explorer" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1537} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1540} "WPFTweaksRemoveGallery": { "Content": "Remove Gallery from Explorer", "Description": "Removes the Gallery from Explorer and sets This PC as default.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHome.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHome.md index 2be07ba9..dd923744 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHome.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHome.md @@ -3,7 +3,7 @@ title: "Remove Home from Explorer" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1518} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1521} "WPFTweaksRemoveHome": { "Content": "Remove Home from Explorer", "Description": "Removes the Home from Explorer and sets This PC as default.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md index 00619304..0be43ca4 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md @@ -3,7 +3,7 @@ title: "Remove OneDrive" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1481} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1484} "WPFTweaksRemoveOneDrive": { "Content": "Remove OneDrive", "Description": "Denies permission to remove OneDrive user files, then uses its own uninstaller to remove it and restores the original permission afterward.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md index 5b13d23f..7683210c 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md @@ -3,7 +3,7 @@ title: "Set Classic Right-Click Menu" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1926} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1929} "WPFTweaksRightClickMenu": { "Content": "Set Classic Right-Click Menu", "Description": "Restores the classic context menu when right-clicking in File Explorer, replacing the simplified Windows 11 version.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Storage.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Storage.md index 813ac6c3..3029403c 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Storage.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Storage.md @@ -3,7 +3,7 @@ title: "Disable Storage Sense" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1773} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1776} "WPFTweaksStorage": { "Content": "Disable Storage Sense", "Description": "Storage Sense deletes temp files automatically.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Teredo.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Teredo.md index 350e92e8..f2ad70b6 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Teredo.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Teredo.md @@ -3,7 +3,7 @@ title: "Disable Teredo" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1990} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1993} "WPFTweaksTeredo": { "Content": "Disable Teredo", "Description": "Teredo network tunneling is an IPv6 feature that can cause additional latency, but may cause problems with some games.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC.md index 222c5832..77cd4e44 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC.md @@ -3,7 +3,7 @@ title: "Set Time to UTC (Dual Boot)" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1465} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1468} "WPFTweaksUTC": { "Content": "Set Time to UTC (Dual Boot)", "Description": "Essential for computers that are dual booting. Fixes the time sync with Linux systems.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/XboxRemoval.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/XboxRemoval.md index 60ac37bd..03a9ca17 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/XboxRemoval.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/XboxRemoval.md @@ -3,7 +3,7 @@ title: "Remove Xbox & Gaming Components" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=1653} +```json {filename="config/tweaks.json",linenos=inline,linenostart=1656} "WPFTweaksXboxRemoval": { "Content": "Remove Xbox & Gaming Components", "Description": "Removes Xbox services, the Xbox app, Game Bar, and related authentication components.", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md index 54ba01c0..1331b10f 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md @@ -3,7 +3,7 @@ title: "DNS" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2551} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2554} "WPFchangedns": { "Content": "DNS", "category": "z__Advanced Tweaks - CAUTION", From 747b6f8ca185bdba1e7a68576cd50f39cfe09516 Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Fri, 17 Apr 2026 17:02:27 +0300 Subject: [PATCH 18/22] Added restriction policy error (#4370) * Added restriction policy error * Update KnownIssues.md * Update KnownIssues.md * Update KnownIssues.md * Update KnownIssues.md --- docs/content/KnownIssues.md | 44 +++---------------------------------- scripts/start.ps1 | 4 ++++ 2 files changed, 7 insertions(+), 41 deletions(-) diff --git a/docs/content/KnownIssues.md b/docs/content/KnownIssues.md index 8f0a029a..3e0a0c0d 100644 --- a/docs/content/KnownIssues.md +++ b/docs/content/KnownIssues.md @@ -22,46 +22,8 @@ If you are still having issues, try using a **VPN**, or changing your **DNS prov ### Script Won't Run -If your PowerShell session is running in **Constrained Language Mode**, some scripts and commands may fail to execute. To check the current language mode, run: -```powershell -$ExecutionContext.SessionState.LanguageMode -``` -If it returns `ConstrainedLanguage`, you may need to switch to `FullLanguage` mode or run the script in a session with administrative privileges. Be aware that some security policies may enforce Constrained Language Mode, especially in corporate or managed environments. +If you run WinUtil and get the error: -**If the download fails**: +`"WinUtil is unable to run on your system, powershell execution is restricted by security policies,"` -1. Try the direct GitHub link: - -```powershell -irm https://github.com/ChrisTitusTech/Winutil/releases/latest/download/Winutil.ps1 | iex -``` - -2. Force TLS 1.2: - -```powershell -[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 -irm "https://christitus.com/win" | iex -``` - -> [!NOTE] -> On Windows 11, you usually do not need the TLS 1.2 command. Use it only if you encounter download or security protocol errors. - -### Execution Policy Error - -If you see an execution policy error when running the downloaded script, you can allow the current session to run unsigned scripts with this command: - -```powershell -Set-ExecutionPolicy Unrestricted -Scope Process -Force -irm "https://christitus.com/win" | iex -``` - -This only changes the policy for the current PowerShell process and is safe for one-off runs. - -### Interface Doesn't Appear - -If Winutil downloads, but the GUI does not open or appear, try these steps: - -1. Check if your antivirus or Windows Defender is blocking the script — add an exclusion if necessary. -2. Ensure you launched PowerShell / Terminal as **Administrator**. -3. Close and reopen PowerShell, then run the launch command again. -4. If the script still doesn't show, try running the script in a visible PowerShell window (avoid background/silent shells) to observe output and errors. +this means that your PowerShell session is in **Constrained Language Mode**, which prevents WinUtil from running. diff --git a/scripts/start.ps1 b/scripts/start.ps1 index 44766a22..2e0221a9 100644 --- a/scripts/start.ps1 +++ b/scripts/start.ps1 @@ -33,6 +33,10 @@ if ($Offline) { $PARAM_OFFLINE = $true } +if ($ExecutionContext.SessionState.LanguageMode -ne 'FullLanguage') { + Write-Host "WinUtil is unable to run on your system, powershell execution is restricted by security policies" -ForegroundColor Red + return +} if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) { Write-Output "Winutil needs to be run as Administrator. Attempting to relaunch." From a8efcc9c96785c35d122c45abc472e478ae6c3d6 Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Fri, 17 Apr 2026 17:04:03 +0300 Subject: [PATCH 19/22] Rename (and reorder) everything (#4372) * Standardize tweak names to 'Target - Action' format * Rename Microsoft Store Apps tweak to Unwanted Pre-Installed Apps - Remove * Update tweaks.json * Rename and reorder customize preference tweaks * Standardize config feature labels * Update feature.json --- config/feature.json | 38 +-- config/tweaks.json | 628 ++++++++++++++++++++++---------------------- 2 files changed, 333 insertions(+), 333 deletions(-) diff --git a/config/feature.json b/config/feature.json index 8d5d6f58..e73860ff 100644 --- a/config/feature.json +++ b/config/feature.json @@ -1,6 +1,6 @@ { "WPFFeaturesdotnet": { - "Content": "All .Net Framework (2,3,4)", + "Content": ".NET Framework (Versions 2, 3, 4) - Enable", "Description": ".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications.", "category": "Features", "panel": "1", @@ -12,7 +12,7 @@ "link": "https://winutil.christitus.com/dev/features/features/dotnet" }, "WPFFixesNTPPool": { - "Content": "Configure NTP Server", + "Content": "NTP Server - Enable", "Description": "Replaces the default Windows NTP server (time.windows.com) with pool.ntp.org for improved time synchronization accuracy and reliability.", "category": "Fixes", "panel": "1", @@ -22,7 +22,7 @@ "link": "https://winutil.christitus.com/dev/features/fixes/ntppool" }, "WPFFeatureshyperv": { - "Content": "HyperV Virtualization", + "Content": "Hyper-V - Enable", "Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.", "category": "Features", "panel": "1", @@ -35,7 +35,7 @@ "link": "https://winutil.christitus.com/dev/features/features/hyperv" }, "WPFFeatureslegacymedia": { - "Content": "Legacy Media (WMP, DirectPlay)", + "Content": "Legacy Media Components (WMP, DirectPlay) - Enable", "Description": "Enables legacy programs from previous versions of Windows.", "category": "Features", "panel": "1", @@ -49,7 +49,7 @@ "link": "https://winutil.christitus.com/dev/features/features/legacymedia" }, "WPFFeaturewsl": { - "Content": "Windows Subsystem for Linux", + "Content": "Windows Subsystem for Linux (WSL) - Enable", "Description": "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting.", "category": "Features", "panel": "1", @@ -61,7 +61,7 @@ "link": "https://winutil.christitus.com/dev/features/features/wsl" }, "WPFFeaturenfs": { - "Content": "NFS - Network File System", + "Content": "Network File System (NFS) - Enable", "Description": "Network File System (NFS) is a mechanism for storing files on a network.", "category": "Features", "panel": "1", @@ -80,7 +80,7 @@ "link": "https://winutil.christitus.com/dev/features/features/nfs" }, "WPFFeatureRegBackup": { - "Content": "Enable Daily Registry Backup Task 12.30am", + "Content": "Registry Backup (Daily Task 12:30am) - Enable", "Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.", "category": "Features", "panel": "1", @@ -97,7 +97,7 @@ "link": "https://winutil.christitus.com/dev/features/features/regbackup" }, "WPFFeatureEnableLegacyRecovery": { - "Content": "Enable Legacy F8 Boot Recovery", + "Content": "Legacy F8 Boot Recovery - Enable", "Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.", "category": "Features", "panel": "1", @@ -108,7 +108,7 @@ "link": "https://winutil.christitus.com/dev/features/features/enablelegacyrecovery" }, "WPFFeatureDisableLegacyRecovery": { - "Content": "Disable Legacy F8 Boot Recovery", + "Content": "Legacy F8 Boot Recovery - Disable", "Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.", "category": "Features", "panel": "1", @@ -119,7 +119,7 @@ "link": "https://winutil.christitus.com/dev/features/features/disablelegacyrecovery" }, "WPFFeaturesSandbox": { - "Content": "Windows Sandbox", + "Content": "Windows Sandbox - Enable", "Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.", "category": "Features", "panel": "1", @@ -129,7 +129,7 @@ "link": "https://winutil.christitus.com/dev/features/features/sandbox" }, "WPFFeatureInstall": { - "Content": "Install Features", + "Content": "Run Features", "category": "Features", "panel": "1", "Type": "Button", @@ -138,7 +138,7 @@ "link": "https://winutil.christitus.com/dev/features/features/install" }, "WPFPanelAutologin": { - "Content": "Set Up Autologin", + "Content": "Autologin - Enable", "category": "Fixes", "panel": "1", "Type": "Button", @@ -147,7 +147,7 @@ "link": "https://winutil.christitus.com/dev/features/fixes/autologin" }, "WPFFixesUpdate": { - "Content": "Reset Windows Update", + "Content": "Windows Update - Reset", "category": "Fixes", "panel": "1", "Type": "Button", @@ -156,7 +156,7 @@ "link": "https://winutil.christitus.com/dev/features/fixes/update" }, "WPFFixesNetwork": { - "Content": "Reset Network", + "Content": "Network - Reset", "category": "Fixes", "panel": "1", "Type": "Button", @@ -165,7 +165,7 @@ "link": "https://winutil.christitus.com/dev/features/fixes/network" }, "WPFPanelDISM": { - "Content": "System Corruption Scan", + "Content": "System Corruption Scan - Run", "category": "Fixes", "panel": "1", "Type": "Button", @@ -174,7 +174,7 @@ "link": "https://winutil.christitus.com/dev/features/fixes/dism" }, "WPFFixesWinget": { - "Content": "WinGet Reinstall", + "Content": "WinGet - Reinstall", "category": "Fixes", "panel": "1", "Type": "Button", @@ -293,7 +293,7 @@ "link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/timedate" }, "WPFWinUtilInstallPSProfile": { - "Content": "Install CTT PowerShell Profile", + "Content": "CTT PowerShell Profile - Install", "category": "Powershell Profile Powershell 7+ Only", "panel": "2", "Type": "Button", @@ -302,7 +302,7 @@ "link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/installpsprofile" }, "WPFWinUtilUninstallPSProfile": { - "Content": "Uninstall CTT PowerShell Profile", + "Content": "CTT PowerShell Profile - Remove", "category": "Powershell Profile Powershell 7+ Only", "panel": "2", "Type": "Button", @@ -311,7 +311,7 @@ "link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/uninstallpsprofile" }, "WPFWinUtilSSHServer": { - "Content": "Enable OpenSSH Server", + "Content": "OpenSSH Server - Enable", "category": "Remote Access", "panel": "2", "Type": "Button", diff --git a/config/tweaks.json b/config/tweaks.json index 6cdc0661..ef983480 100644 --- a/config/tweaks.json +++ b/config/tweaks.json @@ -1,6 +1,6 @@ { "WPFTweaksActivity": { - "Content": "Disable Activity History", + "Content": "Activity History - Disable", "Description": "Erases recent docs, clipboard, and run history.", "category": "Essential Tweaks", "panel": "1", @@ -30,7 +30,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/activity" }, "WPFTweaksHiber": { - "Content": "Disable Hibernation", + "Content": "Hibernation - Disable", "Description": "Hibernation is really meant for laptops as it saves what's in memory before turning the PC off. It really should never be used.", "category": "Essential Tweaks", "panel": "1", @@ -59,7 +59,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/hiber" }, "WPFTweaksWidget": { - "Content": "Remove Widgets", + "Content": "Widgets - Remove", "Description": "Removes the annoying widgets in the bottom left of the Taskbar.", "category": "Essential Tweaks", "panel": "1", @@ -88,7 +88,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/widget" }, "WPFTweaksRevertStartMenu": { - "Content": "Revert Start Menu layout", + "Content": "Start Menu Previous Layout - Enable", "Description": "Bring back the old Start Menu layout from before the gradual rollout of the new one in 25H2.", "category": "Essential Tweaks", "panel": "1", @@ -123,7 +123,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/revertstartmenu" }, "WPFTweaksDisableStoreSearch": { - "Content": "Disable Microsoft Store search results", + "Content": "Microsoft Store Recommended Search Results - Disable", "Description": "Will not display recommended Microsoft Store apps when searching for apps in the Start menu.", "category": "Essential Tweaks", "panel": "1", @@ -136,7 +136,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/disablestoresearch" }, "WPFTweaksLocation": { - "Content": "Disable Location Tracking", + "Content": "Location Tracking - Disable", "Description": "Disables Location Tracking.", "category": "Essential Tweaks", "panel": "1", @@ -173,7 +173,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/location" }, "WPFTweaksServices": { - "Content": "Set Services to Manual", + "Content": "Services - Set to Manual", "Description": "Turns a bunch of system services to manual that don't need to be running all the time. This is pretty harmless as if the service is needed, it will simply start on demand.", "category": "Essential Tweaks", "panel": "1", @@ -1143,7 +1143,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/services" }, "WPFTweaksBraveDebloat": { - "Content": "Brave Debloat", + "Content": "Brave Browser - Debloat", "Description": "Disables various annoyances like Brave Rewards, Leo AI, Crypto Wallet and VPN.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1187,7 +1187,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/bravedebloat" }, "WPFTweaksEdgeDebloat": { - "Content": "Edge Debloat", + "Content": "Microsoft Edge - Debloat", "Description": "Disables various telemetry options, popups, and other annoyances in Edge.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1315,7 +1315,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/edgedebloat" }, "WPFTweaksConsumerFeatures": { - "Content": "Disable ConsumerFeatures", + "Content": "ConsumerFeatures - Disable", "Description": "Windows will not automatically install any games, third-party apps, or application links from the Windows Store for the signed-in user. Some default Apps will be inaccessible (eg. Phone Link).", "category": "Essential Tweaks", "panel": "1", @@ -1331,7 +1331,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/consumerfeatures" }, "WPFTweaksTelemetry": { - "Content": "Disable Telemetry", + "Content": "Telemetry - Disable", "Description": "Disables Microsoft Telemetry.", "category": "Essential Tweaks", "panel": "1", @@ -1450,7 +1450,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/telemetry" }, "WPFTweaksRemoveEdge": { - "Content": "Remove Microsoft Edge", + "Content": "Microsoft Edge - Remove", "Description": "Unblocks Microsoft Edge uninstaller restrictions then uses that uninstaller to remove Microsoft Edge.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1466,7 +1466,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/removeedge" }, "WPFTweaksUTC": { - "Content": "Set Time to UTC (Dual Boot)", + "Content": "Date & Time - Set Time to UTC", "Description": "Essential for computers that are dual booting. Fixes the time sync with Linux systems.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1482,7 +1482,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/utc" }, "WPFTweaksRemoveOneDrive": { - "Content": "Remove OneDrive", + "Content": "Microsoft OneDrive - Remove", "Description": "Denies permission to remove OneDrive user files, then uses its own uninstaller to remove it and restores the original permission afterward.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1519,7 +1519,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/removeonedrive" }, "WPFTweaksRemoveHome": { - "Content": "Remove Home from Explorer", + "Content": "File Explorer Home - Disable", "Description": "Removes the Home from Explorer and sets This PC as default.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1538,7 +1538,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/removehome" }, "WPFTweaksRemoveGallery": { - "Content": "Remove Gallery from Explorer", + "Content": "File Explorer Gallery - Disable", "Description": "Removes the Gallery from Explorer and sets This PC as default.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1555,7 +1555,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/removegallery" }, "WPFTweaksDisplay": { - "Content": "Set Display for Performance", + "Content": "Visual Effects - Set to Best Performance", "Description": "Sets the system preferences to performance. You can do this manually with sysdm.cpl as well.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1654,7 +1654,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/display" }, "WPFTweaksXboxRemoval": { - "Content": "Remove Xbox & Gaming Components", + "Content": "Xbox & Gaming Components - Remove", "Description": "Removes Xbox services, the Xbox app, Game Bar, and related authentication components.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1677,7 +1677,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/xboxremoval" }, "WPFTweaksDeBloat": { - "Content": "Remove Unwanted Pre-Installed Apps", + "Content": "Unwanted Pre-Installed Apps - Remove", "Description": "This will remove a bunch of Windows pre-installed applications which most people dont want on there system.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1718,7 +1718,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/debloat" }, "WPFTweaksRestorePoint": { - "Content": "Create Restore Point", + "Content": "Restore Point - Create", "Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications.", "category": "Essential Tweaks", "panel": "1", @@ -1745,7 +1745,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/restorepoint" }, "WPFTweaksEndTaskOnTaskbar": { - "Content": "Enable End Task With Right Click", + "Content": "End Task With Right Click - Enable", "Description": "Enables option to end task when right clicking a program in the taskbar.", "category": "Essential Tweaks", "panel": "1", @@ -1761,7 +1761,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/endtaskontaskbar" }, "WPFTweaksPowershell7Tele": { - "Content": "Disable PowerShell 7 Telemetry", + "Content": "PowerShell 7 Telemetry - Disable", "Description": "Creates an Environment Variable called 'POWERSHELL_TELEMETRY_OPTOUT' with a value of '1' which will tell PowerShell 7 to not send Telemetry Data.", "category": "Essential Tweaks", "panel": "1", @@ -1774,7 +1774,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/powershell7tele" }, "WPFTweaksStorage": { - "Content": "Disable Storage Sense", + "Content": "Storage Sense - Disable", "Description": "Storage Sense deletes temp files automatically.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1790,7 +1790,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/storage" }, "WPFTweaksRemoveCopilot": { - "Content": "Remove Microsoft Copilot", + "Content": "Microsoft Copilot - Disable", "Description": "Removes Copilot AppXPackages and related ai packages", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1817,7 +1817,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/removecopilot" }, "WPFTweaksWPBT": { - "Content": "Disable Windows Platform Binary Table (WPBT)", + "Content": "Windows Platform Binary Table (WPBT) - Disable", "Description": "If enabled, WPBT allows your computer vendor to execute programs at boot time, such as anti-theft software, software drivers, as well as force install software without user consent. Poses potential security risk.", "category": "Essential Tweaks", "panel": "1", @@ -1833,7 +1833,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/wpbt" }, "WPFTweaksRazerBlock": { - "Content": "Block Razer Software Installs", + "Content": "Razer Software Auto-Install - Disable", "Description": "Blocks ALL Razer Software installations. The hardware works fine without any software.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1874,7 +1874,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/razerblock" }, "WPFTweaksDisableNotifications": { - "Content": "Disable Notification Tray/Calendar", + "Content": "Notification Tray & Calendar - Disable", "Description": "Disables all Notifications INCLUDING Calendar.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1897,7 +1897,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/disablenotifications" }, "WPFTweaksBlockAdobeNet": { - "Content": "Adobe Network Block", + "Content": "Adobe URL Block List - Enable", "Description": "Reduces user interruptions by selectively blocking connections to Adobe's activation and telemetry servers. Credit: Ruddernation-Designs", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1927,7 +1927,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/blockadobenet" }, "WPFTweaksRightClickMenu": { - "Content": "Set Classic Right-Click Menu", + "Content": "Right-Click Menu Previous Layout - Enable", "Description": "Restores the classic context menu when right-clicking in File Explorer, replacing the simplified Windows 11 version.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1949,7 +1949,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/rightclickmenu" }, "WPFTweaksDiskCleanup": { - "Content": "Run Disk Cleanup", + "Content": "Disk Cleanup - Run", "Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.", "category": "Essential Tweaks", "panel": "1", @@ -1962,7 +1962,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/diskcleanup" }, "WPFTweaksDeleteTempFiles": { - "Content": "Delete Temporary Files", + "Content": "Temporary Files - Remove", "Description": "Erases TEMP Folders.", "category": "Essential Tweaks", "panel": "1", @@ -1975,7 +1975,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/deletetempfiles" }, "WPFTweaksIPv46": { - "Content": "Prefer IPv4 over IPv6", + "Content": "IPv6 - Set IPv4 as Preferred", "Description": "Setting the IPv4 preference can have latency and security benefits on private networks where IPv6 is not configured.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -1991,7 +1991,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/ipv46" }, "WPFTweaksTeredo": { - "Content": "Disable Teredo", + "Content": "Teredo - Disable", "Description": "Teredo network tunneling is an IPv6 feature that can cause additional latency, but may cause problems with some games.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -2013,7 +2013,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/teredo" }, "WPFTweaksDisableIPv6": { - "Content": "Disable IPv6", + "Content": "IPv6 - Disable", "Description": "Disables IPv6.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -2035,7 +2035,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/disableipv6" }, "WPFTweaksDisableBGapps": { - "Content": "Disable Background Apps", + "Content": "Background Apps - Disable", "Description": "Disables all Microsoft Store apps from running in the background, which has to be done individually since Windows 11.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -2051,7 +2051,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/disablebgapps" }, "WPFTweaksDisableFSO": { - "Content": "Disable Fullscreen Optimizations", + "Content": "Fullscreen Optimizations - Disable", "Description": "Disables FSO in all applications. NOTE: This will disable Color Management in Exclusive Fullscreen.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", @@ -2066,6 +2066,50 @@ ], "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/disablefso" }, + "WPFToggleDisableCrossDeviceResume": { + "Content": "Cross-Device Resume", + "Description": "This tweak controls the Resume function in Windows 11 24H2 and later, which allows you to resume an activity from a mobile device and vice-versa.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\CrossDeviceResume\\Configuration", + "Name": "IsResumeAllowed", + "Value": "1", + "Type": "DWord", + "OriginalValue": "0", + "DefaultState": "true" + } + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/disablecrossdeviceresume" + }, + "WPFToggleDetailedBSoD": { + "Content": "BSoD Verbose Mode", + "Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\CrashControl", + "Name": "DisplayParameters", + "Value": "1", + "Type": "DWord", + "OriginalValue": "0", + "DefaultState": "false" + }, + { + "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\CrashControl", + "Name": "DisableEmoticon", + "Value": "1", + "Type": "DWord", + "OriginalValue": "0", + "DefaultState": "false" + } + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/detailedbsod" + }, "WPFToggleDarkMode": { "Content": "Dark Theme for Windows", "Description": "Enable/Disable Dark Mode.", @@ -2108,41 +2152,173 @@ ], "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/darkmode" }, - "WPFToggleBingSearch": { - "Content": "Bing Search in Start Menu", - "Description": "If enabled, Bing web search results will be included in your Start Menu search.", + "WPFToggleShowExt": { + "Content": "File Explorer File Extensions", + "Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.", "category": "Customize Preferences", "panel": "2", "Type": "Toggle", "registry": [ { - "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Search", - "Name": "BingSearchEnabled", + "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", + "Name": "HideFileExt", + "Value": "0", + "Type": "DWord", + "OriginalValue": "1", + "DefaultState": "false" + } + ], + "InvokeScript": [ + " + Invoke-WinUtilExplorerUpdate -action \"restart\" + " + ], + "UndoScript": [ + " + Invoke-WinUtilExplorerUpdate -action \"restart\" + " + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/showext" + }, + "WPFToggleHiddenFiles": { + "Content": "File Explorer Hidden Files", + "Description": "If enabled, Hidden Files will be shown.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", + "Name": "Hidden", + "Value": "1", + "Type": "DWord", + "OriginalValue": "0", + "DefaultState": "false" + } + ], + "InvokeScript": [ + " + Invoke-WinUtilExplorerUpdate -action \"restart\" + " + ], + "UndoScript": [ + " + Invoke-WinUtilExplorerUpdate -action \"restart\" + " + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/hiddenfiles" + }, + "WPFToggleVerboseLogon": { + "Content": "Logon Verbose Mode", + "Description": "Show detailed messages during the login process for troubleshooting and diagnostics.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\System", + "Name": "VerboseStatus", + "Value": "1", + "Type": "DWord", + "OriginalValue": "0", + "DefaultState": "false" + } + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/verboselogon" + }, + "WPFToggleNewOutlook": { + "Content": "Microsoft Outlook New Version", + "Description": "If disabled, it removes the new Outlook toggle, disables the new Outlook migration, and ensures the classic Outlook application is used.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKCU:\\SOFTWARE\\Microsoft\\Office\\16.0\\Outlook\\Preferences", + "Name": "UseNewOutlook", "Value": "1", "Type": "DWord", "OriginalValue": "0", "DefaultState": "true" - } - ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/bingsearch" - }, - "WPFToggleStandbyFix": { - "Content": "Modern Standby fix", - "Description": "Disable network connection during S0 Sleep. If network connectivity is turned on during S0 Sleep it could cause overheating on modern laptops.", - "category": "Customize Preferences", - "panel": "2", - "Type": "Toggle", - "registry": [ + }, { - "Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Power\\PowerSettings\\f15576e8-98b7-4186-b944-eafa664402d9", - "Name": "ACSettingIndex", + "Path": "HKCU:\\Software\\Microsoft\\Office\\16.0\\Outlook\\Options\\General", + "Name": "HideNewOutlookToggle", + "Value": "0", + "Type": "DWord", + "OriginalValue": "1", + "DefaultState": "true" + }, + { + "Path": "HKCU:\\Software\\Policies\\Microsoft\\Office\\16.0\\Outlook\\Options\\General", + "Name": "DoNewOutlookAutoMigration", + "Value": "0", + "Type": "DWord", + "OriginalValue": "0", + "DefaultState": "false" + }, + { + "Path": "HKCU:\\Software\\Policies\\Microsoft\\Office\\16.0\\Outlook\\Preferences", + "Name": "NewOutlookMigrationUserSetting", "Value": "0", "Type": "DWord", "OriginalValue": "", "DefaultState": "true" } ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/standbyfix" + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/newoutlook" + }, + "WPFToggleMultiplaneOverlay": { + "Content": "Multiplane Overlay", + "Description": "Enable or disable the Multiplane Overlay, which can sometimes cause issues with graphics cards.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Dwm", + "Name": "OverlayTestMode", + "Value": "0", + "Type": "DWord", + "OriginalValue": "5", + "DefaultState": "true" + } + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/multiplaneoverlay" + }, + "WPFToggleMouseAcceleration": { + "Content": "Mouse Acceleration", + "Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKCU:\\Control Panel\\Mouse", + "Name": "MouseSpeed", + "Value": "1", + "Type": "DWord", + "OriginalValue": "0", + "DefaultState": "true" + }, + { + "Path": "HKCU:\\Control Panel\\Mouse", + "Name": "MouseThreshold1", + "Value": "6", + "Type": "DWord", + "OriginalValue": "0", + "DefaultState": "true" + }, + { + "Path": "HKCU:\\Control Panel\\Mouse", + "Name": "MouseThreshold2", + "Value": "10", + "Type": "DWord", + "OriginalValue": "0", + "DefaultState": "true" + } + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/mouseacceleration" }, "WPFToggleNumLock": { "Content": "Num Lock on Startup", @@ -2170,23 +2346,77 @@ ], "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/numlock" }, - "WPFToggleVerboseLogon": { - "Content": "Verbose Messages During Logon", - "Description": "Show detailed messages during the login process for troubleshooting and diagnostics.", + "WPFToggleStandbyFix": { + "Content": "S0 Sleep Network Connectivity", + "Description": "Enable or disable network connectivity during S0 Sleep.", "category": "Customize Preferences", "panel": "2", "Type": "Toggle", "registry": [ { - "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\System", - "Name": "VerboseStatus", + "Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Power\\PowerSettings\\f15576e8-98b7-4186-b944-eafa664402d9", + "Name": "ACSettingIndex", "Value": "1", "Type": "DWord", "OriginalValue": "0", + "DefaultState": "true" + } + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/standbyfix" + }, + "WPFToggleS3Sleep": { + "Content": "S3 Sleep", + "Description": "Toggles between Modern Standby and S3 Sleep.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Power", + "Name": "PlatformAoAcOverride", + "Value": "0", + "Type": "DWord", + "OriginalValue": "", "DefaultState": "false" } ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/verboselogon" + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/s3sleep" + }, + "WPFToggleHideSettingsHome": { + "Content": "Settings Home Page", + "Description": "Enable or disable the Home Page in the Windows Settings app.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer", + "Name": "SettingsPageVisibility", + "Value": "show:home", + "Type": "String", + "OriginalValue": "hide:home", + "DefaultState": "true" + } + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/hidesettingshome" + }, + "WPFToggleBingSearch": { + "Content": "Start Menu Bing Search", + "Description": "If enabled, Bing web search results will be included in your Start Menu search.", + "category": "Customize Preferences", + "panel": "2", + "Type": "Toggle", + "registry": [ + { + "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Search", + "Name": "BingSearchEnabled", + "Value": "1", + "Type": "DWord", + "OriginalValue": "0", + "DefaultState": "true" + } + ], + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/bingsearch" }, "WPFToggleLoginBlur": { "Content": "Acrylic Blur on Login Screen", @@ -2207,7 +2437,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/loginblur" }, "WPFToggleStartMenuRecommendations": { - "Content": "Recommendations in Start Menu", + "Content": "Start Menu Recommendations", "Description": "If disabled, then you will not see recommendations in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.", "category": "Customize Preferences", "panel": "2", @@ -2250,58 +2480,6 @@ ], "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/startmenurecommendations" }, - "WPFToggleHideSettingsHome": { - "Content": "Remove Settings Home Page", - "Description": "Removes the Home Page in the Windows Settings app.", - "category": "Customize Preferences", - "panel": "2", - "Type": "Toggle", - "registry": [ - { - "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer", - "Name": "SettingsPageVisibility", - "Value": "hide:home", - "Type": "String", - "OriginalValue": "show:home", - "DefaultState": "false" - } - ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/hidesettingshome" - }, - "WPFToggleMouseAcceleration": { - "Content": "Mouse Acceleration", - "Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.", - "category": "Customize Preferences", - "panel": "2", - "Type": "Toggle", - "registry": [ - { - "Path": "HKCU:\\Control Panel\\Mouse", - "Name": "MouseSpeed", - "Value": "1", - "Type": "DWord", - "OriginalValue": "0", - "DefaultState": "true" - }, - { - "Path": "HKCU:\\Control Panel\\Mouse", - "Name": "MouseThreshold1", - "Value": "6", - "Type": "DWord", - "OriginalValue": "0", - "DefaultState": "true" - }, - { - "Path": "HKCU:\\Control Panel\\Mouse", - "Name": "MouseThreshold2", - "Value": "10", - "Type": "DWord", - "OriginalValue": "0", - "DefaultState": "true" - } - ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/mouseacceleration" - }, "WPFToggleStickyKeys": { "Content": "Sticky Keys", "Description": "If enabled, Sticky Keys is activated. Sticky keys is an accessibility feature of some graphical user interfaces which assists users who have physical disabilities or help users reduce repetitive strain injury.", @@ -2320,160 +2498,8 @@ ], "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/stickykeys" }, - "WPFToggleNewOutlook": { - "Content": "New Outlook", - "Description": "If disabled, it removes the new Outlook toggle, disables the new Outlook migration, and ensures the classic Outlook application is used.", - "category": "Customize Preferences", - "panel": "2", - "Type": "Toggle", - "registry": [ - { - "Path": "HKCU:\\SOFTWARE\\Microsoft\\Office\\16.0\\Outlook\\Preferences", - "Name": "UseNewOutlook", - "Value": "1", - "Type": "DWord", - "OriginalValue": "0", - "DefaultState": "true" - }, - { - "Path": "HKCU:\\Software\\Microsoft\\Office\\16.0\\Outlook\\Options\\General", - "Name": "HideNewOutlookToggle", - "Value": "0", - "Type": "DWord", - "OriginalValue": "1", - "DefaultState": "true" - }, - { - "Path": "HKCU:\\Software\\Policies\\Microsoft\\Office\\16.0\\Outlook\\Options\\General", - "Name": "DoNewOutlookAutoMigration", - "Value": "0", - "Type": "DWord", - "OriginalValue": "0", - "DefaultState": "false" - }, - { - "Path": "HKCU:\\Software\\Policies\\Microsoft\\Office\\16.0\\Outlook\\Preferences", - "Name": "NewOutlookMigrationUserSetting", - "Value": "0", - "Type": "DWord", - "OriginalValue": "", - "DefaultState": "true" - } - ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/newoutlook" - }, - "WPFToggleMultiplaneOverlay": { - "Content": "Disable Multiplane Overlay", - "Description": "Disable the Multiplane Overlay which can sometimes cause issues with Graphics Cards.", - "category": "Customize Preferences", - "panel": "2", - "Type": "Toggle", - "registry": [ - { - "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Dwm", - "Name": "OverlayTestMode", - "Value": "5", - "Type": "DWord", - "OriginalValue": "", - "DefaultState": "false" - } - ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/multiplaneoverlay" - }, - "WPFToggleHiddenFiles": { - "Content": "Show Hidden Files", - "Description": "If enabled, Hidden Files will be shown.", - "category": "Customize Preferences", - "panel": "2", - "Type": "Toggle", - "registry": [ - { - "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", - "Name": "Hidden", - "Value": "1", - "Type": "DWord", - "OriginalValue": "0", - "DefaultState": "false" - } - ], - "InvokeScript": [ - " - Invoke-WinUtilExplorerUpdate -action \"restart\" - " - ], - "UndoScript": [ - " - Invoke-WinUtilExplorerUpdate -action \"restart\" - " - ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/hiddenfiles" - }, - "WPFToggleShowExt": { - "Content": "Show File Extensions", - "Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.", - "category": "Customize Preferences", - "panel": "2", - "Type": "Toggle", - "registry": [ - { - "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", - "Name": "HideFileExt", - "Value": "0", - "Type": "DWord", - "OriginalValue": "1", - "DefaultState": "false" - } - ], - "InvokeScript": [ - " - Invoke-WinUtilExplorerUpdate -action \"restart\" - " - ], - "UndoScript": [ - " - Invoke-WinUtilExplorerUpdate -action \"restart\" - " - ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/showext" - }, - "WPFToggleTaskbarSearch": { - "Content": "Search Button in Taskbar", - "Description": "If enabled, Search Button will be on the Taskbar.", - "category": "Customize Preferences", - "panel": "2", - "Type": "Toggle", - "registry": [ - { - "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Search", - "Name": "SearchboxTaskbarMode", - "Value": "1", - "Type": "DWord", - "OriginalValue": "0", - "DefaultState": "true" - } - ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/taskbarsearch" - }, - "WPFToggleTaskView": { - "Content": "Task View Button in Taskbar", - "Description": "If enabled, Task View Button in Taskbar will be shown.", - "category": "Customize Preferences", - "panel": "2", - "Type": "Toggle", - "registry": [ - { - "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", - "Name": "ShowTaskViewButton", - "Value": "1", - "Type": "DWord", - "OriginalValue": "0", - "DefaultState": "true" - } - ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/taskview" - }, "WPFToggleTaskbarAlignment": { - "Content": "Center Taskbar Items", + "Content": "Taskbar Centered Icons", "Description": "[Windows 11] If enabled, the Taskbar Items will be shown on the Center, otherwise the Taskbar Items will be shown on the Left.", "category": "Customize Preferences", "panel": "2", @@ -2500,59 +2526,51 @@ ], "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/taskbaralignment" }, - "WPFToggleDetailedBSoD": { - "Content": "Detailed BSoD", - "Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.", + "WPFToggleTaskbarSearch": { + "Content": "Taskbar Search Icon", + "Description": "If enabled, Search Button will be on the Taskbar.", "category": "Customize Preferences", "panel": "2", "Type": "Toggle", "registry": [ { - "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\CrashControl", - "Name": "DisplayParameters", + "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Search", + "Name": "SearchboxTaskbarMode", "Value": "1", "Type": "DWord", "OriginalValue": "0", - "DefaultState": "false" - }, - { - "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\CrashControl", - "Name": "DisableEmoticon", - "Value": "1", - "Type": "DWord", - "OriginalValue": "0", - "DefaultState": "false" + "DefaultState": "true" } ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/detailedbsod" + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/taskbarsearch" }, - "WPFToggleS3Sleep": { - "Content": "S3 Sleep", - "Description": "Toggles between Modern Standby and S3 Sleep.", + "WPFToggleTaskView": { + "Content": "Taskbar Task View Icon", + "Description": "If enabled, Task View Button in Taskbar will be shown.", "category": "Customize Preferences", "panel": "2", "Type": "Toggle", "registry": [ { - "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Power", - "Name": "PlatformAoAcOverride", - "Value": "0", + "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", + "Name": "ShowTaskViewButton", + "Value": "1", "Type": "DWord", - "OriginalValue": "", - "DefaultState": "false" + "OriginalValue": "0", + "DefaultState": "true" } ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/s3sleep" + "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/taskview" }, "WPFOOSUbutton": { - "Content": "Run OO Shutup 10", + "Content": "OO Shutup 10 - Run", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", "Type": "Button", "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/oosubutton" }, "WPFchangedns": { - "Content": "DNS", + "Content": "DNS - Set to:", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", "Type": "Combobox", @@ -2560,7 +2578,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/changedns" }, "WPFAddUltPerf": { - "Content": "Add and Activate Ultimate Performance Profile", + "Content": "Ultimate Performance Profile - Enable", "category": "Performance Plans", "panel": "2", "Type": "Button", @@ -2568,7 +2586,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/performance-plans/addultperf" }, "WPFRemoveUltPerf": { - "Content": "Remove Ultimate Performance Profile", + "Content": "Ultimate Performance Profile - Disable", "category": "Performance Plans", "panel": "2", "Type": "Button", @@ -2576,7 +2594,7 @@ "link": "https://winutil.christitus.com/dev/tweaks/performance-plans/removeultperf" }, "WPFTweaksDisableExplorerAutoDiscovery": { - "Content": "Disable Explorer Automatic Folder Discovery", + "Content": "File Explorer Automatic Folder Discovery - Disable", "Description": "Windows Explorer automatically tries to guess the type of the folder based on its contents, slowing down the browsing experience. WARNING! Will disable File Explorer grouping.", "category": "Essential Tweaks", "panel": "1", @@ -2629,23 +2647,5 @@ " ], "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/disableexplorerautodiscovery" - }, - "WPFToggleDisableCrossDeviceResume": { - "Content": "Cross-Device Resume", - "Description": "This tweak controls the Resume function in Windows 11 24H2 and later, which allows you to resume an activity from a mobile device and vice-versa.", - "category": "Customize Preferences", - "panel": "2", - "Type": "Toggle", - "registry": [ - { - "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\CrossDeviceResume\\Configuration", - "Name": "IsResumeAllowed", - "Value": "1", - "Type": "DWord", - "OriginalValue": "0", - "DefaultState": "true" - } - ], - "link": "https://winutil.christitus.com/dev/tweaks/customize-preferences/disablecrossdeviceresume" } } From f31e5eb2ac7f3dcfdf3dcbc695c36e0c303fc33f Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Fri, 17 Apr 2026 09:04:35 -0500 Subject: [PATCH 20/22] chore: Update generated dev docs (#4382) --- .../dev/features/Features/DisableLegacyRecovery.md | 4 ++-- .../dev/features/Features/EnableLegacyRecovery.md | 4 ++-- docs/content/dev/features/Features/RegBackup.md | 4 ++-- docs/content/dev/features/Features/Sandbox.md | 4 ++-- docs/content/dev/features/Features/dotnet.md | 4 ++-- docs/content/dev/features/Features/hyperv.md | 4 ++-- docs/content/dev/features/Features/legacymedia.md | 4 ++-- docs/content/dev/features/Features/nfs.md | 4 ++-- docs/content/dev/features/Features/wsl.md | 4 ++-- docs/content/dev/features/Fixes/Autologin.md | 2 +- docs/content/dev/features/Fixes/DISM.md | 2 +- docs/content/dev/features/Fixes/NTPPool.md | 2 +- docs/content/dev/features/Fixes/Network.md | 2 +- docs/content/dev/features/Fixes/Update.md | 2 +- docs/content/dev/features/Fixes/Winget.md | 2 +- .../InstallPSProfile.md | 2 +- .../UninstallPSProfile.md | 2 +- .../dev/features/Remote-Access/SSHServer.md | 2 +- .../dev/tweaks/Customize-Preferences/BingSearch.md | 6 +++--- .../dev/tweaks/Customize-Preferences/DarkMode.md | 2 +- .../tweaks/Customize-Preferences/DetailedBSoD.md | 6 +++--- .../DisableCrossDeviceResume.md | 2 +- .../tweaks/Customize-Preferences/HiddenFiles.md | 6 +++--- .../Customize-Preferences/HideSettingsHome.md | 14 +++++++------- .../dev/tweaks/Customize-Preferences/LoginBlur.md | 2 +- .../Customize-Preferences/MouseAcceleration.md | 2 +- .../Customize-Preferences/MultiplaneOverlay.md | 14 +++++++------- .../dev/tweaks/Customize-Preferences/NewOutlook.md | 6 +++--- .../dev/tweaks/Customize-Preferences/NumLock.md | 2 +- .../dev/tweaks/Customize-Preferences/S3Sleep.md | 2 +- .../dev/tweaks/Customize-Preferences/ShowExt.md | 6 +++--- .../dev/tweaks/Customize-Preferences/StandbyFix.md | 12 ++++++------ .../StartMenuRecommendations.md | 6 +++--- .../dev/tweaks/Customize-Preferences/StickyKeys.md | 2 +- .../dev/tweaks/Customize-Preferences/TaskView.md | 6 +++--- .../Customize-Preferences/TaskbarAlignment.md | 6 +++--- .../tweaks/Customize-Preferences/TaskbarSearch.md | 6 +++--- .../tweaks/Customize-Preferences/VerboseLogon.md | 6 +++--- .../dev/tweaks/Essential-Tweaks/Activity.md | 4 ++-- .../tweaks/Essential-Tweaks/ConsumerFeatures.md | 4 ++-- .../dev/tweaks/Essential-Tweaks/DeleteTempFiles.md | 4 ++-- .../DisableExplorerAutoDiscovery.md | 6 +++--- .../tweaks/Essential-Tweaks/DisableStoreSearch.md | 4 ++-- .../dev/tweaks/Essential-Tweaks/DiskCleanup.md | 4 ++-- .../tweaks/Essential-Tweaks/EndTaskOnTaskbar.md | 4 ++-- docs/content/dev/tweaks/Essential-Tweaks/Hiber.md | 4 ++-- .../dev/tweaks/Essential-Tweaks/Location.md | 4 ++-- .../dev/tweaks/Essential-Tweaks/Powershell7Tele.md | 4 ++-- .../dev/tweaks/Essential-Tweaks/RestorePoint.md | 4 ++-- .../dev/tweaks/Essential-Tweaks/RevertStartMenu.md | 4 ++-- .../dev/tweaks/Essential-Tweaks/Services.md | 4 ++-- .../dev/tweaks/Essential-Tweaks/Telemetry.md | 4 ++-- docs/content/dev/tweaks/Essential-Tweaks/WPBT.md | 4 ++-- docs/content/dev/tweaks/Essential-Tweaks/Widget.md | 4 ++-- .../dev/tweaks/Performance-Plans/AddUltPerf.md | 2 +- .../dev/tweaks/Performance-Plans/RemoveUltPerf.md | 2 +- .../z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/BraveDebloat.md | 4 ++-- .../tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/DisableBGapps.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/DisableFSO.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/DisableIPv6.md | 4 ++-- .../DisableNotifications.md | 4 ++-- .../tweaks/z--Advanced-Tweaks---CAUTION/Display.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/EdgeDebloat.md | 4 ++-- .../tweaks/z--Advanced-Tweaks---CAUTION/IPv46.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/OOSUbutton.md | 2 +- .../z--Advanced-Tweaks---CAUTION/RazerBlock.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/RemoveCopilot.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/RemoveEdge.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/RemoveGallery.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/RemoveHome.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/RightClickMenu.md | 4 ++-- .../tweaks/z--Advanced-Tweaks---CAUTION/Storage.md | 4 ++-- .../tweaks/z--Advanced-Tweaks---CAUTION/Teredo.md | 4 ++-- .../dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/XboxRemoval.md | 4 ++-- .../z--Advanced-Tweaks---CAUTION/changedns.md | 6 +++--- 79 files changed, 165 insertions(+), 165 deletions(-) diff --git a/docs/content/dev/features/Features/DisableLegacyRecovery.md b/docs/content/dev/features/Features/DisableLegacyRecovery.md index 63c1c3af..87323c2d 100644 --- a/docs/content/dev/features/Features/DisableLegacyRecovery.md +++ b/docs/content/dev/features/Features/DisableLegacyRecovery.md @@ -1,11 +1,11 @@ --- -title: "Disable Legacy F8 Boot Recovery" +title: "Legacy F8 Boot Recovery - Disable" description: "" --- ```json {filename="config/feature.json",linenos=inline,linenostart=110} "WPFFeatureDisableLegacyRecovery": { - "Content": "Disable Legacy F8 Boot Recovery", + "Content": "Legacy F8 Boot Recovery - Disable", "Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.", "category": "Features", "panel": "1", diff --git a/docs/content/dev/features/Features/EnableLegacyRecovery.md b/docs/content/dev/features/Features/EnableLegacyRecovery.md index f6d021da..bafa1385 100644 --- a/docs/content/dev/features/Features/EnableLegacyRecovery.md +++ b/docs/content/dev/features/Features/EnableLegacyRecovery.md @@ -1,11 +1,11 @@ --- -title: "Enable Legacy F8 Boot Recovery" +title: "Legacy F8 Boot Recovery - Enable" description: "" --- ```json {filename="config/feature.json",linenos=inline,linenostart=99} "WPFFeatureEnableLegacyRecovery": { - "Content": "Enable Legacy F8 Boot Recovery", + "Content": "Legacy F8 Boot Recovery - Enable", "Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.", "category": "Features", "panel": "1", diff --git a/docs/content/dev/features/Features/RegBackup.md b/docs/content/dev/features/Features/RegBackup.md index bdc2ca28..ca2df83c 100644 --- a/docs/content/dev/features/Features/RegBackup.md +++ b/docs/content/dev/features/Features/RegBackup.md @@ -1,11 +1,11 @@ --- -title: "Enable Daily Registry Backup Task 12.30am" +title: "Registry Backup (Daily Task 12:30am) - Enable" description: "" --- ```json {filename="config/feature.json",linenos=inline,linenostart=82} "WPFFeatureRegBackup": { - "Content": "Enable Daily Registry Backup Task 12.30am", + "Content": "Registry Backup (Daily Task 12:30am) - Enable", "Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.", "category": "Features", "panel": "1", diff --git a/docs/content/dev/features/Features/Sandbox.md b/docs/content/dev/features/Features/Sandbox.md index f4c6fd50..0f51f355 100644 --- a/docs/content/dev/features/Features/Sandbox.md +++ b/docs/content/dev/features/Features/Sandbox.md @@ -1,11 +1,11 @@ --- -title: "Windows Sandbox" +title: "Windows Sandbox - Enable" description: "" --- ```json {filename="config/feature.json",linenos=inline,linenostart=121} "WPFFeaturesSandbox": { - "Content": "Windows Sandbox", + "Content": "Windows Sandbox - Enable", "Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.", "category": "Features", "panel": "1", diff --git a/docs/content/dev/features/Features/dotnet.md b/docs/content/dev/features/Features/dotnet.md index 30940195..e854ddc0 100644 --- a/docs/content/dev/features/Features/dotnet.md +++ b/docs/content/dev/features/Features/dotnet.md @@ -1,11 +1,11 @@ --- -title: "All .Net Framework (2,3,4)" +title: ".NET Framework (Versions 2, 3, 4) - Enable" description: "" --- ```json {filename="config/feature.json",linenos=inline,linenostart=2} "WPFFeaturesdotnet": { - "Content": "All .Net Framework (2,3,4)", + "Content": ".NET Framework (Versions 2, 3, 4) - Enable", "Description": ".NET and .NET Framework is a developer platform made up of tools, programming languages, and libraries for building many different types of applications.", "category": "Features", "panel": "1", diff --git a/docs/content/dev/features/Features/hyperv.md b/docs/content/dev/features/Features/hyperv.md index 81e88a48..d34025d2 100644 --- a/docs/content/dev/features/Features/hyperv.md +++ b/docs/content/dev/features/Features/hyperv.md @@ -1,11 +1,11 @@ --- -title: "HyperV Virtualization" +title: "Hyper-V - Enable" description: "" --- ```json {filename="config/feature.json",linenos=inline,linenostart=24} "WPFFeatureshyperv": { - "Content": "HyperV Virtualization", + "Content": "Hyper-V - Enable", "Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.", "category": "Features", "panel": "1", diff --git a/docs/content/dev/features/Features/legacymedia.md b/docs/content/dev/features/Features/legacymedia.md index 25c78023..efc4a52d 100644 --- a/docs/content/dev/features/Features/legacymedia.md +++ b/docs/content/dev/features/Features/legacymedia.md @@ -1,11 +1,11 @@ --- -title: "Legacy Media (WMP, DirectPlay)" +title: "Legacy Media Components (WMP, DirectPlay) - Enable" description: "" --- ```json {filename="config/feature.json",linenos=inline,linenostart=37} "WPFFeatureslegacymedia": { - "Content": "Legacy Media (WMP, DirectPlay)", + "Content": "Legacy Media Components (WMP, DirectPlay) - Enable", "Description": "Enables legacy programs from previous versions of Windows.", "category": "Features", "panel": "1", diff --git a/docs/content/dev/features/Features/nfs.md b/docs/content/dev/features/Features/nfs.md index 471e4643..496a024a 100644 --- a/docs/content/dev/features/Features/nfs.md +++ b/docs/content/dev/features/Features/nfs.md @@ -1,11 +1,11 @@ --- -title: "NFS - Network File System" +title: "Network File System (NFS) - Enable" description: "" --- ```json {filename="config/feature.json",linenos=inline,linenostart=63} "WPFFeaturenfs": { - "Content": "NFS - Network File System", + "Content": "Network File System (NFS) - Enable", "Description": "Network File System (NFS) is a mechanism for storing files on a network.", "category": "Features", "panel": "1", diff --git a/docs/content/dev/features/Features/wsl.md b/docs/content/dev/features/Features/wsl.md index 0d8c01b0..73f8336e 100644 --- a/docs/content/dev/features/Features/wsl.md +++ b/docs/content/dev/features/Features/wsl.md @@ -1,11 +1,11 @@ --- -title: "Windows Subsystem for Linux" +title: "Windows Subsystem for Linux (WSL) - Enable" description: "" --- ```json {filename="config/feature.json",linenos=inline,linenostart=51} "WPFFeaturewsl": { - "Content": "Windows Subsystem for Linux", + "Content": "Windows Subsystem for Linux (WSL) - Enable", "Description": "Windows Subsystem for Linux is an optional feature of Windows that allows Linux programs to run natively on Windows without the need for a separate virtual machine or dual booting.", "category": "Features", "panel": "1", diff --git a/docs/content/dev/features/Fixes/Autologin.md b/docs/content/dev/features/Fixes/Autologin.md index d8e9461d..8fa3b5a3 100644 --- a/docs/content/dev/features/Fixes/Autologin.md +++ b/docs/content/dev/features/Fixes/Autologin.md @@ -1,5 +1,5 @@ --- -title: "Set Up Autologin" +title: "Autologin - Enable" description: "" --- diff --git a/docs/content/dev/features/Fixes/DISM.md b/docs/content/dev/features/Fixes/DISM.md index 5ba15f6d..b262a640 100644 --- a/docs/content/dev/features/Fixes/DISM.md +++ b/docs/content/dev/features/Fixes/DISM.md @@ -1,5 +1,5 @@ --- -title: "System Corruption Scan" +title: "System Corruption Scan - Run" description: "" --- diff --git a/docs/content/dev/features/Fixes/NTPPool.md b/docs/content/dev/features/Fixes/NTPPool.md index 7da6723c..d3e8990b 100644 --- a/docs/content/dev/features/Fixes/NTPPool.md +++ b/docs/content/dev/features/Fixes/NTPPool.md @@ -1,5 +1,5 @@ --- -title: "Configure NTP Server" +title: "NTP Server - Enable" description: "" --- diff --git a/docs/content/dev/features/Fixes/Network.md b/docs/content/dev/features/Fixes/Network.md index 880d084e..84af6f7b 100644 --- a/docs/content/dev/features/Fixes/Network.md +++ b/docs/content/dev/features/Fixes/Network.md @@ -1,5 +1,5 @@ --- -title: "Reset Network" +title: "Network - Reset" description: "" --- diff --git a/docs/content/dev/features/Fixes/Update.md b/docs/content/dev/features/Fixes/Update.md index cca61ae4..42a0bfea 100644 --- a/docs/content/dev/features/Fixes/Update.md +++ b/docs/content/dev/features/Fixes/Update.md @@ -1,5 +1,5 @@ --- -title: "Reset Windows Update" +title: "Windows Update - Reset" description: "" --- diff --git a/docs/content/dev/features/Fixes/Winget.md b/docs/content/dev/features/Fixes/Winget.md index 7cdcdf44..fa32076d 100644 --- a/docs/content/dev/features/Fixes/Winget.md +++ b/docs/content/dev/features/Fixes/Winget.md @@ -1,5 +1,5 @@ --- -title: "WinGet Reinstall" +title: "WinGet - Reinstall" description: "" --- diff --git a/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/InstallPSProfile.md b/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/InstallPSProfile.md index a3ca01cf..b5ff4168 100644 --- a/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/InstallPSProfile.md +++ b/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/InstallPSProfile.md @@ -1,5 +1,5 @@ --- -title: "Install CTT PowerShell Profile" +title: "CTT PowerShell Profile - Install" description: "" --- diff --git a/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/UninstallPSProfile.md b/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/UninstallPSProfile.md index 326a6fc6..1fada38a 100644 --- a/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/UninstallPSProfile.md +++ b/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/UninstallPSProfile.md @@ -1,5 +1,5 @@ --- -title: "Uninstall CTT PowerShell Profile" +title: "CTT PowerShell Profile - Remove" description: "" --- diff --git a/docs/content/dev/features/Remote-Access/SSHServer.md b/docs/content/dev/features/Remote-Access/SSHServer.md index c767b2cf..6a635196 100644 --- a/docs/content/dev/features/Remote-Access/SSHServer.md +++ b/docs/content/dev/features/Remote-Access/SSHServer.md @@ -1,5 +1,5 @@ --- -title: "Enable OpenSSH Server" +title: "OpenSSH Server - Enable" description: "" --- diff --git a/docs/content/dev/tweaks/Customize-Preferences/BingSearch.md b/docs/content/dev/tweaks/Customize-Preferences/BingSearch.md index 9f922c19..4b740abf 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/BingSearch.md +++ b/docs/content/dev/tweaks/Customize-Preferences/BingSearch.md @@ -1,11 +1,11 @@ --- -title: "Bing Search in Start Menu" +title: "Start Menu Bing Search" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2111} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2403} "WPFToggleBingSearch": { - "Content": "Bing Search in Start Menu", + "Content": "Start Menu Bing Search", "Description": "If enabled, Bing web search results will be included in your Start Menu search.", "category": "Customize Preferences", "panel": "2", diff --git a/docs/content/dev/tweaks/Customize-Preferences/DarkMode.md b/docs/content/dev/tweaks/Customize-Preferences/DarkMode.md index 3014decf..07665327 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/DarkMode.md +++ b/docs/content/dev/tweaks/Customize-Preferences/DarkMode.md @@ -3,7 +3,7 @@ title: "Dark Theme for Windows" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2069} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2113} "WPFToggleDarkMode": { "Content": "Dark Theme for Windows", "Description": "Enable/Disable Dark Mode.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md b/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md index dc33eb0e..8385bc20 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md +++ b/docs/content/dev/tweaks/Customize-Preferences/DetailedBSoD.md @@ -1,11 +1,11 @@ --- -title: "Detailed BSoD" +title: "BSoD Verbose Mode" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2503} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2087} "WPFToggleDetailedBSoD": { - "Content": "Detailed BSoD", + "Content": "BSoD Verbose Mode", "Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.", "category": "Customize Preferences", "panel": "2", diff --git a/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md b/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md index 07e70cf8..93391f11 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md +++ b/docs/content/dev/tweaks/Customize-Preferences/DisableCrossDeviceResume.md @@ -3,7 +3,7 @@ title: "Cross-Device Resume" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2633} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2069} "WPFToggleDisableCrossDeviceResume": { "Content": "Cross-Device Resume", "Description": "This tweak controls the Resume function in Windows 11 24H2 and later, which allows you to resume an activity from a mobile device and vice-versa.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md b/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md index c4a63072..31b5d96d 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md +++ b/docs/content/dev/tweaks/Customize-Preferences/HiddenFiles.md @@ -1,11 +1,11 @@ --- -title: "Show Hidden Files" +title: "File Explorer Hidden Files" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2383} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2183} "WPFToggleHiddenFiles": { - "Content": "Show Hidden Files", + "Content": "File Explorer Hidden Files", "Description": "If enabled, Hidden Files will be shown.", "category": "Customize Preferences", "panel": "2", diff --git a/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md b/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md index e890582e..78fad178 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md +++ b/docs/content/dev/tweaks/Customize-Preferences/HideSettingsHome.md @@ -1,12 +1,12 @@ --- -title: "Remove Settings Home Page" +title: "Settings Home Page" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2253} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2385} "WPFToggleHideSettingsHome": { - "Content": "Remove Settings Home Page", - "Description": "Removes the Home Page in the Windows Settings app.", + "Content": "Settings Home Page", + "Description": "Enable or disable the Home Page in the Windows Settings app.", "category": "Customize Preferences", "panel": "2", "Type": "Toggle", @@ -14,10 +14,10 @@ description: "" { "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer", "Name": "SettingsPageVisibility", - "Value": "hide:home", + "Value": "show:home", "Type": "String", - "OriginalValue": "show:home", - "DefaultState": "false" + "OriginalValue": "hide:home", + "DefaultState": "true" } ], ``` diff --git a/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md b/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md index 85688b5b..16094e32 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md +++ b/docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md @@ -3,7 +3,7 @@ title: "Acrylic Blur on Login Screen" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2191} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2421} "WPFToggleLoginBlur": { "Content": "Acrylic Blur on Login Screen", "Description": "If disabled, the acrylic blur effect will be removed on the Windows 10/11 login screen background.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md b/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md index fa23435f..85780c12 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md +++ b/docs/content/dev/tweaks/Customize-Preferences/MouseAcceleration.md @@ -3,7 +3,7 @@ title: "Mouse Acceleration" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2271} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2289} "WPFToggleMouseAcceleration": { "Content": "Mouse Acceleration", "Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md b/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md index 6e134b1a..37e02ca3 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md +++ b/docs/content/dev/tweaks/Customize-Preferences/MultiplaneOverlay.md @@ -1,12 +1,12 @@ --- -title: "Disable Multiplane Overlay" +title: "Multiplane Overlay" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2365} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2271} "WPFToggleMultiplaneOverlay": { - "Content": "Disable Multiplane Overlay", - "Description": "Disable the Multiplane Overlay which can sometimes cause issues with Graphics Cards.", + "Content": "Multiplane Overlay", + "Description": "Enable or disable the Multiplane Overlay, which can sometimes cause issues with graphics cards.", "category": "Customize Preferences", "panel": "2", "Type": "Toggle", @@ -14,10 +14,10 @@ description: "" { "Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Dwm", "Name": "OverlayTestMode", - "Value": "5", + "Value": "0", "Type": "DWord", - "OriginalValue": "", - "DefaultState": "false" + "OriginalValue": "5", + "DefaultState": "true" } ], ``` diff --git a/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md b/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md index 5e3c7e87..b34281c2 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md +++ b/docs/content/dev/tweaks/Customize-Preferences/NewOutlook.md @@ -1,11 +1,11 @@ --- -title: "New Outlook" +title: "Microsoft Outlook New Version" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2323} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2229} "WPFToggleNewOutlook": { - "Content": "New Outlook", + "Content": "Microsoft Outlook New Version", "Description": "If disabled, it removes the new Outlook toggle, disables the new Outlook migration, and ensures the classic Outlook application is used.", "category": "Customize Preferences", "panel": "2", diff --git a/docs/content/dev/tweaks/Customize-Preferences/NumLock.md b/docs/content/dev/tweaks/Customize-Preferences/NumLock.md index 177b5c5d..f75fe080 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/NumLock.md +++ b/docs/content/dev/tweaks/Customize-Preferences/NumLock.md @@ -3,7 +3,7 @@ title: "Num Lock on Startup" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2147} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2323} "WPFToggleNumLock": { "Content": "Num Lock on Startup", "Description": "Toggle the Num Lock key state when your computer starts.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md b/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md index e7270d31..7ad96524 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md +++ b/docs/content/dev/tweaks/Customize-Preferences/S3Sleep.md @@ -3,7 +3,7 @@ title: "S3 Sleep" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2529} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2367} "WPFToggleS3Sleep": { "Content": "S3 Sleep", "Description": "Toggles between Modern Standby and S3 Sleep.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md b/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md index a49d15b5..4328559c 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md +++ b/docs/content/dev/tweaks/Customize-Preferences/ShowExt.md @@ -1,11 +1,11 @@ --- -title: "Show File Extensions" +title: "File Explorer File Extensions" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2411} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2155} "WPFToggleShowExt": { - "Content": "Show File Extensions", + "Content": "File Explorer File Extensions", "Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.", "category": "Customize Preferences", "panel": "2", diff --git a/docs/content/dev/tweaks/Customize-Preferences/StandbyFix.md b/docs/content/dev/tweaks/Customize-Preferences/StandbyFix.md index 306d7e5f..32d9e626 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StandbyFix.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StandbyFix.md @@ -1,12 +1,12 @@ --- -title: "Modern Standby fix" +title: "S0 Sleep Network Connectivity" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2129} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2349} "WPFToggleStandbyFix": { - "Content": "Modern Standby fix", - "Description": "Disable network connection during S0 Sleep. If network connectivity is turned on during S0 Sleep it could cause overheating on modern laptops.", + "Content": "S0 Sleep Network Connectivity", + "Description": "Enable or disable network connectivity during S0 Sleep.", "category": "Customize Preferences", "panel": "2", "Type": "Toggle", @@ -14,9 +14,9 @@ description: "" { "Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Power\\PowerSettings\\f15576e8-98b7-4186-b944-eafa664402d9", "Name": "ACSettingIndex", - "Value": "0", + "Value": "1", "Type": "DWord", - "OriginalValue": "", + "OriginalValue": "0", "DefaultState": "true" } ], diff --git a/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md b/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md index f9d3fc39..d7f0b126 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StartMenuRecommendations.md @@ -1,11 +1,11 @@ --- -title: "Recommendations in Start Menu" +title: "Start Menu Recommendations" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2209} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2439} "WPFToggleStartMenuRecommendations": { - "Content": "Recommendations in Start Menu", + "Content": "Start Menu Recommendations", "Description": "If disabled, then you will not see recommendations in the Start Menu. WARNING: This will also disable Windows Spotlight on your Lock Screen as a side effect.", "category": "Customize Preferences", "panel": "2", diff --git a/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md b/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md index 0e097cbe..a13cb29d 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md +++ b/docs/content/dev/tweaks/Customize-Preferences/StickyKeys.md @@ -3,7 +3,7 @@ title: "Sticky Keys" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2305} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2483} "WPFToggleStickyKeys": { "Content": "Sticky Keys", "Description": "If enabled, Sticky Keys is activated. Sticky keys is an accessibility feature of some graphical user interfaces which assists users who have physical disabilities or help users reduce repetitive strain injury.", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskView.md b/docs/content/dev/tweaks/Customize-Preferences/TaskView.md index fe8fda2d..91dce1e9 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskView.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskView.md @@ -1,11 +1,11 @@ --- -title: "Task View Button in Taskbar" +title: "Taskbar Task View Icon" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2457} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2547} "WPFToggleTaskView": { - "Content": "Task View Button in Taskbar", + "Content": "Taskbar Task View Icon", "Description": "If enabled, Task View Button in Taskbar will be shown.", "category": "Customize Preferences", "panel": "2", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md b/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md index 5a41a687..805e0fab 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskbarAlignment.md @@ -1,11 +1,11 @@ --- -title: "Center Taskbar Items" +title: "Taskbar Centered Icons" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2475} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2501} "WPFToggleTaskbarAlignment": { - "Content": "Center Taskbar Items", + "Content": "Taskbar Centered Icons", "Description": "[Windows 11] If enabled, the Taskbar Items will be shown on the Center, otherwise the Taskbar Items will be shown on the Left.", "category": "Customize Preferences", "panel": "2", diff --git a/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md b/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md index 07c3f9dd..43ad0e17 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md +++ b/docs/content/dev/tweaks/Customize-Preferences/TaskbarSearch.md @@ -1,11 +1,11 @@ --- -title: "Search Button in Taskbar" +title: "Taskbar Search Icon" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2439} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2529} "WPFToggleTaskbarSearch": { - "Content": "Search Button in Taskbar", + "Content": "Taskbar Search Icon", "Description": "If enabled, Search Button will be on the Taskbar.", "category": "Customize Preferences", "panel": "2", diff --git a/docs/content/dev/tweaks/Customize-Preferences/VerboseLogon.md b/docs/content/dev/tweaks/Customize-Preferences/VerboseLogon.md index d208db45..f58674e7 100644 --- a/docs/content/dev/tweaks/Customize-Preferences/VerboseLogon.md +++ b/docs/content/dev/tweaks/Customize-Preferences/VerboseLogon.md @@ -1,11 +1,11 @@ --- -title: "Verbose Messages During Logon" +title: "Logon Verbose Mode" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2173} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2211} "WPFToggleVerboseLogon": { - "Content": "Verbose Messages During Logon", + "Content": "Logon Verbose Mode", "Description": "Show detailed messages during the login process for troubleshooting and diagnostics.", "category": "Customize Preferences", "panel": "2", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Activity.md b/docs/content/dev/tweaks/Essential-Tweaks/Activity.md index a7d56ca6..ca47cfcc 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/Activity.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/Activity.md @@ -1,11 +1,11 @@ --- -title: "Disable Activity History" +title: "Activity History - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=2} "WPFTweaksActivity": { - "Content": "Disable Activity History", + "Content": "Activity History - Disable", "Description": "Erases recent docs, clipboard, and run history.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/ConsumerFeatures.md b/docs/content/dev/tweaks/Essential-Tweaks/ConsumerFeatures.md index c2d76d68..a70e21ae 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/ConsumerFeatures.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/ConsumerFeatures.md @@ -1,11 +1,11 @@ --- -title: "Disable ConsumerFeatures" +title: "ConsumerFeatures - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1317} "WPFTweaksConsumerFeatures": { - "Content": "Disable ConsumerFeatures", + "Content": "ConsumerFeatures - Disable", "Description": "Windows will not automatically install any games, third-party apps, or application links from the Windows Store for the signed-in user. Some default Apps will be inaccessible (eg. Phone Link).", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/DeleteTempFiles.md b/docs/content/dev/tweaks/Essential-Tweaks/DeleteTempFiles.md index 85224e39..7a8ac114 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/DeleteTempFiles.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/DeleteTempFiles.md @@ -1,11 +1,11 @@ --- -title: "Delete Temporary Files" +title: "Temporary Files - Remove" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1964} "WPFTweaksDeleteTempFiles": { - "Content": "Delete Temporary Files", + "Content": "Temporary Files - Remove", "Description": "Erases TEMP Folders.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md b/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md index 0f761779..b42ce687 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/DisableExplorerAutoDiscovery.md @@ -1,11 +1,11 @@ --- -title: "Disable Explorer Automatic Folder Discovery" +title: "File Explorer Automatic Folder Discovery - Disable" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2578} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2596} "WPFTweaksDisableExplorerAutoDiscovery": { - "Content": "Disable Explorer Automatic Folder Discovery", + "Content": "File Explorer Automatic Folder Discovery - Disable", "Description": "Windows Explorer automatically tries to guess the type of the folder based on its contents, slowing down the browsing experience. WARNING! Will disable File Explorer grouping.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/DisableStoreSearch.md b/docs/content/dev/tweaks/Essential-Tweaks/DisableStoreSearch.md index 059ae242..a936019b 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/DisableStoreSearch.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/DisableStoreSearch.md @@ -1,11 +1,11 @@ --- -title: "Disable Microsoft Store search results" +title: "Microsoft Store Recommended Search Results - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=125} "WPFTweaksDisableStoreSearch": { - "Content": "Disable Microsoft Store search results", + "Content": "Microsoft Store Recommended Search Results - Disable", "Description": "Will not display recommended Microsoft Store apps when searching for apps in the Start menu.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/DiskCleanup.md b/docs/content/dev/tweaks/Essential-Tweaks/DiskCleanup.md index 4ac52837..91353726 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/DiskCleanup.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/DiskCleanup.md @@ -1,11 +1,11 @@ --- -title: "Run Disk Cleanup" +title: "Disk Cleanup - Run" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1951} "WPFTweaksDiskCleanup": { - "Content": "Run Disk Cleanup", + "Content": "Disk Cleanup - Run", "Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/EndTaskOnTaskbar.md b/docs/content/dev/tweaks/Essential-Tweaks/EndTaskOnTaskbar.md index 7bcfa840..f977a1f3 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/EndTaskOnTaskbar.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/EndTaskOnTaskbar.md @@ -1,11 +1,11 @@ --- -title: "Enable End Task With Right Click" +title: "End Task With Right Click - Enable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1747} "WPFTweaksEndTaskOnTaskbar": { - "Content": "Enable End Task With Right Click", + "Content": "End Task With Right Click - Enable", "Description": "Enables option to end task when right clicking a program in the taskbar.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Hiber.md b/docs/content/dev/tweaks/Essential-Tweaks/Hiber.md index 254f7dbc..16ce8811 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/Hiber.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/Hiber.md @@ -1,11 +1,11 @@ --- -title: "Disable Hibernation" +title: "Hibernation - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=32} "WPFTweaksHiber": { - "Content": "Disable Hibernation", + "Content": "Hibernation - Disable", "Description": "Hibernation is really meant for laptops as it saves what's in memory before turning the PC off. It really should never be used.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Location.md b/docs/content/dev/tweaks/Essential-Tweaks/Location.md index 527491fc..1cd54d6e 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/Location.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/Location.md @@ -1,11 +1,11 @@ --- -title: "Disable Location Tracking" +title: "Location Tracking - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=138} "WPFTweaksLocation": { - "Content": "Disable Location Tracking", + "Content": "Location Tracking - Disable", "Description": "Disables Location Tracking.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Powershell7Tele.md b/docs/content/dev/tweaks/Essential-Tweaks/Powershell7Tele.md index 5907a1e4..95d76def 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/Powershell7Tele.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/Powershell7Tele.md @@ -1,11 +1,11 @@ --- -title: "Disable PowerShell 7 Telemetry" +title: "PowerShell 7 Telemetry - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1763} "WPFTweaksPowershell7Tele": { - "Content": "Disable PowerShell 7 Telemetry", + "Content": "PowerShell 7 Telemetry - Disable", "Description": "Creates an Environment Variable called 'POWERSHELL_TELEMETRY_OPTOUT' with a value of '1' which will tell PowerShell 7 to not send Telemetry Data.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/RestorePoint.md b/docs/content/dev/tweaks/Essential-Tweaks/RestorePoint.md index 27cf1908..68ec1a38 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/RestorePoint.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/RestorePoint.md @@ -1,11 +1,11 @@ --- -title: "Create Restore Point" +title: "Restore Point - Create" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1720} "WPFTweaksRestorePoint": { - "Content": "Create Restore Point", + "Content": "Restore Point - Create", "Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/RevertStartMenu.md b/docs/content/dev/tweaks/Essential-Tweaks/RevertStartMenu.md index 64d063b5..84d2724e 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/RevertStartMenu.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/RevertStartMenu.md @@ -1,11 +1,11 @@ --- -title: "Revert Start Menu layout" +title: "Start Menu Previous Layout - Enable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=90} "WPFTweaksRevertStartMenu": { - "Content": "Revert Start Menu layout", + "Content": "Start Menu Previous Layout - Enable", "Description": "Bring back the old Start Menu layout from before the gradual rollout of the new one in 25H2.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Services.md b/docs/content/dev/tweaks/Essential-Tweaks/Services.md index 151b8978..986e89ea 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/Services.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/Services.md @@ -1,11 +1,11 @@ --- -title: "Set Services to Manual" +title: "Services - Set to Manual" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=175} "WPFTweaksServices": { - "Content": "Set Services to Manual", + "Content": "Services - Set to Manual", "Description": "Turns a bunch of system services to manual that don't need to be running all the time. This is pretty harmless as if the service is needed, it will simply start on demand.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Telemetry.md b/docs/content/dev/tweaks/Essential-Tweaks/Telemetry.md index ef93d547..7c9a8902 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/Telemetry.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/Telemetry.md @@ -1,11 +1,11 @@ --- -title: "Disable Telemetry" +title: "Telemetry - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1333} "WPFTweaksTelemetry": { - "Content": "Disable Telemetry", + "Content": "Telemetry - Disable", "Description": "Disables Microsoft Telemetry.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/WPBT.md b/docs/content/dev/tweaks/Essential-Tweaks/WPBT.md index de79a76e..8bc465ef 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/WPBT.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/WPBT.md @@ -1,11 +1,11 @@ --- -title: "Disable Windows Platform Binary Table (WPBT)" +title: "Windows Platform Binary Table (WPBT) - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1819} "WPFTweaksWPBT": { - "Content": "Disable Windows Platform Binary Table (WPBT)", + "Content": "Windows Platform Binary Table (WPBT) - Disable", "Description": "If enabled, WPBT allows your computer vendor to execute programs at boot time, such as anti-theft software, software drivers, as well as force install software without user consent. Poses potential security risk.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Essential-Tweaks/Widget.md b/docs/content/dev/tweaks/Essential-Tweaks/Widget.md index 422c34ac..314c9548 100644 --- a/docs/content/dev/tweaks/Essential-Tweaks/Widget.md +++ b/docs/content/dev/tweaks/Essential-Tweaks/Widget.md @@ -1,11 +1,11 @@ --- -title: "Remove Widgets" +title: "Widgets - Remove" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=61} "WPFTweaksWidget": { - "Content": "Remove Widgets", + "Content": "Widgets - Remove", "Description": "Removes the annoying widgets in the bottom left of the Taskbar.", "category": "Essential Tweaks", "panel": "1", diff --git a/docs/content/dev/tweaks/Performance-Plans/AddUltPerf.md b/docs/content/dev/tweaks/Performance-Plans/AddUltPerf.md index 1eb2f3f5..c8166060 100644 --- a/docs/content/dev/tweaks/Performance-Plans/AddUltPerf.md +++ b/docs/content/dev/tweaks/Performance-Plans/AddUltPerf.md @@ -1,5 +1,5 @@ --- -title: "Add and Activate Ultimate Performance Profile" +title: "Ultimate Performance Profile - Enable" description: "" --- diff --git a/docs/content/dev/tweaks/Performance-Plans/RemoveUltPerf.md b/docs/content/dev/tweaks/Performance-Plans/RemoveUltPerf.md index 7cf32057..d16e1780 100644 --- a/docs/content/dev/tweaks/Performance-Plans/RemoveUltPerf.md +++ b/docs/content/dev/tweaks/Performance-Plans/RemoveUltPerf.md @@ -1,5 +1,5 @@ --- -title: "Remove Ultimate Performance Profile" +title: "Ultimate Performance Profile - Disable" description: "" --- diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md index e4a0b327..66fc6582 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BlockAdobeNet.md @@ -1,11 +1,11 @@ --- -title: "Adobe Network Block" +title: "Adobe URL Block List - Enable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1899} "WPFTweaksBlockAdobeNet": { - "Content": "Adobe Network Block", + "Content": "Adobe URL Block List - Enable", "Description": "Reduces user interruptions by selectively blocking connections to Adobe's activation and telemetry servers. Credit: Ruddernation-Designs", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BraveDebloat.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BraveDebloat.md index 46c675b8..65a1439a 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BraveDebloat.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/BraveDebloat.md @@ -1,11 +1,11 @@ --- -title: "Brave Debloat" +title: "Brave Browser - Debloat" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1145} "WPFTweaksBraveDebloat": { - "Content": "Brave Debloat", + "Content": "Brave Browser - Debloat", "Description": "Disables various annoyances like Brave Rewards, Leo AI, Crypto Wallet and VPN.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md index 68eab245..7574e2f5 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DeBloat.md @@ -1,11 +1,11 @@ --- -title: "Remove Unwanted Pre-Installed Apps" +title: "Unwanted Pre-Installed Apps - Remove" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1679} "WPFTweaksDeBloat": { - "Content": "Remove Unwanted Pre-Installed Apps", + "Content": "Unwanted Pre-Installed Apps - Remove", "Description": "This will remove a bunch of Windows pre-installed applications which most people dont want on there system.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableBGapps.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableBGapps.md index 65ff6558..f0b8c49f 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableBGapps.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableBGapps.md @@ -1,11 +1,11 @@ --- -title: "Disable Background Apps" +title: "Background Apps - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=2037} "WPFTweaksDisableBGapps": { - "Content": "Disable Background Apps", + "Content": "Background Apps - Disable", "Description": "Disables all Microsoft Store apps from running in the background, which has to be done individually since Windows 11.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableFSO.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableFSO.md index 733150f6..9c611261 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableFSO.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableFSO.md @@ -1,11 +1,11 @@ --- -title: "Disable Fullscreen Optimizations" +title: "Fullscreen Optimizations - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=2053} "WPFTweaksDisableFSO": { - "Content": "Disable Fullscreen Optimizations", + "Content": "Fullscreen Optimizations - Disable", "Description": "Disables FSO in all applications. NOTE: This will disable Color Management in Exclusive Fullscreen.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableIPv6.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableIPv6.md index ec791624..567bfb9f 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableIPv6.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableIPv6.md @@ -1,11 +1,11 @@ --- -title: "Disable IPv6" +title: "IPv6 - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=2015} "WPFTweaksDisableIPv6": { - "Content": "Disable IPv6", + "Content": "IPv6 - Disable", "Description": "Disables IPv6.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableNotifications.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableNotifications.md index 1f36f29c..52b8809f 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableNotifications.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/DisableNotifications.md @@ -1,11 +1,11 @@ --- -title: "Disable Notification Tray/Calendar" +title: "Notification Tray & Calendar - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1876} "WPFTweaksDisableNotifications": { - "Content": "Disable Notification Tray/Calendar", + "Content": "Notification Tray & Calendar - Disable", "Description": "Disables all Notifications INCLUDING Calendar.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Display.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Display.md index 61cf4336..b17e6e1d 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Display.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Display.md @@ -1,11 +1,11 @@ --- -title: "Set Display for Performance" +title: "Visual Effects - Set to Best Performance" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1557} "WPFTweaksDisplay": { - "Content": "Set Display for Performance", + "Content": "Visual Effects - Set to Best Performance", "Description": "Sets the system preferences to performance. You can do this manually with sysdm.cpl as well.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/EdgeDebloat.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/EdgeDebloat.md index 547f3d2d..95bcd174 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/EdgeDebloat.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/EdgeDebloat.md @@ -1,11 +1,11 @@ --- -title: "Edge Debloat" +title: "Microsoft Edge - Debloat" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1189} "WPFTweaksEdgeDebloat": { - "Content": "Edge Debloat", + "Content": "Microsoft Edge - Debloat", "Description": "Disables various telemetry options, popups, and other annoyances in Edge.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/IPv46.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/IPv46.md index 18c7b8e3..96ac29c0 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/IPv46.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/IPv46.md @@ -1,11 +1,11 @@ --- -title: "Prefer IPv4 over IPv6" +title: "IPv6 - Set IPv4 as Preferred" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1977} "WPFTweaksIPv46": { - "Content": "Prefer IPv4 over IPv6", + "Content": "IPv6 - Set IPv4 as Preferred", "Description": "Setting the IPv4 preference can have latency and security benefits on private networks where IPv6 is not configured.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton.md index c0f014ba..e2323b03 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton.md @@ -1,5 +1,5 @@ --- -title: "Run OO Shutup 10" +title: "OO Shutup 10 - Run" description: "" --- diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RazerBlock.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RazerBlock.md index 68dc2860..cfe2741a 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RazerBlock.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RazerBlock.md @@ -1,11 +1,11 @@ --- -title: "Block Razer Software Installs" +title: "Razer Software Auto-Install - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1835} "WPFTweaksRazerBlock": { - "Content": "Block Razer Software Installs", + "Content": "Razer Software Auto-Install - Disable", "Description": "Blocks ALL Razer Software installations. The hardware works fine without any software.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md index 9bb151a9..1af08415 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveCopilot.md @@ -1,11 +1,11 @@ --- -title: "Remove Microsoft Copilot" +title: "Microsoft Copilot - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1792} "WPFTweaksRemoveCopilot": { - "Content": "Remove Microsoft Copilot", + "Content": "Microsoft Copilot - Disable", "Description": "Removes Copilot AppXPackages and related ai packages", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md index b7140a60..a478957a 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveEdge.md @@ -1,11 +1,11 @@ --- -title: "Remove Microsoft Edge" +title: "Microsoft Edge - Remove" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1452} "WPFTweaksRemoveEdge": { - "Content": "Remove Microsoft Edge", + "Content": "Microsoft Edge - Remove", "Description": "Unblocks Microsoft Edge uninstaller restrictions then uses that uninstaller to remove Microsoft Edge.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveGallery.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveGallery.md index 12c883bb..09124cf8 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveGallery.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveGallery.md @@ -1,11 +1,11 @@ --- -title: "Remove Gallery from Explorer" +title: "File Explorer Gallery - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1540} "WPFTweaksRemoveGallery": { - "Content": "Remove Gallery from Explorer", + "Content": "File Explorer Gallery - Disable", "Description": "Removes the Gallery from Explorer and sets This PC as default.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHome.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHome.md index dd923744..f7b5b465 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHome.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveHome.md @@ -1,11 +1,11 @@ --- -title: "Remove Home from Explorer" +title: "File Explorer Home - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1521} "WPFTweaksRemoveHome": { - "Content": "Remove Home from Explorer", + "Content": "File Explorer Home - Disable", "Description": "Removes the Home from Explorer and sets This PC as default.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md index 0be43ca4..916c0cf2 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RemoveOneDrive.md @@ -1,11 +1,11 @@ --- -title: "Remove OneDrive" +title: "Microsoft OneDrive - Remove" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1484} "WPFTweaksRemoveOneDrive": { - "Content": "Remove OneDrive", + "Content": "Microsoft OneDrive - Remove", "Description": "Denies permission to remove OneDrive user files, then uses its own uninstaller to remove it and restores the original permission afterward.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md index 7683210c..007b862d 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/RightClickMenu.md @@ -1,11 +1,11 @@ --- -title: "Set Classic Right-Click Menu" +title: "Right-Click Menu Previous Layout - Enable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1929} "WPFTweaksRightClickMenu": { - "Content": "Set Classic Right-Click Menu", + "Content": "Right-Click Menu Previous Layout - Enable", "Description": "Restores the classic context menu when right-clicking in File Explorer, replacing the simplified Windows 11 version.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Storage.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Storage.md index 3029403c..e30b36a4 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Storage.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Storage.md @@ -1,11 +1,11 @@ --- -title: "Disable Storage Sense" +title: "Storage Sense - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1776} "WPFTweaksStorage": { - "Content": "Disable Storage Sense", + "Content": "Storage Sense - Disable", "Description": "Storage Sense deletes temp files automatically.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Teredo.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Teredo.md index f2ad70b6..f880a7ca 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Teredo.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/Teredo.md @@ -1,11 +1,11 @@ --- -title: "Disable Teredo" +title: "Teredo - Disable" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1993} "WPFTweaksTeredo": { - "Content": "Disable Teredo", + "Content": "Teredo - Disable", "Description": "Teredo network tunneling is an IPv6 feature that can cause additional latency, but may cause problems with some games.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC.md index 77cd4e44..ce3b349c 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/UTC.md @@ -1,11 +1,11 @@ --- -title: "Set Time to UTC (Dual Boot)" +title: "Date & Time - Set Time to UTC" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1468} "WPFTweaksUTC": { - "Content": "Set Time to UTC (Dual Boot)", + "Content": "Date & Time - Set Time to UTC", "Description": "Essential for computers that are dual booting. Fixes the time sync with Linux systems.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/XboxRemoval.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/XboxRemoval.md index 03a9ca17..364418e8 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/XboxRemoval.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/XboxRemoval.md @@ -1,11 +1,11 @@ --- -title: "Remove Xbox & Gaming Components" +title: "Xbox & Gaming Components - Remove" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1656} "WPFTweaksXboxRemoval": { - "Content": "Remove Xbox & Gaming Components", + "Content": "Xbox & Gaming Components - Remove", "Description": "Removes Xbox services, the Xbox app, Game Bar, and related authentication components.", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", diff --git a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md index 1331b10f..2da51abc 100644 --- a/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md +++ b/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/changedns.md @@ -1,11 +1,11 @@ --- -title: "DNS" +title: "DNS - Set to:" description: "" --- -```json {filename="config/tweaks.json",linenos=inline,linenostart=2554} +```json {filename="config/tweaks.json",linenos=inline,linenostart=2572} "WPFchangedns": { - "Content": "DNS", + "Content": "DNS - Set to:", "category": "z__Advanced Tweaks - CAUTION", "panel": "1", "Type": "Combobox", From 99b7d94b08ae7f1090b3ac20cab170840f8180c4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 09:04:52 -0500 Subject: [PATCH 21/22] Update sponsors in README (#4361) Co-authored-by: ChrisTitusTech <7896101+ChrisTitusTech@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 26714596..7b0ecd1b 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ You'll see a new file named `winutil.ps1`, which was created by `Compile.ps1` sc These are the sponsors that help keep this project alive with monthly contributions. -User avatar: User avatar: Martin StockzellUser avatar: Jason A. DiegmuellerUser avatar: RMSUser avatar: PaulUser avatar: Dave J  (WhamGeek)User avatar: Anthony MendezUser avatar: User avatar: DursleyGuyUser avatar: User avatar: Kiera MeredithUser avatar: Miguel DiazUser avatar: Andrew PUser avatar: Di3Z1E +User avatar: User avatar: Martin StockzellUser avatar: Jason A. DiegmuellerUser avatar: RMSUser avatar: PaulUser avatar: Dave J  (WhamGeek)User avatar: Anthony MendezUser avatar: User avatar: DursleyGuyUser avatar: User avatar: Kiera MeredithUser avatar: Miguel DiazUser avatar: Andrew PUser avatar: Di3Z1EUser avatar: Abdul Vakeel Software Engineer ## 🏅 Thanks to all Contributors Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻. From 9d777842f71557857c01772ebe1b17ee4568d15d Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Fri, 17 Apr 2026 17:05:15 +0300 Subject: [PATCH 22/22] Changes policyplus category to Utilities (#4375) --- config/applications.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/applications.json b/config/applications.json index 150d1f8a..050021fb 100644 --- a/config/applications.json +++ b/config/applications.json @@ -2043,7 +2043,7 @@ "foss": true }, "policyplus": { - "category": "Multimedia Tools", + "category": "Utilities", "choco": "na", "content": "Policy Plus", "description": "Local Group Policy Editor plus more, for all Windows editions.",