mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2025-11-17 11:06:18 +00:00
Compare commits
3 Commits
2025.05.26
...
2025.06.11
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4165f9940d | ||
|
|
8bc12a5a85 | ||
|
|
67d529c22b |
@@ -14,6 +14,7 @@ Telemetry, Tracking & Suggested Content
|
||||
- Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads.
|
||||
- Disable tips, tricks, suggestions & ads across Windows.
|
||||
- Disable the 'Windows Spotlight' desktop background option.
|
||||
- Disable & hide the recommended section in the start menu. (W11 only)
|
||||
|
||||
Bing, Copilot & More
|
||||
- Disable & remove Bing web search & Cortana from Windows search.
|
||||
@@ -28,13 +29,12 @@ File Explorer
|
||||
- Hide the 3D objects, music or OneDrive folder from the File Explorer sidepanel. (W10 only)
|
||||
- Hide duplicate removable drive entries from the File Explorer sidepanel.
|
||||
|
||||
Taskbar & Start
|
||||
Taskbar
|
||||
- Align taskbar icons to the left. (W11 only)
|
||||
- Hide or change the search icon/box on the taskbar. (W11 only)
|
||||
- Hide the taskview button from the taskbar. (W11 only)
|
||||
- Disable the widgets service & hide icon from the taskbar.
|
||||
- Hide the chat (meet now) icon from the taskbar.
|
||||
- Disable & hide the recommended section in the start menu. (W11 only)
|
||||
- Enable the 'End Task' option in the taskbar right click menu. (W11 only)
|
||||
|
||||
Context menu
|
||||
|
||||
2
Get.ps1
2
Get.ps1
@@ -75,7 +75,7 @@ Write-Output "------------------------------------------------------------------
|
||||
Write-Output "> Downloading Win11Debloat..."
|
||||
|
||||
# Download latest version of Win11Debloat from github as zip archive
|
||||
Invoke-WebRequest https://github.com/Raphire/Win11Debloat/zipball/2025.05.26 -OutFile "$env:TEMP/win11debloat-temp.zip"
|
||||
Invoke-WebRequest https://github.com/Raphire/Win11Debloat/zipball/2025.06.11 -OutFile "$env:TEMP/win11debloat-temp.zip"
|
||||
|
||||
# Remove old script folder if it exists, except for CustomAppsList and SavedSettings files
|
||||
if (Test-Path "$env:TEMP/Win11Debloat") {
|
||||
|
||||
@@ -103,6 +103,7 @@ Below is an overview of the key features and functionality offered by Win11Deblo
|
||||
- Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads.
|
||||
- Disable tips, tricks, suggestions and ads in start, settings, notifications, File Explorer, and on the lockscreen.
|
||||
- Disable the 'Windows Spotlight' desktop background option.
|
||||
- Disable & hide the recommended section in the start menu. (W11 only)
|
||||
|
||||
#### Bing Web Search, Copilot & More
|
||||
|
||||
@@ -119,14 +120,13 @@ Below is an overview of the key features and functionality offered by Win11Deblo
|
||||
- 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.
|
||||
|
||||
#### Taskbar & Start
|
||||
#### Taskbar
|
||||
|
||||
- Align taskbar icons to the left. (W11 only)
|
||||
- Hide or change the search icon/box on the taskbar. (W11 only)
|
||||
- Hide the taskview button from the taskbar. (W11 only)
|
||||
- Disable the widgets service & hide icon from the taskbar.
|
||||
- Hide the chat (meet now) icon from the taskbar.
|
||||
- Disable & hide the recommended section in the start menu. (W11 only)
|
||||
- Enable the 'End Task' option in the taskbar right click menu. (W11 only)
|
||||
|
||||
#### Context Menu
|
||||
|
||||
@@ -595,7 +595,7 @@ function RestartExplorer {
|
||||
# Credit: https://lazyadmin.nl/win-11/customize-windows-11-start-menu-layout/
|
||||
function ReplaceStartMenuForAllUsers {
|
||||
param (
|
||||
$startMenuTemplate = "$PSScriptRoot/Start/start2.bin"
|
||||
$startMenuTemplate = "$PSScriptRoot/Assets/Start/start2.bin"
|
||||
)
|
||||
|
||||
Write-Output "> Removing all pinned apps from the start menu for all users..."
|
||||
@@ -613,7 +613,7 @@ function ReplaceStartMenuForAllUsers {
|
||||
|
||||
# Go through all users and replace the start menu file
|
||||
ForEach ($startMenuPath in $usersStartMenuPaths) {
|
||||
ReplaceStartMenu "$($startMenuPath.Fullname)\start2.bin" $startMenuTemplate
|
||||
ReplaceStartMenu $startMenuTemplate "$($startMenuPath.Fullname)\start2.bin"
|
||||
}
|
||||
|
||||
# Also replace the start menu file for the default user profile
|
||||
@@ -636,7 +636,7 @@ function ReplaceStartMenuForAllUsers {
|
||||
# Credit: https://lazyadmin.nl/win-11/customize-windows-11-start-menu-layout/
|
||||
function ReplaceStartMenu {
|
||||
param (
|
||||
$startMenuTemplate = "$PSScriptRoot/Start/start2.bin",
|
||||
$startMenuTemplate = "$PSScriptRoot/Assets/Start/start2.bin",
|
||||
$startMenuBinFile = "$env:LOCALAPPDATA\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalState\start2.bin"
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user