Last active
May 9, 2018 12:52
-
-
Save antelio/100ae224ec9111c24fb96e6b923c6f2f to your computer and use it in GitHub Desktop.
https://www.cnet.com/how-to/how-to-reinstall-default-apps-in-windows-10/ https://gist.github.com/tkrotoff/830231489af5c5818b15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-AppxPackage -allusers | Select Name, PackageFullName | |
Add-AppxPackage -register "C:\Program Files\WindowsApps\PackageCodeName\appxmanifest.xml" -DisableDevelopmentMode | |
Microsoft.WindowsStore_11804.1001.7.0_x64__8wekyb3d8bbwe | |
Add-AppxPackage -register "C:\Program Files\WindowsApps\Microsoft.WindowsStore_11804.1001.7.0_x64__8wekyb3d8bbwe\appxmanifest.xml" -DisableDevelopmentMode | |
microsoft.windowscommunicationsapps_17.9126.21785.0_x64__8wekyb3d8bbwe | |
Add-AppxPackage -register "C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.9126.21785.0_x64__8wekyb3d8bbwe\appxmanifest.xml" -DisableDevelopmentMode | |
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" } | |
# See Remove default Apps from Windows 10 https://thomas.vanhoutte.be/miniblog/delete-windows-10-apps/ | |
# See Debloat Windows 10 https://github.com/W4RH4WK/Debloat-Windows-10 | |
# Command line to list all packages: Get-AppxPackage -AllUsers | Select Name, PackageFullName | |
Get-AppxPackage Microsoft.Windows.ParentalControls | Remove-AppxPackage | |
Get-AppxPackage Windows.ContactSupport | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Xbox* | Remove-AppxPackage | |
Get-AppxPackage microsoft.windowscommunicationsapps | Remove-AppxPackage # Mail and Calendar | |
#Get-AppxPackage Microsoft.Windows.Photos | Remove-AppxPackage | |
Get-AppxPackage Microsoft.WindowsCamera | Remove-AppxPackage | |
Get-AppxPackage Microsoft.SkypeApp | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Zune* | Remove-AppxPackage | |
Get-AppxPackage Microsoft.WindowsPhone | Remove-AppxPackage # Phone Companion | |
Get-AppxPackage Microsoft.WindowsMaps | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Office.OneNote | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Office.Sway | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Appconnector | Remove-AppxPackage | |
Get-AppxPackage Microsoft.WindowsFeedback* | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Windows.FeatureOnDemand.InsiderHub | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Windows.Cortana | Remove-AppxPackage | |
Get-AppxPackage Microsoft.People | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Bing* | Remove-AppxPackage # Money, Sports, News, Finance and Weather | |
Get-AppxPackage Microsoft.Getstarted | Remove-AppxPackage | |
Get-AppxPackage Microsoft.MicrosoftOfficeHub | Remove-AppxPackage | |
Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage | |
Get-AppxPackage Microsoft.WindowsSoundRecorder | Remove-AppxPackage | |
Get-AppxPackage Microsoft.3DBuilder | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Messaging | Remove-AppxPackage | |
Get-AppxPackage Microsoft.CommsPhone | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Advertising.Xaml | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Windows.SecondaryTileExperience | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Windows.ParentalControls | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Windows.ContentDeliveryManager | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Windows.CloudExperienceHost | Remove-AppxPackage | |
Get-AppxPackage Microsoft.Windows.ShellExperienceHost | Remove-AppxPackage | |
Get-AppxPackage Microsoft.BioEnrollment | Remove-AppxPackage | |
Get-AppxPackage Microsoft.OneConnect | Remove-AppxPackage | |
Get-AppxPackage *Twitter* | Remove-AppxPackage | |
Get-AppxPackage king.com.CandyCrushSodaSaga | Remove-AppxPackage | |
Get-AppxPackage flaregamesGmbH.RoyalRevolt2 | Remove-AppxPackage | |
Get-AppxPackage *Netflix | Remove-AppxPackage | |
Get-AppxPackage Facebook.Facebook | Remove-AppxPackage | |
Get-AppxPackage Microsoft.MinecraftUWP | Remove-AppxPackage | |
Get-AppxPackage *MarchofEmpires | Remove-AppxPackage | |
# See How to Completely Uninstall OneDrive in Windows 10 http://lifehacker.com/how-to-completely-uninstall-onedrive-in-windows-10-1725363532 | |
taskkill /f /im OneDrive.exe | |
C:\Windows\SysWOW64\OneDriveSetup.exe /uninstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment