mirror of
https://github.com/Sneed-Group/maxs-titus-overlay
synced 2024-12-23 03:05:01 -06:00
Add 'debloat.ps1'
This commit is contained in:
parent
6e16e52f2c
commit
c2ae724f0e
1 changed files with 43 additions and 0 deletions
43
debloat.ps1
Normal file
43
debloat.ps1
Normal file
|
@ -0,0 +1,43 @@
|
|||
$packageIds = @(
|
||||
"Microsoft.3DBuilder"
|
||||
"Microsoft.BingFinance"
|
||||
"Microsoft.BingNews"
|
||||
"Microsoft.BingSports"
|
||||
"Microsoft.BingTranslator"
|
||||
"Microsoft.BingWeather"
|
||||
"Microsoft.GetHelp"
|
||||
"Microsoft.Getstarted"
|
||||
"Microsoft.Messaging"
|
||||
"Microsoft.Microsoft3DViewer"
|
||||
"Microsoft.MicrosoftOfficeHub"
|
||||
"Microsoft.MicrosoftSolitaireCollection"
|
||||
"Microsoft.NetworkSpeedTest"
|
||||
"Microsoft.Office.OneNote"
|
||||
"Microsoft.OneConnect"
|
||||
"Microsoft.People"
|
||||
"Microsoft.Print3D"
|
||||
"Microsoft.RemoteDesktop"
|
||||
"Microsoft.Windows.Photos"
|
||||
"Microsoft.WindowsAlarms"
|
||||
"Microsoft.WindowsCamera"
|
||||
"microsoft.windowscommunicationsapps"
|
||||
"Microsoft.WindowsFeedbackHub"
|
||||
"Microsoft.WindowsMaps"
|
||||
"Microsoft.WindowsSoundRecorder"
|
||||
"Microsoft.Xbox.TCUI"
|
||||
"Microsoft.XboxApp"
|
||||
"Microsoft.XboxGameOverlay"
|
||||
"Microsoft.XboxGamingOverlay"
|
||||
"Microsoft.XboxSpeechToTextOverlay"
|
||||
"Microsoft.YourPhone"
|
||||
"Microsoft.ZuneMusic"
|
||||
"Microsoft.ZuneVideo"
|
||||
"Microsoft.3DViewer"
|
||||
"Microsoft.People*"
|
||||
"Microsoft.MSPaint"
|
||||
"Windows.DevHome*"
|
||||
)
|
||||
|
||||
foreach ($id in $packageIds) {
|
||||
Get-AppxPackage -allusers $id | Remove-AppxPackage -AllUsers
|
||||
}
|
Loading…
Reference in a new issue