3 Commits

Author SHA1 Message Date
Raphire
4165f9940d Update Get.ps1 to new release 2025-06-11 00:07:25 +02:00
Raphire
8bc12a5a85 Fixed bug with clearing start for all users 2025-06-11 00:05:10 +02:00
Raphire
67d529c22b Move Disable start recommended option in feature list 2025-06-08 23:12:42 +02:00
6 changed files with 8 additions and 8 deletions

View File

@@ -14,6 +14,7 @@ Telemetry, Tracking & Suggested Content
- Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads. - Disable telemetry, diagnostic data, activity history, app-launch tracking & targeted ads.
- Disable tips, tricks, suggestions & ads across Windows. - Disable tips, tricks, suggestions & ads across Windows.
- Disable the 'Windows Spotlight' desktop background option. - Disable the 'Windows Spotlight' desktop background option.
- Disable & hide the recommended section in the start menu. (W11 only)
Bing, Copilot & More Bing, Copilot & More
- Disable & remove Bing web search & Cortana from Windows search. - 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 the 3D objects, music or OneDrive folder from the File Explorer sidepanel. (W10 only)
- Hide duplicate removable drive entries from the File Explorer sidepanel. - Hide duplicate removable drive entries from the File Explorer sidepanel.
Taskbar & Start Taskbar
- Align taskbar icons to the left. (W11 only) - Align taskbar icons to the left. (W11 only)
- Hide or change the search icon/box on the taskbar. (W11 only) - Hide or change the search icon/box on the taskbar. (W11 only)
- Hide the taskview button from the taskbar. (W11 only) - Hide the taskview button from the taskbar. (W11 only)
- Disable the widgets service & hide icon from the taskbar. - Disable the widgets service & hide icon from the taskbar.
- Hide the chat (meet now) 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) - Enable the 'End Task' option in the taskbar right click menu. (W11 only)
Context menu Context menu

View File

@@ -75,7 +75,7 @@ Write-Output "------------------------------------------------------------------
Write-Output "> Downloading Win11Debloat..." Write-Output "> Downloading Win11Debloat..."
# Download latest version of Win11Debloat from github as zip archive # 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 # Remove old script folder if it exists, except for CustomAppsList and SavedSettings files
if (Test-Path "$env:TEMP/Win11Debloat") { if (Test-Path "$env:TEMP/Win11Debloat") {

View File

@@ -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 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 tips, tricks, suggestions and ads in start, settings, notifications, File Explorer, and on the lockscreen.
- Disable the 'Windows Spotlight' desktop background option. - Disable the 'Windows Spotlight' desktop background option.
- Disable & hide the recommended section in the start menu. (W11 only)
#### Bing Web Search, Copilot & More #### 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 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. - 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) - Align taskbar icons to the left. (W11 only)
- Hide or change the search icon/box on the taskbar. (W11 only) - Hide or change the search icon/box on the taskbar. (W11 only)
- Hide the taskview button from the taskbar. (W11 only) - Hide the taskview button from the taskbar. (W11 only)
- Disable the widgets service & hide icon from the taskbar. - Disable the widgets service & hide icon from the taskbar.
- Hide the chat (meet now) 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) - Enable the 'End Task' option in the taskbar right click menu. (W11 only)
#### Context Menu #### Context Menu

View File

@@ -595,7 +595,7 @@ function RestartExplorer {
# Credit: https://lazyadmin.nl/win-11/customize-windows-11-start-menu-layout/ # Credit: https://lazyadmin.nl/win-11/customize-windows-11-start-menu-layout/
function ReplaceStartMenuForAllUsers { function ReplaceStartMenuForAllUsers {
param ( 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..." 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 # Go through all users and replace the start menu file
ForEach ($startMenuPath in $usersStartMenuPaths) { 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 # 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/ # Credit: https://lazyadmin.nl/win-11/customize-windows-11-start-menu-layout/
function ReplaceStartMenu { function ReplaceStartMenu {
param ( param (
$startMenuTemplate = "$PSScriptRoot/Start/start2.bin", $startMenuTemplate = "$PSScriptRoot/Assets/Start/start2.bin",
$startMenuBinFile = "$env:LOCALAPPDATA\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalState\start2.bin" $startMenuBinFile = "$env:LOCALAPPDATA\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalState\start2.bin"
) )