mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2025-12-30 14:59:47 -06:00
Compare commits
17 Commits
2025.11.30
...
add_folder
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b4b003d816 | ||
|
|
cd2035d737 | ||
|
|
fc64809ad4 | ||
|
|
fbe33ea4b8 | ||
|
|
86bb79cefa | ||
|
|
6d6d4cc7c6 | ||
|
|
e98c1bd273 | ||
|
|
82edc87601 | ||
|
|
e612f8e9d5 | ||
|
|
48cd513f14 | ||
|
|
71043ccc7d | ||
|
|
0971b72c48 | ||
|
|
d403a2284c | ||
|
|
990957e3ca | ||
|
|
fb343e2a70 | ||
|
|
977a0ecb2d | ||
|
|
cd29f6987a |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,4 +1,5 @@
|
||||
LastSettings
|
||||
SavedSettings
|
||||
LastUsedSettings.json
|
||||
CustomAppsList
|
||||
Win11Debloat.log
|
||||
@@ -1,11 +0,0 @@
|
||||
- Disable & remove Microsoft Copilot
|
||||
- Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads
|
||||
- Disable tips, tricks, suggestions and ads in start, settings, notifications and File Explorer
|
||||
- Disable ads, suggestions and the MSN news feed in Microsoft Edge
|
||||
- Disable tips & tricks on the lockscreen (This may change your lockscreen wallpaper)
|
||||
- Disable & remove Bing web search, Bing AI and Cortana from Windows search
|
||||
- Show file extensions for known file types
|
||||
- Disable widgets on the taskbar & lockscreen
|
||||
- Disable Fast Start-up
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Win11Debloat is a lightweight and easy to use PowerShell script that allows you to quickly
|
||||
Win11Debloat is a lightweight, easy to use PowerShell script that allows you to quickly
|
||||
declutter and improve your Windows experience. It can remove pre-installed bloatware apps,
|
||||
disable telemetry, remove intrusive interface elements and much more.
|
||||
|
||||
@@ -36,6 +36,7 @@ File Explorer
|
||||
- Change the default location that File Explorer opens to.
|
||||
- Show hidden files, folders and drives.
|
||||
- Show file extensions for known file types.
|
||||
- Add all common folders (Desktop, Downloads, Etc.) back to 'This PC' in File Explorer. (W11 only)
|
||||
- Hide the Home or Gallery section from the File Explorer navigation pane. (W11 only)
|
||||
- Hide the 3D objects, music or OneDrive folder from the File Explorer navigation pane. (W10 only)
|
||||
- Hide duplicate removable drive entries from the File Explorer navigation pane.
|
||||
@@ -59,6 +60,8 @@ Other
|
||||
- Disable Xbox Game Bar integration & game/screen recording. This also disables `ms-gamingoverlay`/`ms-gamebar` popups.
|
||||
- Disable Fast Start-up to ensure a full shutdown.
|
||||
- Disable network connectivity during Modern Standby to reduce battery drain. (W11 only)
|
||||
|
||||
Advanced Features
|
||||
- Option to apply changes to a different user, instead of the currently logged in user.
|
||||
- Sysprep mode to apply changes to the Windows Default user profile.
|
||||
|
||||
|
||||
BIN
Assets/menu.png
BIN
Assets/menu.png
Binary file not shown.
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 29 KiB |
261
DefaultSettings.json
Normal file
261
DefaultSettings.json
Normal file
@@ -0,0 +1,261 @@
|
||||
{
|
||||
"Version": "1.0",
|
||||
"Settings": [
|
||||
{
|
||||
"Name": "CreateRestorePoint",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableTelemetry",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableSuggestions",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableEdgeAds",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableLockscreenTips",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableBing",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableCopilot",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableRecall",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableClickToDo",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableWidgets",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "HideChat",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "ShowKnownFileExt",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableFastStartup",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "Hide3dObjects",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableModernStandbyNetworking",
|
||||
"Value": true
|
||||
},
|
||||
{
|
||||
"Name": "DisableDVR",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableGameBarIntegration",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ClearStart",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ClearStartAllUsers",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableStartRecommended",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableStartPhoneLink",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableSettings365Ads",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableEdgeAI",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisablePaintAI",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableNotepadAI",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "EnableDarkMode",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "RevertContextMenu",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableMouseAcceleration",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableStickyKeys",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableDesktopSpotlight",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "TaskbarAlignLeft",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "CombineTaskbarAlways",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "CombineMMTaskbarAlways",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "CombineTaskbarWhenFull",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "CombineMMTaskbarWhenFull",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "CombineTaskbarNever",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "CombineMMTaskbarNever",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "MMTaskbarModeAll",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "MMTaskbarModeMainActive",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "MMTaskbarModeActive",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "HideSearchTb",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ShowSearchIconTb",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ShowSearchLabelTb",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ShowSearchBoxTb",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "HideTaskview",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "EnableEndTask",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "EnableLastActiveClick",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ShowHiddenFolders",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ExplorerToHome",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ExplorerToThisPC",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ExplorerToDownloads",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ExplorerToOneDrive",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "AddFoldersToThisPC",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "HideHome",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "HideGallery",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "HideDupliDrive",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableTransparency",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "DisableAnimations",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "ForceRemoveEdge",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "HideIncludeInLibrary",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "HideGiveAccessTo",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "HideShare",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "HideOnedrive",
|
||||
"Value": false
|
||||
},
|
||||
{
|
||||
"Name": "HideMusic",
|
||||
"Value": false
|
||||
}
|
||||
]
|
||||
}
|
||||
28
Get.ps1
28
Get.ps1
@@ -4,12 +4,14 @@ param (
|
||||
[switch]$Sysprep,
|
||||
[string]$LogPath,
|
||||
[string]$User,
|
||||
[switch]$NoRestartExplorer,
|
||||
[switch]$CreateRestorePoint,
|
||||
[switch]$RunAppsListGenerator, [switch]$RunAppConfigurator,
|
||||
[switch]$RunDefaults,
|
||||
[switch]$RunDefaultsLite,
|
||||
[switch]$RunSavedSettings,
|
||||
[switch]$RemoveApps,
|
||||
[string]$Apps,
|
||||
[switch]$RemoveApps,
|
||||
[switch]$RemoveAppsCustom,
|
||||
[switch]$RemoveGamingApps,
|
||||
[switch]$RemoveCommApps,
|
||||
@@ -65,7 +67,7 @@ param (
|
||||
[switch]$ExplorerToThisPC,
|
||||
[switch]$ExplorerToDownloads,
|
||||
[switch]$ExplorerToOneDrive,
|
||||
[switch]$NoRestartExplorer,
|
||||
[switch]$AddFoldersToThisPC,
|
||||
[switch]$DisableOnedrive, [switch]$HideOnedrive,
|
||||
[switch]$Disable3dObjects, [switch]$Hide3dObjects,
|
||||
[switch]$DisableMusic, [switch]$HideMusic,
|
||||
@@ -90,14 +92,24 @@ Write-Output "------------------------------------------------------------------
|
||||
|
||||
Write-Output "> Downloading Win11Debloat..."
|
||||
|
||||
# Download latest version of Win11Debloat from github as zip archive
|
||||
Invoke-RestMethod https://api.github.com/repos/Raphire/Win11Debloat/zipball/2025.11.30 -OutFile "$env:TEMP/win11debloat.zip"
|
||||
# Download latest version of Win11Debloat from GitHub as zip archive
|
||||
try {
|
||||
$LatestReleaseUri = (Invoke-RestMethod https://api.github.com/repos/Raphire/Win11Debloat/releases/latest).zipball_url
|
||||
Invoke-RestMethod $LatestReleaseUri -OutFile "$env:TEMP/win11debloat.zip"
|
||||
}
|
||||
catch {
|
||||
Write-Host "Error: Unable to fetch latest release from GitHub. Please check your internet connection and try again." -ForegroundColor Red
|
||||
Write-Output ""
|
||||
Write-Output "Press enter to exit..."
|
||||
Read-Host | Out-Null
|
||||
Exit
|
||||
}
|
||||
|
||||
# Remove old script folder if it exists, except for CustomAppsList and SavedSettings files
|
||||
# Remove old script folder if it exists, except for CustomAppsList and LastUsedSettings.json files
|
||||
if (Test-Path "$env:TEMP/Win11Debloat") {
|
||||
Write-Output ""
|
||||
Write-Output "> Cleaning up old Win11Debloat folder..."
|
||||
Get-ChildItem -Path "$env:TEMP/Win11Debloat" -Exclude CustomAppsList,SavedSettings,Win11Debloat.log | Remove-Item -Recurse -Force
|
||||
Get-ChildItem -Path "$env:TEMP/Win11Debloat" -Exclude CustomAppsList,LastUsedSettings.json,Win11Debloat.log | Remove-Item -Recurse -Force
|
||||
}
|
||||
|
||||
Write-Output ""
|
||||
@@ -133,13 +145,13 @@ if ($null -ne $debloatProcess) {
|
||||
$debloatProcess.WaitForExit()
|
||||
}
|
||||
|
||||
# Remove all remaining script files, except for CustomAppsList and SavedSettings files
|
||||
# Remove all remaining script files, except for CustomAppsList and LastUsedSettings.json files
|
||||
if (Test-Path "$env:TEMP/Win11Debloat") {
|
||||
Write-Output ""
|
||||
Write-Output "> Cleaning up..."
|
||||
|
||||
# Cleanup, remove Win11Debloat directory
|
||||
Get-ChildItem -Path "$env:TEMP/Win11Debloat" -Exclude CustomAppsList,SavedSettings,Win11Debloat.log | Remove-Item -Recurse -Force
|
||||
Get-ChildItem -Path "$env:TEMP/Win11Debloat" -Exclude CustomAppsList,LastUsedSettings.json,Win11Debloat.log | Remove-Item -Recurse -Force
|
||||
}
|
||||
|
||||
Write-Output ""
|
||||
|
||||
10
README.md
10
README.md
@@ -18,9 +18,9 @@
|
||||
[](https://github.com/Raphire/Win11Debloat/discussions)
|
||||
[](https://github.com/Raphire/Win11Debloat/wiki/)
|
||||
|
||||
Win11Debloat is a simple, easy to use and lightweight PowerShell script that allows you to quickly declutter and improve your Windows experience. It can remove pre-installed bloatware apps, disable telemetry, remove intrusive interface elements and much more. No need to painstakingly go through all the settings yourself or remove apps one by one. Win11Debloat makes the process quick and easy!
|
||||
Win11Debloat is a lightweight, easy to use PowerShell script that allows you to quickly declutter and improve your Windows experience. It can remove pre-installed bloatware apps, disable telemetry, remove intrusive interface elements and much more. No need to painstakingly go through all the settings yourself or remove apps one by one. Win11Debloat makes the process quick and easy!
|
||||
|
||||
The script also includes many features that system administrators will enjoy. Such as support for Windows Audit mode, the option to make changes to other Windows users and the ability to run the script without requiring user input during runtime. Please refer to our [wiki](https://github.com/Raphire/Win11Debloat/wiki/) for more details.
|
||||
The script also includes many features that system administrators and power users will enjoy. Such as support for Windows Audit mode, the option to make changes to other Windows users and the ability to access all of Win11Debloat's features right from the command-line. Please refer to our [wiki](https://github.com/Raphire/Win11Debloat/wiki/) for more details.
|
||||
|
||||

|
||||
|
||||
@@ -129,6 +129,7 @@ Below is an overview of the key features and functionality offered by Win11Deblo
|
||||
- Change the default location that File Explorer opens to.
|
||||
- Show hidden files, folders and drives.
|
||||
- Show file extensions for known file types.
|
||||
- Add all common folders (Desktop, Downloads, etc.) back to 'This PC' in File Explorer. (W11 only)
|
||||
- Hide the Home or Gallery section from the File Explorer navigation pane. (W11 only)
|
||||
- Hide the 3D objects, music or OneDrive folder from the File Explorer navigation pane. (W10 only)
|
||||
- Hide duplicate removable drive entries from the File Explorer navigation pane, so only the entry under 'This PC' remains.
|
||||
@@ -155,8 +156,11 @@ Below is an overview of the key features and functionality offered by Win11Deblo
|
||||
- Disable Xbox Game Bar integration & game/screen recording. This also disables `ms-gamingoverlay`/`ms-gamebar` popups if you uninstall the Xbox Game Bar.
|
||||
- Disable Fast Start-up to ensure a full shutdown.
|
||||
- Disable network connectivity during Modern Standby to reduce battery drain. (W11 only)
|
||||
|
||||
#### Advanced Features
|
||||
|
||||
- Option to [apply changes to a different user](https://github.com/Raphire/Win11Debloat/wiki/Advanced-Features#running-as-another-user), instead of the currently logged in user.
|
||||
- [Sysprep mode](https://github.com/Raphire/Win11Debloat/wiki/Advanced-Features#sysprep-mode) to apply changes to the Windows Default user profile. Afterwards, all new users will have the changes automatically applied to them.
|
||||
- [Sysprep mode](https://github.com/Raphire/Win11Debloat/wiki/Advanced-Features#sysprep-mode) to apply changes to the Windows Default user profile. Which ensures, all new users will have the changes automatically applied to them.
|
||||
|
||||
### Default Settings
|
||||
|
||||
|
||||
46
Regfiles/Add_All_Folders_Under_This_PC.reg
Normal file
46
Regfiles/Add_All_Folders_Under_This_PC.reg
Normal file
@@ -0,0 +1,46 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
; Desktop
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
; Documents
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
; Downloads
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
; Music
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
; Pictures
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
; Videos
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
@@ -14,7 +14,7 @@ Windows Registry Editor Version 5.00
|
||||
@="%SystemRoot%/System32/systray.exe"
|
||||
|
||||
[HKEY_CLASSES_ROOT\ms-gamebarservices]
|
||||
@="URL:ms-gamebar"
|
||||
@="URL:ms-gamebarservices"
|
||||
"URL Protocol"=""
|
||||
"NoOpenWith"=""
|
||||
|
||||
|
||||
Binary file not shown.
46
Regfiles/Sysprep/Add_All_Folders_Under_This_PC.reg
Normal file
46
Regfiles/Sysprep/Add_All_Folders_Under_This_PC.reg
Normal file
@@ -0,0 +1,46 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
; Desktop
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
; Documents
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
; Downloads
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
; Music
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
; Pictures
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
|
||||
; Videos
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
|
||||
"HideIfEnabled"=-
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
|
||||
"HiddenByDefault"=dword:00000000
|
||||
@@ -14,7 +14,7 @@ Windows Registry Editor Version 5.00
|
||||
@="%SystemRoot%/System32/systray.exe"
|
||||
|
||||
[HKEY_CLASSES_ROOT\ms-gamebarservices]
|
||||
@="URL:ms-gamebar"
|
||||
@="URL:ms-gamebarservices"
|
||||
"URL Protocol"=""
|
||||
"NoOpenWith"=""
|
||||
|
||||
|
||||
Binary file not shown.
@@ -13,7 +13,7 @@ Windows Registry Editor Version 5.00
|
||||
[-HKEY_CLASSES_ROOT\ms-gamebar\shell\open\command]
|
||||
|
||||
[HKEY_CLASSES_ROOT\ms-gamebarservices]
|
||||
@="URL:ms-gamebar"
|
||||
@="URL:ms-gamebarservices"
|
||||
"URL Protocol"=""
|
||||
"NoOpenWith"=-
|
||||
|
||||
|
||||
Binary file not shown.
46
Regfiles/Undo/Remove_All_Folders_Under_This_PC.reg
Normal file
46
Regfiles/Undo/Remove_All_Folders_Under_This_PC.reg
Normal file
@@ -0,0 +1,46 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
; Desktop
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
|
||||
"HideIfEnabled"=dword:022ab9b9
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
|
||||
"HiddenByDefault"=dword:00000001
|
||||
|
||||
; Documents
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
|
||||
"HideIfEnabled"=dword:022ab9b9
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{d3162b92-9365-467a-956b-92703aca08af}]
|
||||
"HiddenByDefault"=dword:00000001
|
||||
|
||||
; Downloads
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
|
||||
"HideIfEnabled"=dword:022ab9b9
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{088e3905-0323-4b02-9826-5d99428e115f}]
|
||||
"HiddenByDefault"=dword:00000001
|
||||
|
||||
; Music
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
|
||||
"HideIfEnabled"=dword:022ab9b9
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}]
|
||||
"HiddenByDefault"=dword:00000001
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3dfdf296-dbec-4fb4-81d1-6a3438bcf4de}]
|
||||
"HiddenByDefault"=dword:00000001
|
||||
|
||||
; Pictures
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
|
||||
"HideIfEnabled"=dword:022ab9b9
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{24ad3ad4-a569-4530-98e1-ab02f9417aa8}]
|
||||
"HiddenByDefault"=dword:00000001
|
||||
|
||||
; Videos
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
|
||||
"HideIfEnabled"=dword:022ab9b9
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{f86fa3ab-70d2-4fc7-9c99-fcbf05467f3a}]
|
||||
"HiddenByDefault"=dword:00000001
|
||||
1435
Win11Debloat.ps1
1435
Win11Debloat.ps1
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user