├── LICENSE ├── README.md ├── RegFilestoRemoveFoldersAndApps ├── Add Mixed Reality To Settings.reg ├── Remove cab files as folders.reg ├── Remove edit with Paint 3D context_menu.reg ├── Remove folders from This PC │ ├── Remove 3D Objects From This PC 64-bit.reg │ ├── Remove Desktop From This PC 64-bit.reg │ ├── Remove Documents From This PC 64-bit.reg │ ├── Remove Downloads From This PC 64-bit.reg │ ├── Remove Mixed Reality From Settings.reg │ ├── Remove Music From This PC 64-bit.reg │ ├── Remove Pictures From This PC 64-bit.reg │ └── Remove Videos From This PC 64-bit.reg ├── Remove zip files as folders.reg └── Restore folders to This PC │ ├── Restore Desktop To This PC 64-bit.reg │ ├── Restore Documents To This PC 64-bit.reg │ ├── Restore Downloads To This PC 64-bit.reg │ ├── Restore Music To This PC 64-bit.reg │ ├── Restore Pictures To This PC 64-bit.reg │ └── Restore Videos To This PC 64-bit.reg ├── Win10AppRemove.ps1 └── registry-status-bar-onedrive-entry.jpg /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 WurstCommander 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Windows 10 Apps Remover / Debloater 2 | 3 | ## Description 4 | 5 | Powershell script which deinstalls / removes the preinstalled Windows 10 apps (bloatware), this script can remove 6 | even mandatory apps like XBox which can't be deinstalled with normal measures like startmenu, programms and features and so on. 7 | Basicly it's debloating your Windows 10 install. 8 | 9 | ## Instructions 10 | 11 | At first, I would suggest that you deinstall all apps which you don't need via the start menu. 12 | Hover over the icon in the start menu, right click and choose "deinstall". This is the "normal" way to remove apps which aren't reluctant like the ones this script removes. 13 | 14 | **If this is your first time executing PowerShell Scripts you have to allow scripts to be executed. 15 | To do this, execute this command in the PowerShell: ```Set-ExecutionPolicy Unrestricted```. 16 | After using the script you can that the execute level back to "Set-ExecutionPolicy Restricted" if you like.** 17 | 18 | (More here: http://windowsitpro.com/powershell/running-powershell-scripts-easy-1-2-3 and here: https://technet.microsoft.com/en-us/library/ee176961.aspx) 19 | 20 | 1. Copy the script onto your hard drive 21 | 22 | 2. Edit the Powershell-Script (Win10AppRemove.ps1) and comment out the apps which you don't want to remove. 23 | Just put # before the line with the command like: 24 | 25 | #get-appxpackage -allusers *alarms* | remove-appxpackage 26 | 27 | All apps without the comment character will be removed. 28 | 29 | 3. Start Windows Power Shell **with admin rights** (right click and "run as administrator") and start the script. Without admin rights the script will do nothing. 30 | 31 | ### Supported apps 32 | 33 | - Alarms & Clock 34 | - App Connector 35 | - App Installer 36 | - Calendar and Mail apps together 37 | - Calculator 38 | - Camera 39 | - Feedback Hub 40 | - Get Office 41 | - Get Started or Tips 42 | - Get Skype 43 | - Groove Music 44 | - Groove Music and Movies & TV apps together 45 | - Maps 46 | - Messaging and Skype Video apps together 47 | - Microsoft Solitaire Collection 48 | - Microsoft Wallet 49 | - Microsoft Wi-Fi 50 | - Money 51 | - Money, News, Sports and Weather apps together (I like the weather app, you can remove news, sports, money and reinstall the weather app) 52 | - Movies & TV 53 | - News 54 | - OneNote 55 | - Paid Wi-Fi & Cellular 56 | - Paint 3D 57 | - People 58 | - Phone 59 | - Phone Companion 60 | - Phone and Phone Companion apps together 61 | - Photos 62 | - Sports 63 | - Sticky Notes 64 | - Sway 65 | - View 3D 66 | - Voice Recorder 67 | - Weather 68 | - Windows Holographic 69 | - Windows Store (DANGER - Don't remove, maybe you want to install apps? and it's needed for updates) 70 | - Xbox 71 | 72 | I **strongly** advise against removing the Windows Store App. 73 | 74 | ## Remove that Zip-Files or .cab Files are shown as folders by Windows 10 Explorer 75 | Windows shows compressed files as folders, for files like .cab and .zip. 76 | 77 | I personally find this feature very annoying, ```remove_zip_files_as_folders.reg``` uses the Regedit to remove it. 78 | Same for .cab Files -> "remove_cab_files_as_folders.reg" 79 | 80 | ## Removal of "Edit with Paint 3D" context menu 81 | It's annoying too, so you can use: ```remove_edit_with_Paint_3D_context_menu.reg``` to get rid of it. 82 | 83 | ## Tips / Workarounds 84 | 85 | - For finding errors: 86 | If you don't get any errormessages, remove ```#$ErrorActionPreference = "SilentlyContinue"``` from the script. 87 | I included it, because some apps throw error messages (app is already removed etc.) 88 | which the clear screen command (CLS) can't remove from the console. I don't know why, so I removed the spamming of the console. 89 | Feel free to choose log-spamming or not :-) 90 | 91 | - In the current version of the script, I keep the weather app because I like it. I would suggest removing 92 | Money, News, Sports and Weather apps together and reinstall the weather app again if you want to use it. 93 | 94 | - Tip: Open all your apps with explorer command ```shell:appsfolder``` 95 | 96 | - To reinstall all apps execute this command: ```Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}``` 97 | This will restore the default state of all Windows 10 apps. 98 | 99 | - Get all app packagesnames use the follwing command: ```Get-AppxPackage -AllUsers | Select Name, PackageFullNameshell:appsfolder``` 100 | 101 | ## Changelog 1.35 102 | 103 | - Minor updates to the readme 104 | 105 | ## Changelog 1.34 106 | 107 | - Some small changes to the readme, moves tips from script to readme, makes more sense. 108 | 109 | ## Changelog 1.33 110 | Remove Onedrive from explorer and deinstall Mixed Reality Portal 111 | 112 | - I added 'registry-status-bar-onedrive-entry.jpg' how to remove the OneDrive link in the explorer, which is super annoying. 113 | - How to remove the Mixed Reality Portal -> 'Add Mixed Reality To Settings.reg'. 114 | Double-click the file "Add Mixed Reality to Settings.reg" and confirm the import operation. 115 | This tweak adds the 32-DWORD value FirstRunSucceeded to the Registry with a value data of 1 under the key ```HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Holographic```. 116 | 117 | After that this you can deinstall, open settings and go to "Mixed Reality". 118 | On the left, select Uninstall. 119 | 120 | ## Changelog 1.32 121 | - added Get Help and Windows Camera 122 | - removed duplicated apps 123 | - minor changes 124 | 125 | ## Changelog 1.31 126 | - added .reg files to remove "show compressed files as folders" functionally from Windows 7/8/10 127 | 128 | ## Changelog 1.2 129 | 130 | - added removal of "Paint 3D" 131 | (a spinoff of Microsoft Paint, is one of several applications introduced with the Windows 10 Creators Update - just get paint.net) 132 | - added check for admin rights 133 | - added .reg file for removal of "Edit with Paint 3D" context menu 134 | - changed version to 1.1, marketing demanded it :-) 135 | - updated readme 136 | 137 | ## Remove the App-Packages 138 | First use "Get-AppxProvisionedPackage -Online" to get the Packagename and then ```Remove-AppxProvisionedPackage -Online -PackageName 139 | For Example: "EMicrosoft.MicrosoftStickyNotes_3.1.46.0_neutral_~_8wekyb3d8bbwe``` to remove the Packagefile 140 | 141 | ## Disclaimer 142 | 143 | **Use the script at your own risk**, make backups, blah blah. 144 | I tested the script, it works for me, but I got only a few Windows 10 PCs to test it and so on. 145 | 146 | Suggestions, fixes and new features are welcome, just create an issue: https://github.com/WurstCommander/Win10AppRemove/issues/new 147 | 148 | Have a nice day, your Wurstcommander. 149 | -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Add Mixed Reality To Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Add Mixed Reality To Settings.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove cab files as folders.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove cab files as folders.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove edit with Paint 3D context_menu.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove edit with Paint 3D context_menu.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove 3D Objects From This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove 3D Objects From This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Desktop From This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Desktop From This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Documents From This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Documents From This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Downloads From This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Downloads From This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Mixed Reality From Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Mixed Reality From Settings.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Music From This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Music From This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Pictures From This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Pictures From This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Videos From This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove folders from This PC/Remove Videos From This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Remove zip files as folders.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Remove zip files as folders.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Desktop To This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Desktop To This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Documents To This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Documents To This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Downloads To This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Downloads To This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Music To This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Music To This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Pictures To This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Pictures To This PC 64-bit.reg -------------------------------------------------------------------------------- /RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Videos To This PC 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/RegFilestoRemoveFoldersAndApps/Restore folders to This PC/Restore Videos To This PC 64-bit.reg -------------------------------------------------------------------------------- /Win10AppRemove.ps1: -------------------------------------------------------------------------------- 1 | ################################################################################## 2 | # Windows 10 Apps Remover / Debloater Changelog 1.34 3 | # Powershell Script 4 | # Description: 5 | # Removes Windows 10 mandatory apps which can't be deinstalled via startmenu. 6 | # Debloating the preinstalled shit nobody needs :-) 7 | # 8 | # Please read the README.md ! 9 | ################################################################################## 10 | 11 | 12 | ################################################################################## 13 | # functions start(do not change) 14 | function reboot { 15 | $rebootanswer = Read-Host -Prompt "Should the system reboot? (yes/no)" 16 | If ($rebootanswer -eq "yes") { 17 | write-host "Rebooting now..." 18 | Restart-Computer 19 | } 20 | elseif ($rebootanswer -eq "no") { 21 | write-host "`n" 22 | write-host "Thanks for using the script, have a nice day." 23 | } 24 | else { 25 | write-host "`n" 26 | write-host "I didn't get you, sorry. Try again please." 27 | reboot 28 | } 29 | } 30 | 31 | # admin rights check 32 | function checkadmin { 33 | $user = [Security.Principal.WindowsIdentity]::GetCurrent(); 34 | $checkresult = (New-Object Security.Principal.WindowsPrincipal $user).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator) 35 | if ($checkresult -eq $False) { 36 | write-host "---------------------------------------------------------------------" 37 | write-host "No administrator-rights found, start as administrator!!!" 38 | write-host "---------------------------------------------------------------------" 39 | PAUSE 40 | exit 41 | } 42 | 43 | } 44 | # functions end 45 | ################################################################################## 46 | # global variables 47 | # suppress errormessages from removing apps because clear-host didn't work.... 48 | # Some apps will return errors messages if they are already deinstalled 49 | $ErrorActionPreference = "SilentlyContinue" 50 | 51 | checkadmin 52 | clear-host 53 | write-host "---------------------------------------------------------------------" 54 | write-host " Windows 10 Apps Remover " 55 | write-host "---------------------------------------------------------------------" 56 | write-host "`n" 57 | write-host " Please make sure that only apps you would like to remove 58 | are included in the script." 59 | write-host "`n" 60 | write-host " Apps which should stay installed have to be commented out" 61 | write-host " like this: #get-appxpackage -allusers *calculator* (...)" 62 | write-host "`n" 63 | write-host " just add # before the command to keep the app :-)" 64 | write-host "`n" 65 | write-host " !!!!! Check the script before executing !!!!!" 66 | write-host "`n" 67 | write-host " Hit return to start! - cancel with STRG+C" 68 | write-host "`n" 69 | write-host "---------------------------------------------------------------------" 70 | PAUSE 71 | clear-host 72 | PAUSE 73 | ############################################################################### 74 | # APP LIST # 75 | # # 76 | # All apps which aren't commented out will be removed / deinstalled # 77 | ############################################################################### 78 | 79 | #To uninstall 3D Builder: 80 | get-appxpackage -allusers *3dbuilder* | remove-appxpackage 81 | 82 | #To uninstall Alarms & Clock: 83 | get-appxpackage -allusers *alarms* | remove-appxpackage 84 | 85 | #To uninstall App Connector: 86 | #get-appxpackage -allusers *appconnector* | remove-appxpackage 87 | 88 | #To uninstall App Installer: 89 | #get-appxpackage -allusers *appinstaller* | remove-appxpackage 90 | 91 | #To uninstall Calendar and Mail apps together: 92 | get-appxpackage -allusers *communicationsapps* | remove-appxpackage 93 | 94 | #To uninstall Calculator: 95 | #get-appxpackage -allusers *calculator* | remove-appxpackage 96 | 97 | #To uninstall Camera: 98 | #get-appxpackage -allusers *camera* | remove-appxpackage 99 | 100 | #To uninstall Feedback Hub: 101 | get-appxpackage -allusers *feedback* | remove-appxpackage 102 | 103 | #To uninstall Get Office: 104 | get-appxpackage -allusers *officehub* | remove-appxpackage 105 | 106 | #To uninstall Get Started or Tips: 107 | get-appxpackage -allusers *getstarted* | remove-appxpackage 108 | 109 | #To uninstall Get Skype: 110 | get-appxpackage -allusers *skypeapp* | remove-appxpackage 111 | 112 | #To uninstall Groove Music: 113 | get-appxpackage -allusers *zunemusic* | remove-appxpackage 114 | 115 | #To uninstall Groove Music and Movies & TV apps together: 116 | get-appxpackage -allusers *zune* | remove-appxpackage 117 | 118 | #To uninstall Maps: 119 | get-appxpackage -allusers *maps* | remove-appxpackage 120 | 121 | #To uninstall Messaging and Skype Video apps together: 122 | get-appxpackage -allusers *messaging* | remove-appxpackage 123 | 124 | #To uninstall Microsoft Solitaire Collection: 125 | get-appxpackage -allusers *solitaire* | remove-appxpackage 126 | 127 | #To uninstall Microsoft Wallet: 128 | get-appxpackage -allusers *wallet* | remove-appxpackage 129 | 130 | #To uninstall Microsoft Wi-Fi: 131 | get-appxpackage -allusers *connectivitystore* | remove-appxpackage 132 | 133 | #To uninstall Money: 134 | get-appxpackage -allusers *bingfinance* | remove-appxpackage 135 | 136 | #To uninstall Money, News, Sports and Weather apps together (I like the weather app, you can remove news, sports, money and reinstall the weather app): 137 | #get-appxpackage -allusers *bing* | remove-appxpackage 138 | 139 | #To uninstall Movies & TV: 140 | get-appxpackage -allusers *zunevideo* | remove-appxpackage 141 | 142 | #To uninstall News: 143 | get-appxpackage -allusers *bingnews* | remove-appxpackage 144 | 145 | #To uninstall OneNote: 146 | get-appxpackage -allusers *onenote* | remove-appxpackage 147 | 148 | #To uninstall Paid Wi-Fi & Cellular: 149 | get-appxpackage -allusers *oneconnect* | remove-appxpackage 150 | 151 | #To uninstall Paint 3D: 152 | get-appxpackage -allusers *mspaint* | remove-appxpackage 153 | 154 | #To uninstall People: 155 | get-appxpackage -allusers *people* | remove-appxpackage 156 | 157 | #To uninstall Phone: 158 | get-appxpackage -allusers *commsphone* | remove-appxpackage 159 | 160 | #To uninstall Phone Companion: 161 | get-appxpackage -allusers *windowsphone* | remove-appxpackage 162 | 163 | #To uninstall Phone and Phone Companion apps together: 164 | get-appxpackage -allusers *phone* | remove-appxpackage 165 | 166 | #To uninstall Photos: 167 | get-appxpackage -allusers *photos* | remove-appxpackage 168 | 169 | #To uninstall Sports: 170 | get-appxpackage -allusers *bingsports* | remove-appxpackage 171 | 172 | #To uninstall Sticky Notes: 173 | get-appxpackage -allusers *sticky* | remove-appxpackage 174 | 175 | #To uninstall Sway: 176 | get-appxpackage -allusers *sway* | remove-appxpackage 177 | 178 | #To uninstall View 3D: 179 | get-appxpackage -allusers *3dViewer* | remove-appxpackage 180 | 181 | #To uninstall Voice Recorder: 182 | #get-appxpackage -allusers *soundrecorder* | remove-appxpackage 183 | 184 | #To uninstall Weather: (I like it :-) ) 185 | #get-appxpackage -allusers *bingweather* | remove-appxpackage 186 | 187 | #To uninstall Get-Help App (kind of useless) 188 | get-appxpackage -allusers *GetHelp* | remove-appxpackage 189 | 190 | #To uninstall Windows Holographic: 191 | get-appxpackage -allusers *holographic* | remove-appxpackage 192 | 193 | #To Windows Camera 194 | get-appxpackage -allusers *WindowsCamera* | remove-appxpackage 195 | 196 | #To uninstall Windows Store: (DANGER - Don't remove, maybe you want to install apps? and it's needed for updates) 197 | #########get-appxpackage -allusers *windowsstore* | remove-appxpackage 198 | 199 | #To uninstall Xbox Apps (Don't deinstall if you would like to play XBOX Live apps like Forza 7): 200 | get-appxpackage -allusers *xbox* | remove-appxpackage 201 | clear-host 202 | 203 | ## The end ;) 204 | 205 | write-host "--------------------------------------------------------------------" 206 | write-host "Removing Apps completed." 207 | write-host "\n" 208 | write-host "Rebooting the OS is advised." 209 | reboot 210 | -------------------------------------------------------------------------------- /registry-status-bar-onedrive-entry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WurstCommander/Win10AppRemove/7f1515f0f0b3a09d52fee0f47292c6e899d88c18/registry-status-bar-onedrive-entry.jpg --------------------------------------------------------------------------------