### Win11Debloat Script Execution Example Source: https://github.com/raphire/win11debloat/wiki/How-To-Use Demonstrates how to launch the Win11Debloat script with custom parameters, such as creating a restore point and running silently. ```PowerShell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) -RunDefaults -Silent ``` -------------------------------- ### Restore Start Menu Layout Source: https://github.com/raphire/win11debloat/wiki/Reverting-Changes Steps to restore the original Start Menu layout by replacing the current configuration file with a backup. This involves navigating to a specific directory and renaming/copying files. ```batch REM Navigate to the Start Menu state directory cd %localappdata%\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalState\ REM Rename the current start menu file ren start2.bin start2.bin.old REM Copy the backup file to the current file copy start2.bin.bak start2.bin REM Sign out or restart to apply changes ``` -------------------------------- ### Download and Run Latest Win11Debloat Source: https://github.com/raphire/win11debloat/wiki/Automation Automatically downloads and executes the latest version of Win11Debloat with specified parameters for silent operation, restore point creation, app removal, and telemetry disabling. ```powershell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) -Silent -CreateRestorePoint -RemoveApps -DisableTelemetry ``` -------------------------------- ### Automate Win11Debloat with Task Scheduler (Local Script) Source: https://github.com/raphire/win11debloat/wiki/Automation Configures a Task Scheduler task to run Win11Debloat from a local file path with specified parameters. This example demonstrates running the script with default settings in a silent mode. ```powershell "C:\Win11Debloat\Win11Debloat.ps1" -RunDefaults -Silent ``` -------------------------------- ### Replace Pinned Apps Layout Source: https://github.com/raphire/win11debloat/wiki/Advanced-Features Replaces the pinned apps layout in the Windows 11 Start menu by substituting the 'start2.bin' file. Requires a valid template file from a Windows installation version 22621 or later. Use -ReplaceStart for the current user or -ReplaceStartAllUsers for all users. ```PowerShell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) -ReplaceStart "C:/start2.bin" ``` -------------------------------- ### Automate Win11Debloat with Task Scheduler (Download & Run) Source: https://github.com/raphire/win11debloat/wiki/Automation Configures Task Scheduler to automatically download and run the latest Win11Debloat script. This method ensures the most recent version is used with silent execution and default settings. ```powershell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) -RunDefaults -Silent ``` -------------------------------- ### Execute Win11Debloat Script with Parameters Source: https://github.com/raphire/win11debloat/wiki/App-Removal Demonstrates how to execute the Win11Debloat script with specific parameters to remove predefined groups of applications. This example shows removing gaming-related apps. ```PowerShell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) -RemoveGamingApps ``` -------------------------------- ### Run Win11Debloat in Background Process Source: https://github.com/raphire/win11debloat/wiki/Automation Launches Win11Debloat in a hidden PowerShell window with administrator privileges. This example uses a local script file and applies default settings for silent execution. ```powershell Start-Process powershell.exe -PassThru -ArgumentList "-executionpolicy bypass -WindowStyle Hidden -File C:\Win11Debloat\Win11Debloat.ps1 -Silent -RunDefaults" -Verb RunAs ``` -------------------------------- ### Automate Win11Debloat with Task Scheduler (Hidden Window) Source: https://github.com/raphire/win11debloat/wiki/Automation Sets up a Task Scheduler task to execute Win11Debloat in a hidden window from a local file. This ensures silent operation and applies default configurations. ```powershell -WindowStyle Hidden "C:\Win11Debloat\Win11Debloat.ps1" -RunDefaults -Silent ``` -------------------------------- ### Disable Suggestions and UI Elements Source: https://github.com/raphire/win11debloat/wiki/How-To-Use Disables tips, tricks, suggestions, and ads in Start, Settings, and File Explorer. Hides the Settings Home page and disables Microsoft 365 ads in Settings. ```powershell -DisableSuggestions -DisableSettings365Ads -DisableSettingsHome ``` -------------------------------- ### Win11Debloat Command-Line Parameters Source: https://github.com/raphire/win11debloat/wiki/How-To-Use A comprehensive list of parameters for the Win11Debloat script, detailing their functionality and usage for customizing the debloating process. ```APIDOC Win11Debloat Parameters: -CreateRestorePoint - Description: Creates a system restore point before making any changes. Only creates one if not already created in the last 24 hours. -Silent - Description: Suppresses all interactive prompts, enabling the script to run without user input. -Sysprep - Description: Runs the script in Sysprep mode. Changes are applied to the default user profile and affect only new user accounts. See [Advanced Features](https://github.com/Raphire/Win11Debloat/wiki/Advanced-Features#sysprep-mode) for more details. -LogPath - Description: Specifies the folder where the log file will be saved. Defaults to the script's root folder if no path is provided or the path is invalid. -User - Description: Runs the script for a specified user who has logged in at least once and is not currently logged in. See [Advanced Features](https://github.com/Raphire/Win11Debloat/wiki/Advanced-Features#running-as-another-user) for more details. -RunDefaults - Description: Executes the script using the [default settings](https://github.com/Raphire/Win11Debloat/wiki/Default-Settings). -RunSavedSettings - Description: Runs the script with custom settings previously saved to the `SavedSettings` file in the script's root folder. -RemoveApps - Description: Removes the [default selection](https://github.com/Raphire/Win11Debloat/wiki/App-Removal#default-apps) of bloatware applications. -RemoveAppsCustom - Description: Removes applications listed in the `CustomAppsList` file. No apps are removed if this file does not exist. Generate the list using `-RunAppsListGenerator`. -RunAppsListGenerator - Description: Generates a custom app list saved to `CustomAppsList` for use with `-RemoveAppsCustom`. -RemoveHPApps - Description: Removes preinstalled HP applications. See [HP Apps](https://github.com/Raphire/Win11Debloat/wiki/App-Removal#hp-apps) for a full list. -RemoveCommApps - Description: Removes the Mail, Calendar, and People applications. -RemoveW11Outlook - Description: Removes the new Outlook for Windows application. -RemoveDevApps - Description: Removes developer-related applications like Remote Desktop, DevHome, and Power Automate. -RemoveGamingApps - Description: Removes the Xbox App and Xbox Gamebar. -ForceRemoveEdge - Description: Forcefully removes Microsoft Edge, leaving Core, WebView, and Update components. Not recommended. -DisableDVR - Description: Disables the Xbox game/screen recording feature and stops gaming overlay popups. -ClearStart - Description: Removes all pinned apps from the Start menu for the current user (Windows 11 update 22H2 or later only). -ClearStartAllUsers - Description: Removes all pinned apps from the Start menu for all existing and new users (Windows 11 update 22H2 or later only). -ReplaceStart - Description: Replaces the pinned apps layout in the Start menu for the current user with a template file. See [Advanced Features](https://github.com/Raphire/Win11Debloat/wiki/Advanced-Features#replacing-pinned-apps-layout-in-start) for details (Windows 11 update 22H2 or later only). -ReplaceStartAllUsers - Description: Replaces the pinned apps layout in the Start menu for all users with a template file. See [Advanced Features](https://github.com/Raphire/Win11Debloat/wiki/Advanced-Features#replacing-pinned-apps-layout-in-start) for details (Windows 11 update 22H2 or later only). -DisableStartRecommended - Description: Disables and hides the 'Recommended' section in the Start menu, changing the layout to 'More pins'. -DisableStartPhoneLink - Description: Disables Phone Link mobile device integration in the Start menu without uninstalling or disabling the Phone Link application itself. ``` -------------------------------- ### Quick PowerShell Script Execution Source: https://github.com/raphire/win11debloat/wiki/How-To-Use This snippet demonstrates how to download and execute the Win11Debloat script directly from PowerShell. It uses the `irm` (Invoke-RestMethod) cmdlet to fetch the script from a URL and then executes it using `scriptblock::Create`. Files are temporarily stored in the user's temp directory. ```PowerShell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) ``` -------------------------------- ### Traditional Batch File Execution Source: https://github.com/raphire/win11debloat/wiki/How-To-Use This method involves downloading the script as a .ZIP file, extracting it, and then running the `Run.bat` file. It requires accepting a Windows UAC prompt to run with administrator privileges. If the console closes immediately, an advanced method is suggested. ```Batch Run.bat ``` -------------------------------- ### Advanced PowerShell Script Execution Source: https://github.com/raphire/win11debloat/wiki/How-To-Use This method involves manually downloading the script, setting the PowerShell execution policy for the current process, navigating to the script's directory, and then running the script. It's recommended for advanced users and allows for command-line parameter customization. ```PowerShell Set-ExecutionPolicy Unrestricted -Scope Process -Force ``` ```PowerShell cd c:\Win11Debloat ``` ```PowerShell .\Win11Debloat.ps1 ``` -------------------------------- ### Run Win11Debloat with Default Settings Source: https://github.com/raphire/win11debloat/blob/master/README.md This snippet demonstrates how to execute the Win11Debloat script with the `-RunDefaults` parameter to apply the recommended default settings. This is a quick way to optimize Windows 11 for most users. ```PowerShell & ([scriptblock]::Create((irm "https://debloat.raphi.re/'))) -RunDefaults ``` -------------------------------- ### Customization Instructions for Debloat Script Source: https://github.com/raphire/win11debloat/blob/master/Appslist.txt This section provides instructions on how to customize the debloat script by uncommenting applications that the user wishes to uninstall. It highlights the default behavior of the script, which is not to uninstall any applications unless explicitly configured. ```text # ------------------------------------------------------------------------------------------------------------- # # The apps below this line will NOT be uninstalled by default. Remove the # character in front of any app you # # want to UNINSTALL by default. # ``` -------------------------------- ### Gaming Apps Not Removed Source: https://github.com/raphire/win11debloat/blob/master/README.md This section lists gaming-related applications that are not removed by default. These include the Xbox Game App, Game Overlay, and related identity and speech services, which are often required for installing or running certain games. The asterisk (*) indicates that these can be removed using specific script parameters. ```powershell Get-AppxPackage *Microsoft.GamingApp* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.XboxGameOverlay* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.XboxGamingOverlay* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.XboxIdentityProvider* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.XboxSpeechToTextOverlay* | Remove-AppxPackage -ErrorAction SilentlyContinue ``` -------------------------------- ### Reinstall Apps using WinGet Source: https://github.com/raphire/win11debloat/wiki/Reverting-Changes Instructions on how to reinstall applications that were removed by Win11Debloat using the Windows Package Manager (WinGet). This is an alternative to using the Microsoft Store. ```powershell winget install ``` -------------------------------- ### Microsoft Windows 11 Packages Source: https://github.com/raphire/win11debloat/blob/master/Appslist.txt This section lists common Microsoft applications found in Windows 11, detailing their purpose and potential dependencies. Some packages have specific warnings regarding reinstallation or regional availability. ```PowerShell # Microsoft.BingSearch # Web Search from Microsoft Bing (Integrates into Windows Search) # Microsoft.Copilot # New Microsoft Copilot app (AI assistant) # Microsoft.Edge # Edge browser (Can only be uninstalled in European Economic Area) # Microsoft.GamingApp # Modern Xbox Gaming App, required for installing some PC games # Microsoft.GetHelp # Required for some Windows 11 Troubleshooters and support interactions # Microsoft.MSPaint # Paint 3D (Modern paint application with 3D features) # Microsoft.OneDrive # OneDrive consumer cloud storage client # Microsoft.OutlookForWindows # New mail app: Outlook for Windows # Microsoft.Paint # Classic Paint (Traditional 2D paint application) # Microsoft.People # Required for & included with Mail & Calendar (Contacts management) # Microsoft.PowerAutomateDesktop # Desktop automation tool (RPA) # Microsoft.RemoteDesktop # Remote Desktop client app # Microsoft.ScreenSketch # Snipping Tool (Screenshot and annotation tool) # Microsoft.StartExperiencesApp # This app powers Windows Widgets My Feed # Microsoft.Whiteboard # Digital collaborative whiteboard app # Microsoft.Windows.DevHome # Developer dashboard and tool configuration utility # Microsoft.Windows.Photos # Default photo viewing and basic editing app # Microsoft.WindowsCalculator # Calculator app # Microsoft.WindowsCamera # Camera app for using built-in or connected cameras # Microsoft.windowscommunicationsapps # Mail & Calendar app suite # Microsoft.WindowsNotepad # Notepad text editor app # Microsoft.WindowsStore # Microsoft Store, WARNING: This app cannot be reinstalled easily if removed! # Microsoft.WindowsTerminal # New default terminal app in windows 11 (Command Prompt, PowerShell, WSL) # Microsoft.Xbox.TCUI # UI framework, seems to be required for MS store, photos and certain games # Microsoft.XboxGameOverlay # Game overlay, required/useful for some games (Part of Xbox Game Bar) # Microsoft.XboxGamingOverlay # Game overlay, required/useful for some games (Part of Xbox Game Bar) # Microsoft.XboxIdentityProvider # Xbox sign-in framework, required for some games and Xbox services # Microsoft.XboxSpeechToTextOverlay # Might be required for some games, WARNING: This app cannot be reinstalled easily! (Accessibility feature) # Microsoft.YourPhone # Phone link (Connects Android/iOS phone to PC) # Microsoft.ZuneMusic # Modern Media Player (Replaced Groove Music, plays local audio/video) # MicrosoftWindows.CrossDevice # Phone integration within File Explorer, Camera and more (Part of Phone Link features) ``` -------------------------------- ### Run Win11Debloat Default Mode Source: https://github.com/raphire/win11debloat/wiki/Default-Settings This snippet demonstrates how to execute the Win11Debloat script in its default mode, which applies recommended optimizations. It can be run directly via a URL or by selecting option '1' within the script's interactive menu. ```Powershell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) -RunDefaults ``` -------------------------------- ### Disable Windows Spotlight and Lockscreen Tips Source: https://github.com/raphire/win11debloat/wiki/How-To-Use Disables the Windows Spotlight desktop background option and tips/tricks on the lock screen. ```powershell -DisableDesktopSpotlight -DisableLockscreenTips ``` -------------------------------- ### Customizing App Removal with Appslist.txt Source: https://github.com/raphire/win11debloat/wiki/App-Removal Explains how to customize the list of applications removed by the Win11Debloat script by directly editing the `Appslist.txt` file. This method requires a local download of the script. ```APIDOC Editing Appslist.txt: Purpose: Customize the default app removal list. Location: Root directory of the script. Method: Add a '#' character before an app to keep it, or remove '#' to remove it. Requirement: Script must be downloaded locally; does not work with the quick launch method. Example: #Microsoft.PowerAutomateDesktop (This app will be kept) Microsoft.RemoteDesktop (This app will be removed) ``` -------------------------------- ### File Explorer and View Options Source: https://github.com/raphire/win11debloat/wiki/How-To-Use Shows hidden files, folders, and drives, and displays file extensions for known file types. Hides duplicate removable drive entries. ```powershell -ShowHiddenFolders -ShowKnownFileExt -HideDupliDrive ``` -------------------------------- ### File Explorer and Context Menu Options (Windows 10) Source: https://github.com/raphire/win11debloat/wiki/How-To-Use Hides the OneDrive folder, 3D Objects, Music folder, 'Include in library' option, and 'Give access to' option in the context menu. ```powershell -HideOnedrive -Hide3dObjects -HideMusic -HideIncludeInLibrary -HideGiveAccessTo ``` -------------------------------- ### List of Debloatable Windows 11 Apps Source: https://github.com/raphire/win11debloat/blob/master/Appslist.txt This section provides a categorized list of applications commonly found on Windows 11 that can be removed to optimize the system. The list includes social media apps, games, productivity tools, and entertainment services. Users can uncomment specific applications to include them in the uninstallation process. ```text EclipseManager # Often related to specific OEM software or utilities (e.g., for managing screen settings) Facebook # Facebook social media app FarmVille2CountryEscape # Farming simulation game fitbit # Fitbit activity tracker companion app Flipboard # News and social network aggregator styled as a magazine HiddenCity # Hidden object puzzle adventure game HULULLC.HULUPLUS # Hulu streaming service app iHeartRadio # Internet radio streaming app Instagram # Instagram social media app king.com.BubbleWitch3Saga # Puzzle game from King king.com.CandyCrushSaga # Puzzle game from King king.com.CandyCrushSodaSaga # Puzzle game from King LinkedInforWindows # LinkedIn professional networking app MarchofEmpires # Strategy game Netflix # Netflix streaming service app NYTCrossword # New York Times crossword puzzle app OneCalendar # Calendar aggregation app PandoraMediaInc # Pandora music streaming app PhototasticCollage # Photo collage creation app PicsArt-PhotoStudio # Photo editing and creative app Plex # Media server and player app PolarrPhotoEditorAcademicEdition # Photo editing app (Academic Edition) Royal Revolt # Tower defense / strategy game Shazam # Music identification app Sidia.LiveWallpaper # Live wallpaper app SlingTV # Live TV streaming service app Spotify # Spotify music streaming app TikTok # TikTok short-form video app TuneInRadio # Internet radio streaming app Twitter # Twitter (now X) social media app Viber # Messaging and calling app WinZipUniversal # File compression and extraction utility (Universal Windows Platform version) Wunderlist # To-do list app (Acquired by Microsoft, functionality moved to Microsoft To Do) XING # Professional networking platform popular in German-speaking countries ``` -------------------------------- ### Sysprep Mode with Windows Audit Mode Source: https://github.com/raphire/win11debloat/wiki/Advanced-Features Allows modifications to a Windows image before any accounts are created. Enter Windows Audit Mode (CTRL+SHIFT+F3 on OOBE screen), then run the script with the -Sysprep parameter in a new administrator PowerShell window. Exit Audit Mode after completion. ```PowerShell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) -Sysprep ``` -------------------------------- ### HP OEM Software Packages Source: https://github.com/raphire/win11debloat/blob/master/Appslist.txt This section lists various HP OEM software packages, including utilities for AI features, music, photos, diagnostics, and support. Some packages may be discontinued or have specific functions related to HP hardware. ```PowerShell # AD2F1837.HPAIExperienceCenter # HP OEM software, AI-enhanced features and support # AD2F1837.HPConnectedMusic # HP OEM software for music (Potentially discontinued) # AD2F1837.HPConnectedPhotopoweredbySnapfish # HP OEM software for photos, integrated with Snapfish (Potentially discontinued) # AD2F1837.HPDesktopSupportUtilities # HP OEM software providing desktop support tools # AD2F1837.HPEasyClean # HP OEM software for system cleaning or optimization # AD2F1837.HPFileViewer # HP OEM software for viewing specific file types # AD2F1837.HPJumpStarts # HP OEM software for tutorials, app discovery, or quick access to HP features # AD2F1837.HPPCHardwareDiagnosticsWindows # HP OEM software for PC hardware diagnostics # AD2F1837.HPPowerManager # HP OEM software for managing power settings and battery # AD2F1837.HPPrinterControl # HP OEM software for managing HP printers # AD2F1837.HPPrivacySettings # HP OEM software for managing privacy settings # AD2F1837.HPQuickDrop # HP OEM software for quick file transfer between devices # AD2F1837.HPQuickTouch # HP OEM software, possibly for touch-specific shortcuts or controls # AD2F1837.HPRegistration # HP OEM software for product registration # AD2F1837.HPSupportAssistant # HP OEM software for support, updates, and troubleshooting # AD2F1837.HPSureShieldAI # HP OEM security software, likely AI-based threat protection ``` -------------------------------- ### Generate Custom Apps List Source: https://github.com/raphire/win11debloat/wiki/App-Removal This PowerShell command downloads and executes the Win11Debloat script with the `-RunAppsListGenerator` parameter to create a custom app list without performing any removals. ```powershell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) -RunAppsListGenerator ``` -------------------------------- ### Visual Customization Source: https://github.com/raphire/win11debloat/wiki/How-To-Use Enables dark mode for the system and apps, disables transparency effects, and turns off animations and visual effects. ```powershell -EnableDarkMode -DisableTransparency -DisableAnimations ``` -------------------------------- ### Run Win11Debloat Automatically Source: https://github.com/raphire/win11debloat/blob/master/README.md This snippet demonstrates how to download and run the Win11Debloat script directly from PowerShell. It automatically fetches the latest version of the script and executes it. The script supports command-line parameters for customization. ```PowerShell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) ``` -------------------------------- ### Win11Debloat Default Mode Features Source: https://github.com/raphire/win11debloat/blob/master/README.md Lists the changes included in the default mode of the Win11Debloat script. These settings are recommended for most users and cover app uninstallation, telemetry disabling, UI improvements, and feature management. ```APIDOC Win11Debloat Default Mode Features: - Removes default bloatware apps. - Disables telemetry, diagnostic data, activity history, app-launch tracking, and targeted ads. - Disables tips, tricks, suggestions, and ads in Start, Settings, Notifications, File Explorer, and on the lock screen. - Disables ads and the MSN news feed in Microsoft Edge. - Disables and removes Bing web search, Bing AI, and Cortana from Windows search. - Disables and removes Microsoft Copilot (W11 only). - Disables Fast Start-up for a full shutdown. - Shows file extensions for known file types. - Hides the 3D objects folder under 'This PC' from File Explorer (W10 only). - Disables the widget service and hides the icon from the taskbar. - Hides the Chat (meet now) icon from the taskbar. ``` -------------------------------- ### Revert Other Changes with Registry Files Source: https://github.com/raphire/win11debloat/wiki/Reverting-Changes General guidance on reverting other system modifications made by Win11Debloat using provided registry files. Users can find these files in the 'Regfiles\Undo' directory of the script or download them individually. ```registry REM Example: To revert a specific change, run the corresponding .reg file. REM For instance, if a file named 'Revert_SomeSetting.reg' exists, double-clicking it will apply the changes. ``` -------------------------------- ### Disable Input and Startup Enhancements Source: https://github.com/raphire/win11debloat/wiki/How-To-Use Turns off mouse acceleration (Enhance Pointer Precision) and disables the Sticky Keys keyboard shortcut. Also disables Fast Startup for a full shutdown. ```powershell -DisableMouseAcceleration -DisableStickyKeys -DisableFastStartup ``` -------------------------------- ### Enable Sysprep Mode Source: https://github.com/raphire/win11debloat/wiki/Advanced-Features Modifies the default user profile so that new user accounts automatically inherit script changes. Some changes may only be visible after the first user login or a sign-out/sign-in cycle. ```PowerShell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) -Sysprep ``` -------------------------------- ### Win11Debloat Script App Removal Parameters Source: https://github.com/raphire/win11debloat/wiki/App-Removal Lists and describes the parameters available in the Win11Debloat script for removing specific categories of applications. This includes default bloatware, custom app lists, communication apps, developer tools, gaming apps, and HP-specific apps. ```APIDOC Win11Debloat Parameters: -RemoveApps: Description: Remove the default selection of bloatware apps. -RemoveAppsCustom: Description: Remove all apps specified in the `CustomAppsList` file. No apps will be removed if this file does not exist. Requires generating the list using `-RunAppsListGenerator`. -RemoveCommApps: Description: Remove the Mail, Calendar, and People apps. -RemoveW11Outlook: Description: Remove the new Outlook for Windows app. -RemoveDevApps: Description: Remove developer-related apps such as Remote Desktop, DevHome and Power Automate. Apps Removed: - Microsoft.PowerAutomateDesktop - Microsoft.RemoteDesktop - Windows.DevHome -RemoveGamingApps: Description: Remove the Xbox App and Xbox Gamebar. Apps Removed: - Microsoft.GamingApp (Modern Xbox Gaming App, required for installing some games) - Microsoft.XboxGameOverlay (Game overlay, required for some games) - Microsoft.XboxGamingOverlay (Game overlay, required for some games) -RemoveHPApps: Description: Remove preinstalled HP apps. Apps Removed: - AD2F1837.HPAIExperienceCenter - AD2F1837.HPConnectedMusic - AD2F1837.HPConnectedPhotopoweredbySnapfish - AD2F1837.HPDesktopSupportUtilities - AD2F1837.HPEasyClean - AD2F1837.HPFileViewer - AD2F1837.HPJumpStarts - AD2F1837.HPPCHardwareDiagnosticsWindows - AD2F1837.HPPowerManager - AD2F1837.HPPrinterControl - AD2F1837.HPPrivacySettings - AD2F1837.HPQuickDrop - AD2F1837.HPQuickTouch - AD2F1837.HPRegistration - AD2F1837.HPSupportAssistant - AD2F1837.HPSureShieldAI - AD2F1837.HPSystemInformation - AD2F1837.HPWelcome - AD2F1837.HPWorkWell - AD2F1837.myHP ``` -------------------------------- ### General Apps Not Removed Source: https://github.com/raphire/win11debloat/blob/master/README.md This section lists essential general applications that are not removed by default. These include core Windows components like the Edge browser, calculator, photos app, and the Microsoft Store. Some apps have specific notes regarding their necessity or limitations. ```powershell Get-AppxPackage *Microsoft.Edge* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.GetHelp* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.MSPaint* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.OutlookForWindows* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.OneDrive* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.Paint* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.People* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.ScreenSketch* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.Whiteboard* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.Windows.Photos* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.WindowsCalculator* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.WindowsCamera* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.WindowsNotepad* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.windowscommunicationsapps* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.WindowsStore* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.WindowsTerminal* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.YourPhone* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.Xbox.TCUI* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.ZuneMusic* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *MicrosoftWindows.CrossDevice* | Remove-AppxPackage -ErrorAction SilentlyContinue ``` -------------------------------- ### Third-Party and OEM Apps for Removal Source: https://github.com/raphire/win11debloat/blob/master/Appslist.txt This section lists non-Microsoft applications that may be pre-installed on Windows 11 systems, often by original equipment manufacturers (OEMs). These can include media players, games, and specialized software. Removing these apps can free up disk space and system resources. ```powershell Get-AppxPackage *ACGMediaPlayer* | Remove-AppxPackage Get-AppxPackage *ActiproSoftwareLLC* | Remove-AppxPackage Get-AppxPackage *AdobeSystemsIncorporated.AdobePhotoshopExpress* | Remove-AppxPackage Get-AppxPackage *Amazon.com.Amazon* | Remove-AppxPackage Get-AppxPackage *AmazonVideo.PrimeVideo* | Remove-AppxPackage Get-AppxPackage *Asphalt8Airborne* | Remove-AppxPackage Get-AppxPackage *AutodeskSketchBook* | Remove-AppxPackage Get-AppxPackage *CaesarsSlotsFreeCasino* | Remove-AppxPackage Get-AppxPackage *COOKINGFEVER* | Remove-AppxPackage Get-AppxPackage *CyberLinkMediaSuiteEssentials* | Remove-AppxPackage Get-AppxPackage *DisneyMagicKingdoms* | Remove-AppxPackage Get-AppxPackage *Disney* | Remove-AppxPackage Get-AppxPackage *DrawboardPDF* | Remove-AppxPackage Get-AppxPackage *Duolingo-LearnLanguagesforFree* | Remove-AppxPackage ``` -------------------------------- ### Run Win11Debloat as Another User Source: https://github.com/raphire/win11debloat/wiki/Advanced-Features Applies changes to a different user profile without needing to switch accounts. The target user must have logged in at least once and cannot be logged in during script execution. ```PowerShell & ([scriptblock]::Create((irm "https://debloat.raphi.re/"))) -User jack ``` -------------------------------- ### Identify HP OEM Software Source: https://github.com/raphire/win11debloat/blob/master/Appslist.txt This snippet lists HP OEM software packages identified by their application IDs. It's intended for system administrators or users looking to remove unnecessary bloatware from HP laptops running Windows 11. ```powershell #AD2F1837.HPSystemInformation # HP OEM software for displaying system information #AD2F1837.HPWelcome # HP OEM software providing a welcome experience or initial setup help #AD2F1837.HPWorkWell # HP OEM software focused on well-being, possibly with break reminders or ergonomic tips #AD2F1837.myHP # HP OEM central hub app for device info, support, and services ``` -------------------------------- ### Run Win11Debloat Manually via PowerShell Source: https://github.com/raphire/win11debloat/blob/master/README.md This method involves manually downloading the Win11Debloat script, extracting it, and then running it via PowerShell. It requires temporarily changing the PowerShell execution policy to 'Unrestricted' for the current process. This method is recommended for advanced users and allows for parameter customization. ```PowerShell Set-ExecutionPolicy Unrestricted -Scope Process -Force # Navigate to the extracted script directory, e.g.: # cd c:\Win11Debloat .Win11Debloat.ps1 ``` -------------------------------- ### File Explorer Navigation Pane Customization (Windows 11) Source: https://github.com/raphire/win11debloat/wiki/How-To-Use Hides the Home and Gallery sections from the File Explorer navigation pane. Allows changing the default File Explorer view to Home, This PC, Downloads, or OneDrive. ```powershell -HideHome -HideGallery -ExplorerToHome -ExplorerToThisPC -ExplorerToDownloads -ExplorerToOneDrive ``` -------------------------------- ### Microsoft Built-in Apps for Removal Source: https://github.com/raphire/win11debloat/blob/master/Appslist.txt This section lists Microsoft applications that are commonly included with Windows 11 and can be removed. It includes productivity tools, media players, and system utilities. Removal may impact functionality if the app is essential for certain system features. ```powershell Get-AppxPackage *Clipchamp* | Remove-AppxPackage Get-AppxPackage *Microsoft.3DBuilder* | Remove-AppxPackage Get-AppxPackage *Microsoft.549981C3F5F10* | Remove-AppxPackage Get-AppxPackage *Microsoft.BingFinance* | Remove-AppxPackage Get-AppxPackage *Microsoft.BingFoodAndDrink* | Remove-AppxPackage Get-AppxPackage *Microsoft.BingHealthAndFitness* | Remove-AppxPackage Get-AppxPackage *Microsoft.BingNews* | Remove-AppxPackage Get-AppxPackage *Microsoft.BingSports* | Remove-AppxPackage Get-AppxPackage *Microsoft.BingTranslator* | Remove-AppxPackage Get-AppxPackage *Microsoft.BingTravel* | Remove-AppxPackage Get-AppxPackage *Microsoft.BingWeather* | Remove-AppxPackage Get-AppxPackage *Microsoft.Copilot* | Remove-AppxPackage Get-AppxPackage *Microsoft.Messaging* | Remove-AppxPackage Get-AppxPackage *Microsoft.Microsoft3DViewer* | Remove-AppxPackage Get-AppxPackage *Microsoft.MicrosoftJournal* | Remove-AppxPackage Get-AppxPackage *Microsoft.MicrosoftOfficeHub* | Remove-AppxPackage Get-AppxPackage *Microsoft.MicrosoftPowerBIForWindows* | Remove-AppxPackage Get-AppxPackage *Microsoft.MicrosoftSolitaireCollection* | Remove-AppxPackage Get-AppxPackage *Microsoft.MicrosoftStickyNotes* | Remove-AppxPackage Get-AppxPackage *Microsoft.MixedReality.Portal* | Remove-AppxPackage Get-AppxPackage *Microsoft.NetworkSpeedTest* | Remove-AppxPackage Get-AppxPackage *Microsoft.News* | Remove-AppxPackage Get-AppxPackage *Microsoft.Office.OneNote* | Remove-AppxPackage Get-AppxPackage *Microsoft.Office.Sway* | Remove-AppxPackage Get-AppxPackage *Microsoft.OneConnect* | Remove-AppxPackage Get-AppxPackage *Microsoft.Print3D* | Remove-AppxPackage Get-AppxPackage *Microsoft.SkypeApp* | Remove-AppxPackage Get-AppxPackage *Microsoft.Todos* | Remove-AppxPackage Get-AppxPackage *Microsoft.WindowsAlarms* | Remove-AppxPackage Get-AppxPackage *Microsoft.WindowsFeedbackHub* | Remove-AppxPackage Get-AppxPackage *Microsoft.WindowsMaps* | Remove-AppxPackage Get-AppxPackage *Microsoft.WindowsSoundRecorder* | Remove-AppxPackage Get-AppxPackage *Microsoft.XboxApp* | Remove-AppxPackage Get-AppxPackage *Microsoft.ZuneVideo* | Remove-AppxPackage Get-AppxPackage *MicrosoftCorporationII.MicrosoftFamily* | Remove-AppxPackage Get-AppxPackage *MicrosoftCorporationII.QuickAssist* | Remove-AppxPackage Get-AppxPackage *MicrosoftTeams* | Remove-AppxPackage Get-AppxPackage *MSTeams* | Remove-AppxPackage ``` -------------------------------- ### Taskbar Customization (Windows 11) Source: https://github.com/raphire/win11debloat/wiki/How-To-Use Aligns taskbar icons to the left, hides or shows the search icon/label/box, hides the taskview button, and hides the chat (meet now) icon. ```powershell -TaskbarAlignLeft -HideSearchTb -ShowSearchIconTb -ShowSearchLabelTb -ShowSearchBoxTb -HideTaskview -HideChat ``` -------------------------------- ### Disable Windows 11 Specific Features Source: https://github.com/raphire/win11debloat/wiki/How-To-Use Disables Microsoft Copilot, Windows Recall snapshots, and AI features in Edge, Paint, and Notepad. Also reverts the context menu to the Windows 10 style. ```powershell -DisableCopilot -DisableRecall -DisableEdgeAI -DisablePaintAI -DisableNotepadAI -RevertContextMenu ``` -------------------------------- ### Developer Apps Not Removed Source: https://github.com/raphire/win11debloat/blob/master/README.md This section lists developer-focused applications that are not removed by default. This includes Power Automate Desktop, Remote Desktop, and Windows Dev Home. The asterisk (*) indicates that these can be removed using specific script parameters. ```powershell Get-AppxPackage *Microsoft.PowerAutomateDesktop* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Microsoft.RemoteDesktop* | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxPackage *Windows.DevHome* | Remove-AppxPackage -ErrorAction SilentlyContinue ``` -------------------------------- ### Re-enable Bing Web Search Source: https://github.com/raphire/win11debloat/wiki/Reverting-Changes Instructions to re-enable Bing Web Search in Windows Search by applying a registry file. This may also involve reinstalling the 'Web Search from Microsoft Bing' app for EEA users. ```registry Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer] "DisableSearchBoxSuggestions"=dword:00000000 "DisableBingIntegration"=dword:00000000 ```