mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-04-20 02:34:34 +10:00
Compare commits
51 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9d777842f7 | ||
|
|
99b7d94b08 | ||
|
|
f31e5eb2ac | ||
|
|
a8efcc9c96 | ||
|
|
747b6f8ca1 | ||
|
|
26959b0e63 | ||
|
|
c5fc9490a8 | ||
|
|
5902b0bd64 | ||
|
|
5dc8547dad | ||
|
|
d736bc4305 | ||
|
|
a4d0f36ed5 | ||
|
|
e1e077c69b | ||
|
|
8e2dc21823 | ||
|
|
8378fd5377 | ||
|
|
eb08eae357 | ||
|
|
4783e71750 | ||
|
|
805a004a3a | ||
|
|
780ea84e9e | ||
|
|
f47dcb01d2 | ||
|
|
4ab1681eb8 | ||
|
|
ed6ee897d5 | ||
|
|
5516be2464 | ||
|
|
9f972fdac1 | ||
|
|
c453f260cf | ||
|
|
98eba09986 | ||
|
|
61bce6afda | ||
|
|
419b150220 | ||
|
|
372fa0159a | ||
|
|
406d6fdfc4 | ||
|
|
e30c0a4c27 | ||
|
|
3d300f6634 | ||
|
|
a72c0770dd | ||
|
|
811cc126e6 | ||
|
|
3ceea1b9c1 | ||
|
|
0cd971d992 | ||
|
|
e077fc7e21 | ||
|
|
0abac833ce | ||
|
|
a0fdf2cb80 | ||
|
|
b8f1671ff7 | ||
|
|
0536047200 | ||
|
|
2a4bff017d | ||
|
|
68d6ca7edc | ||
|
|
00fbd0e86d | ||
|
|
c24ea5e53b | ||
|
|
786c7c677d | ||
|
|
c9e9214fd6 | ||
|
|
b7f6a8cebe | ||
|
|
355bd17b88 | ||
|
|
6198bb2cdd | ||
|
|
6a495411e8 | ||
|
|
8f830a59df |
4
.github/CONTRIBUTING.md
vendored
4
.github/CONTRIBUTING.md
vendored
@@ -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.
|
* 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"
|
!!! 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 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.
|
* 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.
|
* By following these guidelines, we can maintain a high standard of quality and ensure that the codebase remains organized and well-documented.
|
||||||
|
|||||||
2
.github/workflows/label-pr.yaml
vendored
2
.github/workflows/label-pr.yaml
vendored
@@ -13,7 +13,7 @@ jobs:
|
|||||||
contents: read # Often needed for github-script
|
contents: read # Often needed for github-script
|
||||||
steps:
|
steps:
|
||||||
- name: Check PR body for Type of Change
|
- name: Check PR body for Type of Change
|
||||||
uses: actions/github-script@v8
|
uses: actions/github-script@v9
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
const prBody = context.payload.pull_request.body || '';
|
const prBody = context.payload.pull_request.body || '';
|
||||||
|
|||||||
6
.github/workflows/pre-release.yaml
vendored
6
.github/workflows/pre-release.yaml
vendored
@@ -83,7 +83,7 @@ jobs:
|
|||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
- name: Upload compiled script
|
- name: Upload compiled script
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: winutil-ps1
|
name: winutil-ps1
|
||||||
path: ./winutil.ps1
|
path: ./winutil.ps1
|
||||||
@@ -93,7 +93,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Download compiled script
|
- name: Download compiled script
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v8
|
||||||
with:
|
with:
|
||||||
name: winutil-ps1
|
name: winutil-ps1
|
||||||
|
|
||||||
@@ -111,7 +111,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Create and Upload Release
|
- name: Create and Upload Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v3
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ env.VERSION }}
|
tag_name: ${{ env.VERSION }}
|
||||||
name: Pre-Release ${{ env.VERSION }}
|
name: Pre-Release ${{ env.VERSION }}
|
||||||
|
|||||||
@@ -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.
|
These are the sponsors that help keep this project alive with monthly contributions.
|
||||||
|
|
||||||
<!-- sponsors --><a href="https://github.com/dwelfusius"><img src="https://github.com/dwelfusius.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/mews-se"><img src="https://github.com/mews-se.png" width="60px" alt="User avatar: Martin Stockzell" /></a><a href="https://github.com/jdiegmueller"><img src="https://github.com/jdiegmueller.png" width="60px" alt="User avatar: Jason A. Diegmueller" /></a><a href="https://github.com/robertsandrock"><img src="https://github.com/robertsandrock.png" width="60px" alt="User avatar: RMS" /></a><a href="https://github.com/paulsheets"><img src="https://github.com/paulsheets.png" width="60px" alt="User avatar: Paul" /></a><a href="https://github.com/djones369"><img src="https://github.com/djones369.png" width="60px" alt="User avatar: Dave J (WhamGeek)" /></a><a href="https://github.com/anthonymendez"><img src="https://github.com/anthonymendez.png" width="60px" alt="User avatar: Anthony Mendez" /></a><a href="https://github.com/FatBastard0"><img src="https://github.com/FatBastard0.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/DursleyGuy"><img src="https://github.com/DursleyGuy.png" width="60px" alt="User avatar: DursleyGuy" /></a><a href="https://github.com/DwayneTheRockLobster1"><img src="https://github.com/DwayneTheRockLobster1.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/KieraKujisawa"><img src="https://github.com/KieraKujisawa.png" width="60px" alt="User avatar: Kiera Meredith" /></a><a href="https://github.com/partybrasil"><img src="https://github.com/partybrasil.png" width="60px" alt="User avatar: Miguel Diaz" /></a><a href="https://github.com/andrewpayne68"><img src="https://github.com/andrewpayne68.png" width="60px" alt="User avatar: Andrew P" /></a><a href="https://github.com/EnzoFerroni"><img src="https://github.com/EnzoFerroni.png" width="60px" alt="User avatar: Enzo Ferroni" /></a><!-- sponsors -->
|
<!-- sponsors --><a href="https://github.com/dwelfusius"><img src="https://github.com/dwelfusius.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/mews-se"><img src="https://github.com/mews-se.png" width="60px" alt="User avatar: Martin Stockzell" /></a><a href="https://github.com/jdiegmueller"><img src="https://github.com/jdiegmueller.png" width="60px" alt="User avatar: Jason A. Diegmueller" /></a><a href="https://github.com/robertsandrock"><img src="https://github.com/robertsandrock.png" width="60px" alt="User avatar: RMS" /></a><a href="https://github.com/paulsheets"><img src="https://github.com/paulsheets.png" width="60px" alt="User avatar: Paul" /></a><a href="https://github.com/djones369"><img src="https://github.com/djones369.png" width="60px" alt="User avatar: Dave J (WhamGeek)" /></a><a href="https://github.com/anthonymendez"><img src="https://github.com/anthonymendez.png" width="60px" alt="User avatar: Anthony Mendez" /></a><a href="https://github.com/FatBastard0"><img src="https://github.com/FatBastard0.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/DursleyGuy"><img src="https://github.com/DursleyGuy.png" width="60px" alt="User avatar: DursleyGuy" /></a><a href="https://github.com/DwayneTheRockLobster1"><img src="https://github.com/DwayneTheRockLobster1.png" width="60px" alt="User avatar: " /></a><a href="https://github.com/KieraKujisawa"><img src="https://github.com/KieraKujisawa.png" width="60px" alt="User avatar: Kiera Meredith" /></a><a href="https://github.com/partybrasil"><img src="https://github.com/partybrasil.png" width="60px" alt="User avatar: Miguel Diaz" /></a><a href="https://github.com/andrewpayne68"><img src="https://github.com/andrewpayne68.png" width="60px" alt="User avatar: Andrew P" /></a><a href="https://github.com/Di3Z1E"><img src="https://github.com/Di3Z1E.png" width="60px" alt="User avatar: Di3Z1E" /></a><a href="https://github.com/AbdulVakeel"><img src="https://github.com/AbdulVakeel.png" width="60px" alt="User avatar: Abdul Vakeel Software Engineer" /></a><!-- sponsors -->
|
||||||
|
|
||||||
## 🏅 Thanks to all Contributors
|
## 🏅 Thanks to all Contributors
|
||||||
Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻.
|
Thanks a lot for spending your time helping Winutil grow. Thanks a lot! Keep rocking 🍻.
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"WPFFeaturesdotnet": {
|
"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.",
|
"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",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/dotnet"
|
"link": "https://winutil.christitus.com/dev/features/features/dotnet"
|
||||||
},
|
},
|
||||||
"WPFFixesNTPPool": {
|
"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.",
|
"Description": "Replaces the default Windows NTP server (time.windows.com) with pool.ntp.org for improved time synchronization accuracy and reliability.",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/fixes/ntppool"
|
"link": "https://winutil.christitus.com/dev/features/fixes/ntppool"
|
||||||
},
|
},
|
||||||
"WPFFeatureshyperv": {
|
"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.",
|
"Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/hyperv"
|
"link": "https://winutil.christitus.com/dev/features/features/hyperv"
|
||||||
},
|
},
|
||||||
"WPFFeatureslegacymedia": {
|
"WPFFeatureslegacymedia": {
|
||||||
"Content": "Legacy Media (WMP, DirectPlay)",
|
"Content": "Legacy Media Components (WMP, DirectPlay) - Enable",
|
||||||
"Description": "Enables legacy programs from previous versions of Windows.",
|
"Description": "Enables legacy programs from previous versions of Windows.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/legacymedia"
|
"link": "https://winutil.christitus.com/dev/features/features/legacymedia"
|
||||||
},
|
},
|
||||||
"WPFFeaturewsl": {
|
"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.",
|
"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",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/wsl"
|
"link": "https://winutil.christitus.com/dev/features/features/wsl"
|
||||||
},
|
},
|
||||||
"WPFFeaturenfs": {
|
"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.",
|
"Description": "Network File System (NFS) is a mechanism for storing files on a network.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/nfs"
|
"link": "https://winutil.christitus.com/dev/features/features/nfs"
|
||||||
},
|
},
|
||||||
"WPFFeatureRegBackup": {
|
"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.",
|
"Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/regbackup"
|
"link": "https://winutil.christitus.com/dev/features/features/regbackup"
|
||||||
},
|
},
|
||||||
"WPFFeatureEnableLegacyRecovery": {
|
"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.",
|
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/enablelegacyrecovery"
|
"link": "https://winutil.christitus.com/dev/features/features/enablelegacyrecovery"
|
||||||
},
|
},
|
||||||
"WPFFeatureDisableLegacyRecovery": {
|
"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.",
|
"Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -119,7 +119,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/disablelegacyrecovery"
|
"link": "https://winutil.christitus.com/dev/features/features/disablelegacyrecovery"
|
||||||
},
|
},
|
||||||
"WPFFeaturesSandbox": {
|
"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.",
|
"Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/sandbox"
|
"link": "https://winutil.christitus.com/dev/features/features/sandbox"
|
||||||
},
|
},
|
||||||
"WPFFeatureInstall": {
|
"WPFFeatureInstall": {
|
||||||
"Content": "Install Features",
|
"Content": "Run Features",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -138,7 +138,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/features/install"
|
"link": "https://winutil.christitus.com/dev/features/features/install"
|
||||||
},
|
},
|
||||||
"WPFPanelAutologin": {
|
"WPFPanelAutologin": {
|
||||||
"Content": "Set Up Autologin",
|
"Content": "Autologin - Enable",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -147,7 +147,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/fixes/autologin"
|
"link": "https://winutil.christitus.com/dev/features/fixes/autologin"
|
||||||
},
|
},
|
||||||
"WPFFixesUpdate": {
|
"WPFFixesUpdate": {
|
||||||
"Content": "Reset Windows Update",
|
"Content": "Windows Update - Reset",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -156,7 +156,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/fixes/update"
|
"link": "https://winutil.christitus.com/dev/features/fixes/update"
|
||||||
},
|
},
|
||||||
"WPFFixesNetwork": {
|
"WPFFixesNetwork": {
|
||||||
"Content": "Reset Network",
|
"Content": "Network - Reset",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -165,7 +165,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/fixes/network"
|
"link": "https://winutil.christitus.com/dev/features/fixes/network"
|
||||||
},
|
},
|
||||||
"WPFPanelDISM": {
|
"WPFPanelDISM": {
|
||||||
"Content": "System Corruption Scan",
|
"Content": "System Corruption Scan - Run",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -174,7 +174,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/fixes/dism"
|
"link": "https://winutil.christitus.com/dev/features/fixes/dism"
|
||||||
},
|
},
|
||||||
"WPFFixesWinget": {
|
"WPFFixesWinget": {
|
||||||
"Content": "WinGet Reinstall",
|
"Content": "WinGet - Reinstall",
|
||||||
"category": "Fixes",
|
"category": "Fixes",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -293,7 +293,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/timedate"
|
"link": "https://winutil.christitus.com/dev/features/legacy-windows-panels/timedate"
|
||||||
},
|
},
|
||||||
"WPFWinUtilInstallPSProfile": {
|
"WPFWinUtilInstallPSProfile": {
|
||||||
"Content": "Install CTT PowerShell Profile",
|
"Content": "CTT PowerShell Profile - Install",
|
||||||
"category": "Powershell Profile Powershell 7+ Only",
|
"category": "Powershell Profile Powershell 7+ Only",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -302,7 +302,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/installpsprofile"
|
"link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/installpsprofile"
|
||||||
},
|
},
|
||||||
"WPFWinUtilUninstallPSProfile": {
|
"WPFWinUtilUninstallPSProfile": {
|
||||||
"Content": "Uninstall CTT PowerShell Profile",
|
"Content": "CTT PowerShell Profile - Remove",
|
||||||
"category": "Powershell Profile Powershell 7+ Only",
|
"category": "Powershell Profile Powershell 7+ Only",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
@@ -311,7 +311,7 @@
|
|||||||
"link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/uninstallpsprofile"
|
"link": "https://winutil.christitus.com/dev/features/powershell-profile-powershell-7--only/uninstallpsprofile"
|
||||||
},
|
},
|
||||||
"WPFWinUtilSSHServer": {
|
"WPFWinUtilSSHServer": {
|
||||||
"Content": "Enable OpenSSH Server",
|
"Content": "OpenSSH Server - Enable",
|
||||||
"category": "Remote Access",
|
"category": "Remote Access",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Button",
|
"Type": "Button",
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -22,46 +22,8 @@ If you are still having issues, try using a **VPN**, or changing your **DNS prov
|
|||||||
|
|
||||||
### Script Won't Run
|
### 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:
|
If you run WinUtil and get the error:
|
||||||
```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 the download fails**:
|
`"WinUtil is unable to run on your system, powershell execution is restricted by security policies,"`
|
||||||
|
|
||||||
1. Try the direct GitHub link:
|
this means that your PowerShell session is in **Constrained Language Mode**, which prevents WinUtil from running.
|
||||||
|
|
||||||
```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.
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Legacy F8 Boot Recovery"
|
title: "Legacy F8 Boot Recovery - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=110}
|
```json {filename="config/feature.json",linenos=inline,linenostart=110}
|
||||||
"WPFFeatureDisableLegacyRecovery": {
|
"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.",
|
"Description": "Disables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Enable Legacy F8 Boot Recovery"
|
title: "Legacy F8 Boot Recovery - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=99}
|
```json {filename="config/feature.json",linenos=inline,linenostart=99}
|
||||||
"WPFFeatureEnableLegacyRecovery": {
|
"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.",
|
"Description": "Enables Advanced Boot Options screen that lets you start Windows in advanced troubleshooting modes.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Enable Daily Registry Backup Task 12.30am"
|
title: "Registry Backup (Daily Task 12:30am) - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=82}
|
```json {filename="config/feature.json",linenos=inline,linenostart=82}
|
||||||
"WPFFeatureRegBackup": {
|
"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.",
|
"Description": "Enables daily registry backup, previously disabled by Microsoft in Windows 10 1803.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Sandbox"
|
title: "Windows Sandbox - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=121}
|
```json {filename="config/feature.json",linenos=inline,linenostart=121}
|
||||||
"WPFFeaturesSandbox": {
|
"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.",
|
"Description": "Windows Sandbox is a lightweight virtual machine that provides a temporary desktop environment to safely run applications and programs in isolation.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "All .Net Framework (2,3,4)"
|
title: ".NET Framework (Versions 2, 3, 4) - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=2}
|
```json {filename="config/feature.json",linenos=inline,linenostart=2}
|
||||||
"WPFFeaturesdotnet": {
|
"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.",
|
"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",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "HyperV Virtualization"
|
title: "Hyper-V - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=24}
|
```json {filename="config/feature.json",linenos=inline,linenostart=24}
|
||||||
"WPFFeatureshyperv": {
|
"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.",
|
"Description": "Hyper-V is a hardware virtualization product developed by Microsoft that allows users to create and manage virtual machines.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Legacy Media (WMP, DirectPlay)"
|
title: "Legacy Media Components (WMP, DirectPlay) - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=37}
|
```json {filename="config/feature.json",linenos=inline,linenostart=37}
|
||||||
"WPFFeatureslegacymedia": {
|
"WPFFeatureslegacymedia": {
|
||||||
"Content": "Legacy Media (WMP, DirectPlay)",
|
"Content": "Legacy Media Components (WMP, DirectPlay) - Enable",
|
||||||
"Description": "Enables legacy programs from previous versions of Windows.",
|
"Description": "Enables legacy programs from previous versions of Windows.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "NFS - Network File System"
|
title: "Network File System (NFS) - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=63}
|
```json {filename="config/feature.json",linenos=inline,linenostart=63}
|
||||||
"WPFFeaturenfs": {
|
"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.",
|
"Description": "Network File System (NFS) is a mechanism for storing files on a network.",
|
||||||
"category": "Features",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Windows Subsystem for Linux"
|
title: "Windows Subsystem for Linux (WSL) - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/feature.json",linenos=inline,linenostart=51}
|
```json {filename="config/feature.json",linenos=inline,linenostart=51}
|
||||||
"WPFFeaturewsl": {
|
"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.",
|
"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",
|
"category": "Features",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Set Up Autologin"
|
title: "Autologin - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "System Corruption Scan"
|
title: "System Corruption Scan - Run"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Configure NTP Server"
|
title: "NTP Server - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Reset Network"
|
title: "Network - Reset"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Reset Windows Update"
|
title: "Windows Update - Reset"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "WinGet Reinstall"
|
title: "WinGet - Reinstall"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Install CTT PowerShell Profile"
|
title: "CTT PowerShell Profile - Install"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Uninstall CTT PowerShell Profile"
|
title: "CTT PowerShell Profile - Remove"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Enable OpenSSH Server"
|
title: "OpenSSH Server - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Bing Search in Start Menu"
|
title: "Start Menu Bing Search"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2214}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2403}
|
||||||
"WPFToggleBingSearch": {
|
"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.",
|
"Description": "If enabled, Bing web search results will be included in your Start Menu search.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Dark Theme for Windows"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2172}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2113}
|
||||||
"WPFToggleDarkMode": {
|
"WPFToggleDarkMode": {
|
||||||
"Content": "Dark Theme for Windows",
|
"Content": "Dark Theme for Windows",
|
||||||
"Description": "Enable/Disable Dark Mode.",
|
"Description": "Enable/Disable Dark Mode.",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Detailed BSoD"
|
title: "BSoD Verbose Mode"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2588}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2087}
|
||||||
"WPFToggleDetailedBSoD": {
|
"WPFToggleDetailedBSoD": {
|
||||||
"Content": "Detailed BSoD",
|
"Content": "BSoD Verbose Mode",
|
||||||
"Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.",
|
"Description": "If enabled, you will see a detailed Blue Screen of Death (BSOD) with more information.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Cross-Device Resume"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2718}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2069}
|
||||||
"WPFToggleDisableCrossDeviceResume": {
|
"WPFToggleDisableCrossDeviceResume": {
|
||||||
"Content": "Cross-Device Resume",
|
"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.",
|
"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.",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Show Hidden Files"
|
title: "File Explorer Hidden Files"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2468}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2183}
|
||||||
"WPFToggleHiddenFiles": {
|
"WPFToggleHiddenFiles": {
|
||||||
"Content": "Show Hidden Files",
|
"Content": "File Explorer Hidden Files",
|
||||||
"Description": "If enabled, Hidden Files will be shown.",
|
"Description": "If enabled, Hidden Files will be shown.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "Remove Settings Home Page"
|
title: "Settings Home Page"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2338}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2385}
|
||||||
"WPFToggleHideSettingsHome": {
|
"WPFToggleHideSettingsHome": {
|
||||||
"Content": "Remove Settings Home Page",
|
"Content": "Settings Home Page",
|
||||||
"Description": "Removes the Home Page in the Windows Settings app.",
|
"Description": "Enable or disable the Home Page in the Windows Settings app.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -14,10 +14,10 @@ description: ""
|
|||||||
{
|
{
|
||||||
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
|
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
|
||||||
"Name": "SettingsPageVisibility",
|
"Name": "SettingsPageVisibility",
|
||||||
"Value": "hide:home",
|
"Value": "show:home",
|
||||||
"Type": "String",
|
"Type": "String",
|
||||||
"OriginalValue": "show:home",
|
"OriginalValue": "hide:home",
|
||||||
"DefaultState": "false"
|
"DefaultState": "true"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|||||||
29
docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md
Normal file
29
docs/content/dev/tweaks/Customize-Preferences/LoginBlur.md
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
title: "Acrylic Blur on Login Screen"
|
||||||
|
description: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
```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.",
|
||||||
|
"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).
|
||||||
@@ -3,7 +3,7 @@ title: "Mouse Acceleration"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2356}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2289}
|
||||||
"WPFToggleMouseAcceleration": {
|
"WPFToggleMouseAcceleration": {
|
||||||
"Content": "Mouse Acceleration",
|
"Content": "Mouse Acceleration",
|
||||||
"Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.",
|
"Description": "If enabled, the Cursor movement is affected by the speed of your physical mouse movements.",
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Multiplane Overlay"
|
title: "Multiplane Overlay"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2450}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2271}
|
||||||
"WPFToggleMultiplaneOverlay": {
|
"WPFToggleMultiplaneOverlay": {
|
||||||
"Content": "Disable Multiplane Overlay",
|
"Content": "Multiplane Overlay",
|
||||||
"Description": "Disable the Multiplane Overlay which can sometimes cause issues with Graphics Cards.",
|
"Description": "Enable or disable the Multiplane Overlay, which can sometimes cause issues with graphics cards.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -14,10 +14,10 @@ description: ""
|
|||||||
{
|
{
|
||||||
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Dwm",
|
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Dwm",
|
||||||
"Name": "OverlayTestMode",
|
"Name": "OverlayTestMode",
|
||||||
"Value": "5",
|
"Value": "0",
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "<RemoveEntry>",
|
"OriginalValue": "5",
|
||||||
"DefaultState": "false"
|
"DefaultState": "true"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "New Outlook"
|
title: "Microsoft Outlook New Version"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2408}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2229}
|
||||||
"WPFToggleNewOutlook": {
|
"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.",
|
"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",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Num Lock on Startup"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2250}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2323}
|
||||||
"WPFToggleNumLock": {
|
"WPFToggleNumLock": {
|
||||||
"Content": "Num Lock on Startup",
|
"Content": "Num Lock on Startup",
|
||||||
"Description": "Toggle the Num Lock key state when your computer starts.",
|
"Description": "Toggle the Num Lock key state when your computer starts.",
|
||||||
@@ -15,7 +15,7 @@ description: ""
|
|||||||
"Path": "HKU:\\.Default\\Control Panel\\Keyboard",
|
"Path": "HKU:\\.Default\\Control Panel\\Keyboard",
|
||||||
"Name": "InitialKeyboardIndicators",
|
"Name": "InitialKeyboardIndicators",
|
||||||
"Value": "2",
|
"Value": "2",
|
||||||
"Type": "DWord",
|
"Type": "String",
|
||||||
"OriginalValue": "0",
|
"OriginalValue": "0",
|
||||||
"DefaultState": "false"
|
"DefaultState": "false"
|
||||||
},
|
},
|
||||||
@@ -23,7 +23,7 @@ description: ""
|
|||||||
"Path": "HKCU:\\Control Panel\\Keyboard",
|
"Path": "HKCU:\\Control Panel\\Keyboard",
|
||||||
"Name": "InitialKeyboardIndicators",
|
"Name": "InitialKeyboardIndicators",
|
||||||
"Value": "2",
|
"Value": "2",
|
||||||
"Type": "DWord",
|
"Type": "String",
|
||||||
"OriginalValue": "0",
|
"OriginalValue": "0",
|
||||||
"DefaultState": "false"
|
"DefaultState": "false"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "S3 Sleep"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2614}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2367}
|
||||||
"WPFToggleS3Sleep": {
|
"WPFToggleS3Sleep": {
|
||||||
"Content": "S3 Sleep",
|
"Content": "S3 Sleep",
|
||||||
"Description": "Toggles between Modern Standby and S3 Sleep.",
|
"Description": "Toggles between Modern Standby and S3 Sleep.",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Show File Extensions"
|
title: "File Explorer File Extensions"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2496}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2155}
|
||||||
"WPFToggleShowExt": {
|
"WPFToggleShowExt": {
|
||||||
"Content": "Show File Extensions",
|
"Content": "File Explorer File Extensions",
|
||||||
"Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.",
|
"Description": "If enabled, File extensions (e.g., .txt, .jpg) are visible.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: "Modern Standby fix"
|
title: "S0 Sleep Network Connectivity"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2232}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2349}
|
||||||
"WPFToggleStandbyFix": {
|
"WPFToggleStandbyFix": {
|
||||||
"Content": "Modern Standby fix",
|
"Content": "S0 Sleep Network Connectivity",
|
||||||
"Description": "Disable network connection during S0 Sleep. If network connectivity is turned on during S0 Sleep it could cause overheating on modern laptops.",
|
"Description": "Enable or disable network connectivity during S0 Sleep.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
"Type": "Toggle",
|
"Type": "Toggle",
|
||||||
@@ -14,9 +14,9 @@ description: ""
|
|||||||
{
|
{
|
||||||
"Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Power\\PowerSettings\\f15576e8-98b7-4186-b944-eafa664402d9",
|
"Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Power\\PowerSettings\\f15576e8-98b7-4186-b944-eafa664402d9",
|
||||||
"Name": "ACSettingIndex",
|
"Name": "ACSettingIndex",
|
||||||
"Value": "0",
|
"Value": "1",
|
||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "<RemoveEntry>",
|
"OriginalValue": "0",
|
||||||
"DefaultState": "true"
|
"DefaultState": "true"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Recommendations in Start Menu"
|
title: "Start Menu Recommendations"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2294}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2439}
|
||||||
"WPFToggleStartMenuRecommendations": {
|
"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.",
|
"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",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: "Sticky Keys"
|
|||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2390}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2483}
|
||||||
"WPFToggleStickyKeys": {
|
"WPFToggleStickyKeys": {
|
||||||
"Content": "Sticky Keys",
|
"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.",
|
"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.",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Task View Button in Taskbar"
|
title: "Taskbar Task View Icon"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2542}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2547}
|
||||||
"WPFToggleTaskView": {
|
"WPFToggleTaskView": {
|
||||||
"Content": "Task View Button in Taskbar",
|
"Content": "Taskbar Task View Icon",
|
||||||
"Description": "If enabled, Task View Button in Taskbar will be shown.",
|
"Description": "If enabled, Task View Button in Taskbar will be shown.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Center Taskbar Items"
|
title: "Taskbar Centered Icons"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2560}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2501}
|
||||||
"WPFToggleTaskbarAlignment": {
|
"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.",
|
"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",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Search Button in Taskbar"
|
title: "Taskbar Search Icon"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2524}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2529}
|
||||||
"WPFToggleTaskbarSearch": {
|
"WPFToggleTaskbarSearch": {
|
||||||
"Content": "Search Button in Taskbar",
|
"Content": "Taskbar Search Icon",
|
||||||
"Description": "If enabled, Search Button will be on the Taskbar.",
|
"Description": "If enabled, Search Button will be on the Taskbar.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Verbose Messages During Logon"
|
title: "Logon Verbose Mode"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2276}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2211}
|
||||||
"WPFToggleVerboseLogon": {
|
"WPFToggleVerboseLogon": {
|
||||||
"Content": "Verbose Messages During Logon",
|
"Content": "Logon Verbose Mode",
|
||||||
"Description": "Show detailed messages during the login process for troubleshooting and diagnostics.",
|
"Description": "Show detailed messages during the login process for troubleshooting and diagnostics.",
|
||||||
"category": "Customize Preferences",
|
"category": "Customize Preferences",
|
||||||
"panel": "2",
|
"panel": "2",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Activity History"
|
title: "Activity History - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2}
|
||||||
"WPFTweaksActivity": {
|
"WPFTweaksActivity": {
|
||||||
"Content": "Disable Activity History",
|
"Content": "Activity History - Disable",
|
||||||
"Description": "Erases recent docs, clipboard, and run history.",
|
"Description": "Erases recent docs, clipboard, and run history.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable ConsumerFeatures"
|
title: "ConsumerFeatures - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1311}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1317}
|
||||||
"WPFTweaksConsumerFeatures": {
|
"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).",
|
"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",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Delete Temporary Files"
|
title: "Temporary Files - Remove"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2067}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1964}
|
||||||
"WPFTweaksDeleteTempFiles": {
|
"WPFTweaksDeleteTempFiles": {
|
||||||
"Content": "Delete Temporary Files",
|
"Content": "Temporary Files - Remove",
|
||||||
"Description": "Erases TEMP Folders.",
|
"Description": "Erases TEMP Folders.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Explorer Automatic Folder Discovery"
|
title: "File Explorer Automatic Folder Discovery - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2663}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2596}
|
||||||
"WPFTweaksDisableExplorerAutoDiscovery": {
|
"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.",
|
"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",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Microsoft Store search results"
|
title: "Microsoft Store Recommended Search Results - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=125}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=125}
|
||||||
"WPFTweaksDisableStoreSearch": {
|
"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.",
|
"Description": "Will not display recommended Microsoft Store apps when searching for apps in the Start menu.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Run Disk Cleanup"
|
title: "Disk Cleanup - Run"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2054}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1951}
|
||||||
"WPFTweaksDiskCleanup": {
|
"WPFTweaksDiskCleanup": {
|
||||||
"Content": "Run Disk Cleanup",
|
"Content": "Disk Cleanup - Run",
|
||||||
"Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.",
|
"Description": "Runs Disk Cleanup on Drive C: and removes old Windows Updates.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Enable End Task With Right Click"
|
title: "End Task With Right Click - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1792}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1747}
|
||||||
"WPFTweaksEndTaskOnTaskbar": {
|
"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.",
|
"Description": "Enables option to end task when right clicking a program in the taskbar.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Hibernation"
|
title: "Hibernation - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=32}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=32}
|
||||||
"WPFTweaksHiber": {
|
"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.",
|
"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",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,14 +1,21 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Location Tracking"
|
title: "Location Tracking - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=138}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=138}
|
||||||
"WPFTweaksLocation": {
|
"WPFTweaksLocation": {
|
||||||
"Content": "Disable Location Tracking",
|
"Content": "Location Tracking - Disable",
|
||||||
"Description": "Disables Location Tracking.",
|
"Description": "Disables Location Tracking.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
"service": [
|
||||||
|
{
|
||||||
|
"Name": "lfsvc",
|
||||||
|
"StartupType": "Disable",
|
||||||
|
"OriginalType": "Manual"
|
||||||
|
}
|
||||||
|
],
|
||||||
"registry": [
|
"registry": [
|
||||||
{
|
{
|
||||||
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\ConsentStore\\location",
|
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\ConsentStore\\location",
|
||||||
@@ -24,13 +31,6 @@ description: ""
|
|||||||
"Type": "DWord",
|
"Type": "DWord",
|
||||||
"OriginalValue": "1"
|
"OriginalValue": "1"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\lfsvc\\Service\\Configuration",
|
|
||||||
"Name": "Status",
|
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "1"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Path": "HKLM:\\SYSTEM\\Maps",
|
"Path": "HKLM:\\SYSTEM\\Maps",
|
||||||
"Name": "AutoUpdateEnabled",
|
"Name": "AutoUpdateEnabled",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable PowerShell 7 Telemetry"
|
title: "PowerShell 7 Telemetry - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1808}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1763}
|
||||||
"WPFTweaksPowershell7Tele": {
|
"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.",
|
"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",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Create Restore Point"
|
title: "Restore Point - Create"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1765}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1720}
|
||||||
"WPFTweaksRestorePoint": {
|
"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.",
|
"Description": "Creates a restore point at runtime in case a revert is needed from WinUtil modifications.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Revert Start Menu layout"
|
title: "Start Menu Previous Layout - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=90}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=90}
|
||||||
"WPFTweaksRevertStartMenu": {
|
"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.",
|
"Description": "Bring back the old Start Menu layout from before the gradual rollout of the new one in 25H2.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Set Services to Manual"
|
title: "Services - Set to Manual"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=175}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=175}
|
||||||
"WPFTweaksServices": {
|
"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.",
|
"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",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -966,4 +966,10 @@ description: ""
|
|||||||
"OriginalType": "Manual"
|
"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
|
||||||
|
"
|
||||||
|
],
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Telemetry"
|
title: "Telemetry - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1327}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1333}
|
||||||
"WPFTweaksTelemetry": {
|
"WPFTweaksTelemetry": {
|
||||||
"Content": "Disable Telemetry",
|
"Content": "Telemetry - Disable",
|
||||||
"Description": "Disables Microsoft Telemetry.",
|
"Description": "Disables Microsoft Telemetry.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -106,9 +106,6 @@ description: ""
|
|||||||
# Disable (Windows Error Reporting Manager) Service
|
# Disable (Windows Error Reporting Manager) Service
|
||||||
Set-Service -Name wermgr -StartupType Disabled
|
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
|
Remove-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Siuf\\Rules\" -Name PeriodInNanoSeconds
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Windows Platform Binary Table (WPBT)"
|
title: "Windows Platform Binary Table (WPBT) - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1921}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1819}
|
||||||
"WPFTweaksWPBT": {
|
"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.",
|
"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",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Remove Widgets"
|
title: "Widgets - Remove"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=61}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=61}
|
||||||
"WPFTweaksWidget": {
|
"WPFTweaksWidget": {
|
||||||
"Content": "Remove Widgets",
|
"Content": "Widgets - Remove",
|
||||||
"Description": "Removes the annoying widgets in the bottom left of the Taskbar.",
|
"Description": "Removes the annoying widgets in the bottom left of the Taskbar.",
|
||||||
"category": "Essential Tweaks",
|
"category": "Essential Tweaks",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,91 +1,42 @@
|
|||||||
---
|
---
|
||||||
title: "Add and Activate Ultimate Performance Profile"
|
title: "Ultimate Performance Profile - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```powershell {filename="functions/public/Invoke-WPFUltimatePerformance.ps1",linenos=inline,linenostart=1}
|
```powershell {filename="functions/public/Invoke-WPFUltimatePerformance.ps1",linenos=inline,linenostart=1}
|
||||||
Function Invoke-WPFUltimatePerformance {
|
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.
|
|
||||||
|
|
||||||
#>
|
|
||||||
param(
|
param(
|
||||||
[Parameter(Mandatory = $true)]
|
[switch]$Do
|
||||||
[ValidateSet("Enable", "Disable")]
|
|
||||||
[string]$State
|
|
||||||
)
|
)
|
||||||
|
|
||||||
try {
|
if ($Do) {
|
||||||
# GUID of the Ultimate Performance power plan
|
if (-not (powercfg /list | Select-String "ChrisTitus - Ultimate Power Plan")) {
|
||||||
$ultimateGUID = "e9a42b02-d5df-448d-aa00-03f14749eb61"
|
if (-not (powercfg /list | Select-String "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c")) {
|
||||||
|
powercfg /restoredefaultschemes
|
||||||
switch ($State) {
|
if (-not (powercfg /list | Select-String "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c")) {
|
||||||
"Enable" {
|
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
|
||||||
# Duplicate the Ultimate Performance power plan using its GUID
|
return
|
||||||
$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."
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
default {
|
$guid = ((powercfg /duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c) -split '\s+')[3]
|
||||||
Write-Host "Invalid state. Please use 'Enable' or 'Disable'."
|
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: $_"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,91 +1,42 @@
|
|||||||
---
|
---
|
||||||
title: "Remove Ultimate Performance Profile"
|
title: "Ultimate Performance Profile - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```powershell {filename="functions/public/Invoke-WPFUltimatePerformance.ps1",linenos=inline,linenostart=1}
|
```powershell {filename="functions/public/Invoke-WPFUltimatePerformance.ps1",linenos=inline,linenostart=1}
|
||||||
Function Invoke-WPFUltimatePerformance {
|
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.
|
|
||||||
|
|
||||||
#>
|
|
||||||
param(
|
param(
|
||||||
[Parameter(Mandatory = $true)]
|
[switch]$Do
|
||||||
[ValidateSet("Enable", "Disable")]
|
|
||||||
[string]$State
|
|
||||||
)
|
)
|
||||||
|
|
||||||
try {
|
if ($Do) {
|
||||||
# GUID of the Ultimate Performance power plan
|
if (-not (powercfg /list | Select-String "ChrisTitus - Ultimate Power Plan")) {
|
||||||
$ultimateGUID = "e9a42b02-d5df-448d-aa00-03f14749eb61"
|
if (-not (powercfg /list | Select-String "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c")) {
|
||||||
|
powercfg /restoredefaultschemes
|
||||||
switch ($State) {
|
if (-not (powercfg /list | Select-String "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c")) {
|
||||||
"Enable" {
|
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
|
||||||
# Duplicate the Ultimate Performance power plan using its GUID
|
return
|
||||||
$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."
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
default {
|
$guid = ((powercfg /duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c) -split '\s+')[3]
|
||||||
Write-Host "Invalid state. Please use 'Enable' or 'Disable'."
|
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: $_"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Adobe Network Block"
|
title: "Adobe URL Block List - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2002}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1899}
|
||||||
"WPFTweaksBlockAdobeNet": {
|
"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",
|
"Description": "Reduces user interruptions by selectively blocking connections to Adobe's activation and telemetry servers. Credit: Ruddernation-Designs",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Brave Debloat"
|
title: "Brave Browser - Debloat"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1139}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1145}
|
||||||
"WPFTweaksBraveDebloat": {
|
"WPFTweaksBraveDebloat": {
|
||||||
"Content": "Brave Debloat",
|
"Content": "Brave Browser - Debloat",
|
||||||
"Description": "Disables various annoyances like Brave Rewards, Leo AI, Crypto Wallet and VPN.",
|
"Description": "Disables various annoyances like Brave Rewards, Leo AI, Crypto Wallet and VPN.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,82 +1,34 @@
|
|||||||
---
|
---
|
||||||
title: "Remove all Microsoft Store apps"
|
title: "Unwanted Pre-Installed Apps - Remove"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1676}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1679}
|
||||||
"WPFTweaksDeBloat": {
|
"WPFTweaksDeBloat": {
|
||||||
"Content": "Remove all Microsoft Store 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.",
|
"Description": "This will remove a bunch of Windows pre-installed applications which most people dont want on there system.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"appx": [
|
"appx": [
|
||||||
"Microsoft.Microsoft3DViewer",
|
"Microsoft.WindowsFeedbackHub",
|
||||||
"Microsoft.AppConnector",
|
|
||||||
"Microsoft.BingFinance",
|
|
||||||
"Microsoft.BingNews",
|
"Microsoft.BingNews",
|
||||||
"Microsoft.BingSports",
|
"Microsoft.BingSearch",
|
||||||
"Microsoft.BingTranslator",
|
|
||||||
"Microsoft.BingWeather",
|
"Microsoft.BingWeather",
|
||||||
"Microsoft.BingFoodAndDrink",
|
|
||||||
"Microsoft.BingHealthAndFitness",
|
|
||||||
"Microsoft.BingTravel",
|
|
||||||
"Clipchamp.Clipchamp",
|
"Clipchamp.Clipchamp",
|
||||||
"Microsoft.Todos",
|
"Microsoft.Todos",
|
||||||
"MicrosoftCorporationII.QuickAssist",
|
"Microsoft.PowerAutomateDesktop",
|
||||||
"Microsoft.MicrosoftStickyNotes",
|
|
||||||
"Microsoft.GetHelp",
|
|
||||||
"Microsoft.GetStarted",
|
|
||||||
"Microsoft.Messaging",
|
|
||||||
"Microsoft.MicrosoftSolitaireCollection",
|
"Microsoft.MicrosoftSolitaireCollection",
|
||||||
"Microsoft.NetworkSpeedTest",
|
|
||||||
"Microsoft.News",
|
|
||||||
"Microsoft.Office.Lens",
|
|
||||||
"Microsoft.Office.Sway",
|
|
||||||
"Microsoft.Office.OneNote",
|
|
||||||
"Microsoft.OneConnect",
|
|
||||||
"Microsoft.People",
|
|
||||||
"Microsoft.Print3D",
|
|
||||||
"Microsoft.SkypeApp",
|
|
||||||
"Microsoft.Wallet",
|
|
||||||
"Microsoft.Whiteboard",
|
|
||||||
"Microsoft.WindowsAlarms",
|
|
||||||
"Microsoft.WindowsCommunicationsApps",
|
|
||||||
"Microsoft.WindowsFeedbackHub",
|
|
||||||
"Microsoft.WindowsMaps",
|
|
||||||
"Microsoft.WindowsSoundRecorder",
|
"Microsoft.WindowsSoundRecorder",
|
||||||
"Microsoft.ConnectivityStore",
|
"Microsoft.MicrosoftStickyNotes",
|
||||||
"Microsoft.ScreenSketch",
|
"Microsoft.Windows.DevHome",
|
||||||
"Microsoft.MixedReality.Portal",
|
"Microsoft.Paint",
|
||||||
|
"Microsoft.OutlookForWindows",
|
||||||
|
"Microsoft.WindowsAlarms",
|
||||||
|
"Microsoft.StartExperiencesApp",
|
||||||
|
"Microsoft.GetHelp",
|
||||||
"Microsoft.ZuneMusic",
|
"Microsoft.ZuneMusic",
|
||||||
"Microsoft.ZuneVideo",
|
"MicrosoftCorporationII.QuickAssist",
|
||||||
"Microsoft.MicrosoftOfficeHub",
|
"MSTeams"
|
||||||
"MsTeams",
|
|
||||||
"*EclipseManager*",
|
|
||||||
"*ActiproSoftwareLLC*",
|
|
||||||
"*AdobeSystemsIncorporated.AdobePhotoshopExpress*",
|
|
||||||
"*Duolingo-LearnLanguagesforFree*",
|
|
||||||
"*PandoraMediaInc*",
|
|
||||||
"*CandyCrush*",
|
|
||||||
"*BubbleWitch3Saga*",
|
|
||||||
"*Wunderlist*",
|
|
||||||
"*Flipboard*",
|
|
||||||
"*Twitter*",
|
|
||||||
"*Facebook*",
|
|
||||||
"*Royal Revolt*",
|
|
||||||
"*Sway*",
|
|
||||||
"*Speed Test*",
|
|
||||||
"*Dolby*",
|
|
||||||
"*Viber*",
|
|
||||||
"*ACGMediaPlayer*",
|
|
||||||
"*Netflix*",
|
|
||||||
"*OneCalendar*",
|
|
||||||
"*LinkedInForWindows*",
|
|
||||||
"*HiddenCityMysteryofShadows*",
|
|
||||||
"*Hulu*",
|
|
||||||
"*HiddenCity*",
|
|
||||||
"*AdobePhotoshopExpress*",
|
|
||||||
"*HotspotShieldFreeVPN*",
|
|
||||||
"*Microsoft.Advertising.Xaml*"
|
|
||||||
],
|
],
|
||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"
|
"
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Background Apps"
|
title: "Background Apps - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2140}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2037}
|
||||||
"WPFTweaksDisableBGapps": {
|
"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.",
|
"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",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Fullscreen Optimizations"
|
title: "Fullscreen Optimizations - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2156}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2053}
|
||||||
"WPFTweaksDisableFSO": {
|
"WPFTweaksDisableFSO": {
|
||||||
"Content": "Disable Fullscreen Optimizations",
|
"Content": "Fullscreen Optimizations - Disable",
|
||||||
"Description": "Disables FSO in all applications. NOTE: This will disable Color Management in Exclusive Fullscreen.",
|
"Description": "Disables FSO in all applications. NOTE: This will disable Color Management in Exclusive Fullscreen.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable IPv6"
|
title: "IPv6 - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2118}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2015}
|
||||||
"WPFTweaksDisableIPv6": {
|
"WPFTweaksDisableIPv6": {
|
||||||
"Content": "Disable IPv6",
|
"Content": "IPv6 - Disable",
|
||||||
"Description": "Disables IPv6.",
|
"Description": "Disables IPv6.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Notification Tray/Calendar"
|
title: "Notification Tray & Calendar - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1979}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1876}
|
||||||
"WPFTweaksDisableNotifications": {
|
"WPFTweaksDisableNotifications": {
|
||||||
"Content": "Disable Notification Tray/Calendar",
|
"Content": "Notification Tray & Calendar - Disable",
|
||||||
"Description": "Disables all Notifications INCLUDING Calendar.",
|
"Description": "Disables all Notifications INCLUDING Calendar.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Set Display for Performance"
|
title: "Visual Effects - Set to Best Performance"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1554}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1557}
|
||||||
"WPFTweaksDisplay": {
|
"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.",
|
"Description": "Sets the system preferences to performance. You can do this manually with sysdm.cpl as well.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Edge Debloat"
|
title: "Microsoft Edge - Debloat"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1183}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1189}
|
||||||
"WPFTweaksEdgeDebloat": {
|
"WPFTweaksEdgeDebloat": {
|
||||||
"Content": "Edge Debloat",
|
"Content": "Microsoft Edge - Debloat",
|
||||||
"Description": "Disables various telemetry options, popups, and other annoyances in Edge.",
|
"Description": "Disables various telemetry options, popups, and other annoyances in Edge.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Prefer IPv4 over IPv6"
|
title: "IPv6 - Set IPv4 as Preferred"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2080}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1977}
|
||||||
"WPFTweaksIPv46": {
|
"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.",
|
"Description": "Setting the IPv4 preference can have latency and security benefits on private networks where IPv6 is not configured.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Run OO Shutup 10"
|
title: "OO Shutup 10 - Run"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Block Razer Software Installs"
|
title: "Razer Software Auto-Install - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1937}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1835}
|
||||||
"WPFTweaksRazerBlock": {
|
"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.",
|
"Description": "Blocks ALL Razer Software installations. The hardware works fine without any software.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
@@ -31,8 +31,7 @@ description: ""
|
|||||||
|
|
||||||
if (Test-Path $RazerPath) {
|
if (Test-Path $RazerPath) {
|
||||||
Remove-Item $RazerPath\\* -Recurse -Force
|
Remove-Item $RazerPath\\* -Recurse -Force
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
New-Item -Path $RazerPath -ItemType Directory
|
New-Item -Path $RazerPath -ItemType Directory
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,95 +1,32 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Microsoft Copilot"
|
title: "Microsoft Copilot - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1837}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1792}
|
||||||
"WPFTweaksRemoveCopilot": {
|
"WPFTweaksRemoveCopilot": {
|
||||||
"Content": "Disable Microsoft Copilot",
|
"Content": "Microsoft Copilot - Disable",
|
||||||
"Description": "Disables MS Copilot AI built into Windows since 23H2.",
|
"Description": "Removes Copilot AppXPackages and related ai packages",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"registry": [
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsCopilot",
|
|
||||||
"Name": "TurnOffWindowsCopilot",
|
|
||||||
"Value": "1",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKCU:\\Software\\Policies\\Microsoft\\Windows\\WindowsCopilot",
|
|
||||||
"Name": "TurnOffWindowsCopilot",
|
|
||||||
"Value": "1",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
|
|
||||||
"Name": "ShowCopilotButton",
|
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "1"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Shell\\Copilot",
|
|
||||||
"Name": "IsCopilotAvailable",
|
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Shell\\Copilot",
|
|
||||||
"Name": "CopilotDisabledReason",
|
|
||||||
"Value": "IsEnabledForGeographicRegionFailed",
|
|
||||||
"Type": "String",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKCU:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsCopilot",
|
|
||||||
"Name": "AllowCopilotRuntime",
|
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell Extensions\\Blocked",
|
|
||||||
"Name": "{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}",
|
|
||||||
"Value": "",
|
|
||||||
"Type": "String",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\Shell\\Copilot\\BingChat",
|
|
||||||
"Name": "IsUserEligible",
|
|
||||||
"Value": "0",
|
|
||||||
"Type": "DWord",
|
|
||||||
"OriginalValue": "<RemoveEntry>"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"
|
"
|
||||||
Write-Host \"Remove Copilot\"
|
|
||||||
Get-AppxPackage -AllUsers *Copilot* | Remove-AppxPackage -AllUsers
|
Get-AppxPackage -AllUsers *Copilot* | Remove-AppxPackage -AllUsers
|
||||||
Get-AppxPackage -AllUsers Microsoft.MicrosoftOfficeHub | Remove-AppxPackage -AllUsers
|
Get-AppxPackage -AllUsers Microsoft.MicrosoftOfficeHub | Remove-AppxPackage -AllUsers
|
||||||
|
|
||||||
$Appx = (Get-AppxPackage MicrosoftWindows.Client.CoreAI).PackageFullName
|
$Appx = (Get-AppxPackage MicrosoftWindows.Client.CoreAI).PackageFullName
|
||||||
|
|
||||||
$Sid = (Get-LocalUser $Env:UserName).Sid.Value
|
$Sid = (Get-LocalUser $Env:UserName).Sid.Value
|
||||||
|
|
||||||
New-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\EndOfLife\\$Sid\\$Appx\" -Force
|
New-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\EndOfLife\\$Sid\\$Appx\" -Force
|
||||||
Remove-AppxPackage $Appx
|
Remove-AppxPackage $Appx
|
||||||
|
|
||||||
|
Write-Host \"Copilot Removed\"
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
"UndoScript": [
|
"UndoScript": [
|
||||||
"
|
"
|
||||||
Write-Host \"Install Copilot\"
|
Write-Host \"Installing Copilot...\"
|
||||||
winget install --name Copilot --source msstore --accept-package-agreements --accept-source-agreements --silent
|
winget install --name Copilot --source msstore --accept-package-agreements --accept-source-agreements --silent
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|
||||||
## 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).
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Remove Microsoft Edge"
|
title: "Microsoft Edge - Remove"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1449}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1452}
|
||||||
"WPFTweaksRemoveEdge": {
|
"WPFTweaksRemoveEdge": {
|
||||||
"Content": "Remove Microsoft Edge",
|
"Content": "Microsoft Edge - Remove",
|
||||||
"Description": "Unblocks Microsoft Edge uninstaller restrictions then uses that uninstaller to remove Microsoft Edge.",
|
"Description": "Unblocks Microsoft Edge uninstaller restrictions then uses that uninstaller to remove Microsoft Edge.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Remove Gallery from Explorer"
|
title: "File Explorer Gallery - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1537}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1540}
|
||||||
"WPFTweaksRemoveGallery": {
|
"WPFTweaksRemoveGallery": {
|
||||||
"Content": "Remove Gallery from Explorer",
|
"Content": "File Explorer Gallery - Disable",
|
||||||
"Description": "Removes the Gallery from Explorer and sets This PC as default.",
|
"Description": "Removes the Gallery from Explorer and sets This PC as default.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Remove Home from Explorer"
|
title: "File Explorer Home - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1518}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1521}
|
||||||
"WPFTweaksRemoveHome": {
|
"WPFTweaksRemoveHome": {
|
||||||
"Content": "Remove Home from Explorer",
|
"Content": "File Explorer Home - Disable",
|
||||||
"Description": "Removes the Home from Explorer and sets This PC as default.",
|
"Description": "Removes the Home from Explorer and sets This PC as default.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Remove OneDrive"
|
title: "Microsoft OneDrive - Remove"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1481}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1484}
|
||||||
"WPFTweaksRemoveOneDrive": {
|
"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.",
|
"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",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Set Classic Right-Click Menu"
|
title: "Right-Click Menu Previous Layout - Enable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2032}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1929}
|
||||||
"WPFTweaksRightClickMenu": {
|
"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.",
|
"Description": "Restores the classic context menu when right-clicking in File Explorer, replacing the simplified Windows 11 version.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Storage Sense"
|
title: "Storage Sense - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1821}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1776}
|
||||||
"WPFTweaksStorage": {
|
"WPFTweaksStorage": {
|
||||||
"Content": "Disable Storage Sense",
|
"Content": "Storage Sense - Disable",
|
||||||
"Description": "Storage Sense deletes temp files automatically.",
|
"Description": "Storage Sense deletes temp files automatically.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Disable Teredo"
|
title: "Teredo - Disable"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2096}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1993}
|
||||||
"WPFTweaksTeredo": {
|
"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.",
|
"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",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Set Time to UTC (Dual Boot)"
|
title: "Date & Time - Set Time to UTC"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1465}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1468}
|
||||||
"WPFTweaksUTC": {
|
"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.",
|
"Description": "Essential for computers that are dual booting. Fixes the time sync with Linux systems.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "Remove Xbox & Gaming Components"
|
title: "Xbox & Gaming Components - Remove"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=1653}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=1656}
|
||||||
"WPFTweaksXboxRemoval": {
|
"WPFTweaksXboxRemoval": {
|
||||||
"Content": "Remove Xbox & Gaming Components",
|
"Content": "Xbox & Gaming Components - Remove",
|
||||||
"Description": "Removes Xbox services, the Xbox app, Game Bar, and related authentication components.",
|
"Description": "Removes Xbox services, the Xbox app, Game Bar, and related authentication components.",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: "DNS"
|
title: "DNS - Set to:"
|
||||||
description: ""
|
description: ""
|
||||||
---
|
---
|
||||||
|
|
||||||
```json {filename="config/tweaks.json",linenos=inline,linenostart=2639}
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2572}
|
||||||
"WPFchangedns": {
|
"WPFchangedns": {
|
||||||
"Content": "DNS",
|
"Content": "DNS - Set to:",
|
||||||
"category": "z__Advanced Tweaks - CAUTION",
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
"panel": "1",
|
"panel": "1",
|
||||||
"Type": "Combobox",
|
"Type": "Combobox",
|
||||||
|
|||||||
@@ -1,6 +1,12 @@
|
|||||||
---
|
---
|
||||||
title: User Guide
|
title: User Guide
|
||||||
weight: 2
|
weight: 2
|
||||||
|
breadcrumbs: false
|
||||||
|
cascade:
|
||||||
|
type: docs
|
||||||
|
params:
|
||||||
|
reversePagination: false
|
||||||
|
breadcrumbs: false
|
||||||
---
|
---
|
||||||
|
|
||||||
Welcome to the official User Guide for **Winutil**, your all-in-one Windows toolkit.
|
Welcome to the official User Guide for **Winutil**, your all-in-one Windows toolkit.
|
||||||
@@ -31,13 +37,15 @@ Winutil is designed for:
|
|||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
New to Winutil? Start here:
|
New to Winutil? Follow the guides below in order to get up and running quickly:
|
||||||
|
|
||||||
1. **[Getting Started Guide](getting-started/)** - Installation and first steps
|
1. **[Getting Started](getting-started/)** - Learn how to launch Winutil and understand the basics.
|
||||||
2. **[Applications Guide](application/)** - Learn to install, upgrade, and uninstall software
|
2. **[Applications](application/)** - Install, update, and remove apps with ease.
|
||||||
3. **[Tweaks Guide](tweaks/)** - Optimize your system
|
3. **[Tweaks](tweaks/)** - Apply performance, privacy, and usability improvements.
|
||||||
4. **[Features & Fixes](features/)** - Troubleshoot common issues
|
4. **[Features](features/)** - Explore built-in tools and common Windows fixes.
|
||||||
5. **[Win11 Creator](win11creator/)** - Build a custom debloated Windows 11 ISO
|
5. **[Updates](updates/)** - Configure how Windows Update behaves on your system.
|
||||||
|
6. **[Automation](automation/)** - Automate setups and reuse configurations across PCs.
|
||||||
|
7. **[Win11 Creator](win11creator/)** - Build a custom debloated Windows 11 ISO.
|
||||||
|
|
||||||
## Main Features
|
## Main Features
|
||||||
|
|
||||||
@@ -87,19 +95,7 @@ Automate Winutil configurations for:
|
|||||||
|
|
||||||
Build a custom Windows 11 ISO with bloatware removed, telemetry disabled, and hardware requirement checks bypassed. You can then export it as an ISO file or write it directly to a USB drive.
|
Build a custom Windows 11 ISO with bloatware removed, telemetry disabled, and hardware requirement checks bypassed. You can then export it as an ISO file or write it directly to a USB drive.
|
||||||
|
|
||||||
**[Read the Win11 Creator Guide →](win11Creator/)**
|
**[Read the Win11 Creator Guide →](win11creator/)**
|
||||||
|
|
||||||
## Quick Links
|
|
||||||
|
|
||||||
| I want to... | Go to... |
|
|
||||||
|--------------|----------|
|
|
||||||
| Install Winutil for the first time | [Getting Started](getting-started/) |
|
|
||||||
| Install, upgrade, or uninstall apps | [Applications Guide](application/) |
|
|
||||||
| Speed up my computer | [Tweaks Guide](tweaks/) |
|
|
||||||
| Fix Windows Update problems | [Features - Fixes](features/) |
|
|
||||||
| Automate setup for multiple PCs | [Automation](automation/) |
|
|
||||||
| Understand what tweaks do | [Tweaks Guide](tweaks/) |
|
|
||||||
| Build a custom Windows 11 ISO | [Win11 Creator](win11Creator/) |
|
|
||||||
|
|
||||||
## Safety and Best Practices
|
## Safety and Best Practices
|
||||||
|
|
||||||
@@ -149,18 +145,6 @@ Want to help improve Winutil?
|
|||||||
|
|
||||||
**[Read Contributing Guide →](../contributing/)**
|
**[Read Contributing Guide →](../contributing/)**
|
||||||
|
|
||||||
## What's in This Guide?
|
|
||||||
|
|
||||||
This User Guide covers everything you need to know:
|
|
||||||
|
|
||||||
1. **[Getting Started](getting-started/)** - Installation, first run, basic usage
|
|
||||||
2. **[Applications](application/)** - Installing, upgrading, and uninstalling software
|
|
||||||
3. **[Tweaks](tweaks/)** - System optimizations and customizations
|
|
||||||
4. **[Features & Fixes](features/)** - Troubleshooting tools and utilities
|
|
||||||
5. **[Win11 Creator](win11Creator/)** - Build a custom debloated Windows 11 ISO
|
|
||||||
6. **[Updates](updates/)** - Managing Windows Update behavior
|
|
||||||
7. **[Automation](automation/)** - Scripting and batch deployments
|
|
||||||
|
|
||||||
## Video Tutorial
|
## Video Tutorial
|
||||||
|
|
||||||
Watch the complete Winutil overview:
|
Watch the complete Winutil overview:
|
||||||
@@ -168,3 +152,11 @@ Watch the complete Winutil overview:
|
|||||||
{{< youtube id=6UQZ5oQg8XA loading=lazy >}}
|
{{< youtube id=6UQZ5oQg8XA loading=lazy >}}
|
||||||
|
|
||||||
Ready to get started? Head to the **[Getting Started Guide](getting-started/)**.
|
Ready to get started? Head to the **[Getting Started Guide](getting-started/)**.
|
||||||
|
|
||||||
|
## Next
|
||||||
|
|
||||||
|
Dive right into the following section to get started:
|
||||||
|
|
||||||
|
{{< cards >}}
|
||||||
|
{{< card link="getting-started" title="Getting Started" icon="document-text" subtitle="Learn how to use winutil." >}}
|
||||||
|
{{< /cards >}}
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Applications
|
title: Applications
|
||||||
weight: 3
|
weight: 3
|
||||||
|
prev: /userguide/getting-started/
|
||||||
|
next: /userguide/tweaks/
|
||||||
---
|
---
|
||||||
|
|
||||||
{{< tabs >}}
|
{{< tabs >}}
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Automation
|
title: Automation
|
||||||
weight: 7
|
weight: 7
|
||||||
|
prev: /userguide/updates/
|
||||||
|
next: /userguide/win11Creator/
|
||||||
---
|
---
|
||||||
|
|
||||||
Use Automation to run Winutil from an exported configuration file.
|
Use Automation to run Winutil from an exported configuration file.
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Features
|
title: Features
|
||||||
weight: 5
|
weight: 5
|
||||||
|
prev: /userguide/tweaks/
|
||||||
|
next: /userguide/updates/
|
||||||
---
|
---
|
||||||
|
|
||||||
Use the **Features** and **Fixes** sections to install optional Windows components and run common repair tasks.
|
Use the **Features** and **Fixes** sections to install optional Windows components and run common repair tasks.
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Getting Started
|
title: Getting Started
|
||||||
weight: 2
|
weight: 2
|
||||||
|
prev: /userguide/
|
||||||
|
next: /userguide/application/
|
||||||
---
|
---
|
||||||
|
|
||||||
## Welcome to Winutil!
|
## Welcome to Winutil!
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Tweaks
|
title: Tweaks
|
||||||
weight: 4
|
weight: 4
|
||||||
|
prev: /userguide/application/
|
||||||
|
next: /userguide/features/
|
||||||
---
|
---
|
||||||
|
|
||||||
{{< image src="images/Tweaks-Tab" alt="Image of Tweaks Tab" >}}
|
{{< image src="images/Tweaks-Tab" alt="Image of Tweaks Tab" >}}
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Updates
|
title: Updates
|
||||||
weight: 6
|
weight: 6
|
||||||
|
prev: /userguide/features/
|
||||||
|
next: /userguide/automation/
|
||||||
---
|
---
|
||||||
|
|
||||||
Winutil provides three update modes so you can choose how aggressively Windows Update is managed on your system:
|
Winutil provides three update modes so you can choose how aggressively Windows Update is managed on your system:
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Win11 Creator
|
title: Win11 Creator
|
||||||
weight: 8
|
weight: 8
|
||||||
|
prev: /userguide/automation/
|
||||||
---
|
---
|
||||||
|
|
||||||
## Using Winutil's Win11 Creator
|
## Using Winutil's Win11 Creator
|
||||||
@@ -79,7 +80,7 @@ Once the modification is complete, choose how to save your image:
|
|||||||
> [!NOTE]
|
> [!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`
|
> `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 >}}
|
||||||
|
|
||||||
{{< tab name="Write to USB" >}}
|
{{< tab name="Write to USB" >}}
|
||||||
|
|||||||
@@ -12,10 +12,8 @@ function Install-WinUtilWinget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Write-Host "WinGet is not installed. Installing now..." -ForegroundColor Red
|
Write-Host "WinGet is not installed. Installing now..." -ForegroundColor Red
|
||||||
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
|
|
||||||
|
|
||||||
Install-PackageProvider -Name NuGet -Force
|
Install-PackageProvider -Name NuGet -Force
|
||||||
Install-Module Microsoft.WinGet.Client -Force
|
Install-Module -Name Microsoft.WinGet.Client -Force
|
||||||
Import-Module Microsoft.WinGet.Client
|
Repair-WinGetPackageManager -AllUsers
|
||||||
Repair-WinGetPackageManager
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -540,6 +540,9 @@ function Invoke-WinUtilISOExport {
|
|||||||
if (-not $oscdimg) {
|
if (-not $oscdimg) {
|
||||||
Write-Win11ISOLog "oscdimg.exe not found. Attempting to install via winget..."
|
Write-Win11ISOLog "oscdimg.exe not found. Attempting to install via winget..."
|
||||||
try {
|
try {
|
||||||
|
# First ensure winget is installed and operational
|
||||||
|
Install-WinUtilWinget
|
||||||
|
|
||||||
$winget = Get-Command winget -ErrorAction Stop
|
$winget = Get-Command winget -ErrorAction Stop
|
||||||
$result = & $winget install -e --id Microsoft.OSCDIMG --accept-package-agreements --accept-source-agreements 2>&1
|
$result = & $winget install -e --id Microsoft.OSCDIMG --accept-package-agreements --accept-source-agreements 2>&1
|
||||||
Write-Win11ISOLog "winget output: $result"
|
Write-Win11ISOLog "winget output: $result"
|
||||||
|
|||||||
@@ -50,7 +50,6 @@ function Invoke-WinUtilISOScript {
|
|||||||
.NOTES
|
.NOTES
|
||||||
Author : Chris Titus @christitustech
|
Author : Chris Titus @christitustech
|
||||||
GitHub : https://github.com/ChrisTitusTech
|
GitHub : https://github.com/ChrisTitusTech
|
||||||
Version : 26.03.02
|
|
||||||
#>
|
#>
|
||||||
param (
|
param (
|
||||||
[Parameter(Mandatory)][string]$ScratchDir,
|
[Parameter(Mandatory)][string]$ScratchDir,
|
||||||
@@ -116,48 +115,25 @@ function Invoke-WinUtilISOScript {
|
|||||||
ForEach-Object { if ($_ -match 'PackageName : (.*)') { $matches[1] } }
|
ForEach-Object { if ($_ -match 'PackageName : (.*)') { $matches[1] } }
|
||||||
|
|
||||||
$packagePrefixes = @(
|
$packagePrefixes = @(
|
||||||
'AppUp.IntelManagementandSecurityStatus',
|
|
||||||
'Clipchamp.Clipchamp',
|
'Clipchamp.Clipchamp',
|
||||||
'DolbyLaboratories.DolbyAccess',
|
|
||||||
'DolbyLaboratories.DolbyDigitalPlusDecoderOEM',
|
|
||||||
'Microsoft.BingNews',
|
'Microsoft.BingNews',
|
||||||
'Microsoft.BingSearch',
|
'Microsoft.BingSearch',
|
||||||
'Microsoft.BingWeather',
|
'Microsoft.BingWeather',
|
||||||
'Microsoft.Copilot',
|
|
||||||
'Microsoft.Windows.CrossDevice',
|
|
||||||
'Microsoft.GetHelp',
|
'Microsoft.GetHelp',
|
||||||
'Microsoft.Getstarted',
|
|
||||||
'Microsoft.Microsoft3DViewer',
|
|
||||||
'Microsoft.MicrosoftOfficeHub',
|
'Microsoft.MicrosoftOfficeHub',
|
||||||
'Microsoft.MicrosoftSolitaireCollection',
|
'Microsoft.MicrosoftSolitaireCollection',
|
||||||
'Microsoft.MicrosoftStickyNotes',
|
'Microsoft.MicrosoftStickyNotes',
|
||||||
'Microsoft.MixedReality.Portal',
|
|
||||||
'Microsoft.MSPaint',
|
|
||||||
'Microsoft.Office.OneNote',
|
|
||||||
'Microsoft.OfficePushNotificationUtility',
|
|
||||||
'Microsoft.OutlookForWindows',
|
'Microsoft.OutlookForWindows',
|
||||||
'Microsoft.Paint',
|
'Microsoft.Paint',
|
||||||
'Microsoft.People',
|
|
||||||
'Microsoft.PowerAutomateDesktop',
|
'Microsoft.PowerAutomateDesktop',
|
||||||
'Microsoft.SkypeApp',
|
|
||||||
'Microsoft.StartExperiencesApp',
|
'Microsoft.StartExperiencesApp',
|
||||||
'Microsoft.Todos',
|
'Microsoft.Todos',
|
||||||
'Microsoft.Wallet',
|
|
||||||
'Microsoft.Windows.DevHome',
|
'Microsoft.Windows.DevHome',
|
||||||
'Microsoft.Windows.Copilot',
|
|
||||||
'Microsoft.Windows.Teams',
|
|
||||||
'Microsoft.WindowsAlarms',
|
|
||||||
'Microsoft.WindowsCamera',
|
|
||||||
'microsoft.windowscommunicationsapps',
|
|
||||||
'Microsoft.WindowsFeedbackHub',
|
'Microsoft.WindowsFeedbackHub',
|
||||||
'Microsoft.WindowsMaps',
|
|
||||||
'Microsoft.WindowsSoundRecorder',
|
'Microsoft.WindowsSoundRecorder',
|
||||||
'Microsoft.ZuneMusic',
|
'Microsoft.ZuneMusic',
|
||||||
'Microsoft.ZuneVideo',
|
|
||||||
'MicrosoftCorporationII.MicrosoftFamily',
|
|
||||||
'MicrosoftCorporationII.QuickAssist',
|
'MicrosoftCorporationII.QuickAssist',
|
||||||
'MSTeams',
|
'MSTeams'
|
||||||
'MicrosoftTeams'
|
|
||||||
)
|
)
|
||||||
|
|
||||||
$packages | Where-Object { $pkg = $_; $packagePrefixes | Where-Object { $pkg -like "*$_*" } } |
|
$packages | Where-Object { $pkg = $_; $packagePrefixes | Where-Object { $pkg -like "*$_*" } } |
|
||||||
@@ -193,16 +169,7 @@ function Invoke-WinUtilISOScript {
|
|||||||
& $Log "Driver injection skipped."
|
& $Log "Driver injection skipped."
|
||||||
}
|
}
|
||||||
|
|
||||||
# ── 3. Remove OneDrive ────────────────────────────────────────────────────
|
# ── 3. Registry tweaks ────────────────────────────────────────────────────
|
||||||
& $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
|
|
||||||
|
|
||||||
# Remove OneDrive from startup registry
|
|
||||||
Remove-ISOScriptReg 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\Run\OneDrive'
|
|
||||||
|
|
||||||
# ── 4. Registry tweaks ────────────────────────────────────────────────────
|
|
||||||
& $Log "Loading offline registry hives..."
|
& $Log "Loading offline registry hives..."
|
||||||
reg load HKLM\zCOMPONENTS "$ScratchDir\Windows\System32\config\COMPONENTS"
|
reg load HKLM\zCOMPONENTS "$ScratchDir\Windows\System32\config\COMPONENTS"
|
||||||
reg load HKLM\zDEFAULT "$ScratchDir\Windows\System32\config\default"
|
reg load HKLM\zDEFAULT "$ScratchDir\Windows\System32\config\default"
|
||||||
@@ -356,7 +323,7 @@ function Invoke-WinUtilISOScript {
|
|||||||
reg unload HKLM\zSOFTWARE
|
reg unload HKLM\zSOFTWARE
|
||||||
reg unload HKLM\zSYSTEM
|
reg unload HKLM\zSYSTEM
|
||||||
|
|
||||||
# ── 5. Delete scheduled task definition files ─────────────────────────────
|
# ── 4. Delete scheduled task definition files ─────────────────────────────
|
||||||
& $Log "Deleting scheduled task definition files..."
|
& $Log "Deleting scheduled task definition files..."
|
||||||
$tasksPath = "$ScratchDir\Windows\System32\Tasks"
|
$tasksPath = "$ScratchDir\Windows\System32\Tasks"
|
||||||
Remove-Item "$tasksPath\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" -Force -ErrorAction SilentlyContinue
|
Remove-Item "$tasksPath\Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" -Force -ErrorAction SilentlyContinue
|
||||||
@@ -372,7 +339,7 @@ function Invoke-WinUtilISOScript {
|
|||||||
Remove-Item "$tasksPath\Microsoft\WindowsUpdate" -Recurse -Force -ErrorAction SilentlyContinue
|
Remove-Item "$tasksPath\Microsoft\WindowsUpdate" -Recurse -Force -ErrorAction SilentlyContinue
|
||||||
& $Log "Scheduled task files deleted."
|
& $Log "Scheduled task files deleted."
|
||||||
|
|
||||||
# ── 6. Remove ISO support folder ─────────────────────────────────────────
|
# ── 5. Remove ISO support folder ─────────────────────────────────────────
|
||||||
if ($ISOContentsDir -and (Test-Path $ISOContentsDir)) {
|
if ($ISOContentsDir -and (Test-Path $ISOContentsDir)) {
|
||||||
& $Log "Removing ISO support\ folder..."
|
& $Log "Removing ISO support\ folder..."
|
||||||
Remove-Item -Path (Join-Path $ISOContentsDir "support") -Recurse -Force -ErrorAction SilentlyContinue
|
Remove-Item -Path (Join-Path $ISOContentsDir "support") -Recurse -Force -ErrorAction SilentlyContinue
|
||||||
|
|||||||
@@ -56,14 +56,12 @@ function Invoke-WPFButton {
|
|||||||
"WPFClearInstallSelection" {Invoke-WPFPresets -imported $true -checkboxfilterpattern "WPFInstall*"}
|
"WPFClearInstallSelection" {Invoke-WPFPresets -imported $true -checkboxfilterpattern "WPFInstall*"}
|
||||||
"WPFtweaksbutton" {Invoke-WPFtweaksbutton}
|
"WPFtweaksbutton" {Invoke-WPFtweaksbutton}
|
||||||
"WPFOOSUbutton" {Invoke-WPFOOSU}
|
"WPFOOSUbutton" {Invoke-WPFOOSU}
|
||||||
"WPFAddUltPerf" {Invoke-WPFUltimatePerformance -State "Enable"}
|
"WPFAddUltPerf" {Invoke-WPFUltimatePerformance -Do}
|
||||||
"WPFRemoveUltPerf" {Invoke-WPFUltimatePerformance -State "Disable"}
|
"WPFRemoveUltPerf" {Invoke-WPFUltimatePerformance}
|
||||||
"WPFundoall" {Invoke-WPFundoall}
|
"WPFundoall" {Invoke-WPFundoall}
|
||||||
"WPFUpdatesdefault" {Invoke-WPFUpdatesdefault}
|
"WPFUpdatesdefault" {Invoke-WPFUpdatesdefault}
|
||||||
"WPFRunAdobeCCCleanerTool" {Invoke-WPFRunAdobeCCCleanerTool}
|
|
||||||
"WPFUpdatesdisable" {Invoke-WPFUpdatesdisable}
|
"WPFUpdatesdisable" {Invoke-WPFUpdatesdisable}
|
||||||
"WPFUpdatessecurity" {Invoke-WPFUpdatessecurity}
|
"WPFUpdatessecurity" {Invoke-WPFUpdatessecurity}
|
||||||
"WPFWinUtilShortcut" {Invoke-WPFShortcut -ShortcutToAdd "WinUtil" -RunAsAdmin $true}
|
|
||||||
"WPFGetInstalled" {Invoke-WPFGetInstalled -CheckBox "winget"}
|
"WPFGetInstalled" {Invoke-WPFGetInstalled -CheckBox "winget"}
|
||||||
"WPFGetInstalledTweaks" {Invoke-WPFGetInstalled -CheckBox "tweaks"}
|
"WPFGetInstalledTweaks" {Invoke-WPFGetInstalled -CheckBox "tweaks"}
|
||||||
"WPFCloseButton" {$sync.Form.Close(); Write-Host "Bye bye!"}
|
"WPFCloseButton" {$sync.Form.Close(); Write-Host "Bye bye!"}
|
||||||
|
|||||||
@@ -1,84 +1,35 @@
|
|||||||
Function Invoke-WPFUltimatePerformance {
|
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.
|
|
||||||
|
|
||||||
#>
|
|
||||||
param(
|
param(
|
||||||
[Parameter(Mandatory = $true)]
|
[switch]$Do
|
||||||
[ValidateSet("Enable", "Disable")]
|
|
||||||
[string]$State
|
|
||||||
)
|
)
|
||||||
|
|
||||||
try {
|
if ($Do) {
|
||||||
# GUID of the Ultimate Performance power plan
|
if (-not (powercfg /list | Select-String "ChrisTitus - Ultimate Power Plan")) {
|
||||||
$ultimateGUID = "e9a42b02-d5df-448d-aa00-03f14749eb61"
|
if (-not (powercfg /list | Select-String "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c")) {
|
||||||
|
powercfg /restoredefaultschemes
|
||||||
switch ($State) {
|
if (-not (powercfg /list | Select-String "8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c")) {
|
||||||
"Enable" {
|
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
|
||||||
# Duplicate the Ultimate Performance power plan using its GUID
|
return
|
||||||
$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."
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
default {
|
$guid = ((powercfg /duplicatescheme 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c) -split '\s+')[3]
|
||||||
Write-Host "Invalid state. Please use 'Enable' or 'Disable'."
|
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: $_"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user