2023-07-29 10:34:04 +02:00
|
|
|
*uninstall-bloatware.ps1*
|
|
|
|
================
|
2023-07-29 09:45:37 +02:00
|
|
|
|
2023-09-01 17:53:03 +02:00
|
|
|
This PowerShell script uninstalls unnecessary software and applications.
|
2023-07-29 09:45:37 +02:00
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Parameters
|
|
|
|
----------
|
2023-07-29 09:45:37 +02:00
|
|
|
```powershell
|
2023-09-01 17:53:03 +02:00
|
|
|
PS> ./uninstall-bloatware.ps1 [<CommonParameters>]
|
2023-07-29 09:45:37 +02:00
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-09-01 17:53:03 +02:00
|
|
|
Example
|
|
|
|
-------
|
|
|
|
```powershell
|
|
|
|
PS> ./uninstall-bloatware.ps1
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
Notes
|
|
|
|
-----
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
|
|
|
Related Links
|
|
|
|
-------------
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Script Content
|
|
|
|
--------------
|
2023-07-29 09:45:37 +02:00
|
|
|
```powershell
|
2023-09-01 17:53:03 +02:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Uninstalls bloatware
|
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script uninstalls unnecessary software and applications.
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./uninstall-bloatware.ps1
|
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
"⏳ (1/3) Removing System Applications..."
|
2023-07-29 09:45:37 +02:00
|
|
|
winget uninstall 'OMEN Audio Control'
|
|
|
|
winget uninstall 'OMEN Gaming Hub'
|
|
|
|
winget uninstall 'Clipchamp'
|
|
|
|
winget uninstall 'Cortana'
|
|
|
|
winget uninstall 'Microsoft News'
|
|
|
|
winget uninstall 'MSN Weather'
|
|
|
|
winget uninstall 'Get Help'
|
|
|
|
winget uninstall 'Microsoft Tips'
|
|
|
|
winget uninstall 'Office'
|
|
|
|
winget uninstall 'Microsoft.Office'
|
|
|
|
winget uninstall 'Microsoft Solitaire Collection'
|
|
|
|
winget uninstall 'Solitaire & Casual Games'
|
|
|
|
winget uninstall 'Microsoft Sticky Notes'
|
|
|
|
winget uninstall 'Paint'
|
|
|
|
winget uninstall 'Microsoft People'
|
|
|
|
winget uninstall 'Power Automate'
|
|
|
|
winget uninstall 'Microsoft To Do'
|
|
|
|
winget uninstall 'Microsoft Photos'
|
|
|
|
winget uninstall 'Windows Camera'
|
|
|
|
winget uninstall 'Windows Clock'
|
|
|
|
winget uninstall 'Windows Calculator'
|
|
|
|
winget uninstall 'Feedback Hub'
|
|
|
|
winget uninstall 'Windows Maps'
|
|
|
|
winget uninstall 'Windows Voice Recorder'
|
|
|
|
winget uninstall 'Your Phone'
|
|
|
|
winget uninstall 'Windows Media Player'
|
|
|
|
winget uninstall 'Movies & TV'
|
|
|
|
winget uninstall 'Microsoft Family'
|
|
|
|
winget uninstall 'Quick Assist'
|
|
|
|
winget uninstall 'Microsoft Teams'
|
|
|
|
winget uninstall 'Mail and Calendar'
|
|
|
|
winget uninstall 'Snipping Tool'
|
|
|
|
|
2023-09-01 17:53:03 +02:00
|
|
|
"⏳ (2/3) Removing Xbox associated applications..."
|
2023-07-29 09:45:37 +02:00
|
|
|
winget uninstall 'Xbox'
|
|
|
|
winget uninstall 'Xbox TCUI'
|
|
|
|
winget uninstall 'Xbox Game Bar Plugin'
|
|
|
|
winget uninstall 'Xbox Identity Provider'
|
|
|
|
winget uninstall 'Xbox Game Speech Window'
|
|
|
|
|
2023-09-01 17:53:03 +02:00
|
|
|
"⏳ (3/3) Removing miscellaneous Apps that crowd the Start Menu..."
|
2023-07-29 09:45:37 +02:00
|
|
|
winget uninstall 'Spotify Music'
|
|
|
|
winget uninstall 'Messenger'
|
|
|
|
winget uninstall 'Instagram'
|
|
|
|
winget uninstall 'Whatsapp'
|
|
|
|
winget uninstall 'Netflix'
|
|
|
|
winget uninstall 'LinkedIn'
|
|
|
|
winget uninstall 'Prime Video for Windows'
|
|
|
|
|
2023-09-01 17:53:03 +02:00
|
|
|
"✔️ Finished"
|
2023-07-29 09:45:37 +02:00
|
|
|
exit 0 # success
|
|
|
|
```
|
|
|
|
|
2023-09-20 17:05:11 +02:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of uninstall-bloatware.ps1 as of 09/20/2023 17:04:44)*
|