Providing Free and Editor Tested Software Downloads
< HOME | TUTORIALS | GEEK-CADE| WEB TOOLS | YOUTUBE | NEWSLETTER | DEALS! | FORUMS | >

MajorGeeks.com - If your computer could ask you for it, it would.

Software Categories

All In One Tweaks
Android
Antivirus & Malware
Appearance
Back Up
Browsers
CD\DVD\Blu-Ray
Covert Ops
Drivers
Drives (SSD, HDD, USB)
Games
Graphics & Photos
Internet Tools
Linux Distros
MajorGeeks Windows Tweaks
Multimedia
Networking
Office & Productivity
System Tools

Other news

· How To and Tutorials
· Life Hacks and Reviews
· Way Off Base
· MajorGeeks Deals
· News
· Off Base
· Reviews




spread the word

· YouTube
· Facebook
· Instagram
· Twitter
· Pintrest
· RSS/XML Feeds
· News Blur
· Yahoo
· Symbaloo

about

· Top Freeware Picks
· Malware Removal
· Geektionary
· Useful Links
· About Us
· Copyright
· Privacy
· Terms of Service
· How to Uninstall

top downloads

1. GS Auto Clicker
2. Macrium Reflect FREE Edition
3. Smart Defrag
4. FlyOobe / Flyby11
5. Sergei Strelec's WinPE
6. Visual C++ Redistributable Runtimes AIO Repack
7. Unlocker
8. MusicBee
9. Visual C++ Runtime Installer (All-In-One)
10. Defender Control
More >>

top reads

Star 5 Hidden Windows Tools You’ve Had All Along But Never Use

Star Use the Windows 10 Media Creation Tool Before Support Ends For Windows 10 in 2025

Star Fedora 42 - It Might Be the Prettiest Linux Yet

Star How to Set Up an Automatic Backup Plan In a Few Clicks

Star How To Skip Windows 11 Hardware Checks & Keep Windows 10 in 2025 - The Ultimate Guide

Star Star Trek Fleet Command Promo Codes: Redeem Codes for Free Shards, Blueprints And Resources

Star How to Disable 1-Click Ordering on Amazon (and Avoid Surprise Charges)

Star How to Fix Shallow Paint Layer Depth in Bambu Studio

Star Windows Recall: What It Is, Why Hackers Will Love It, and How to Stay Safe

Star How To Use VLC Media Player to Trim Video Clips


MajorGeeks.Com » Overview» Tutorials and Video Guides » Remove Windows 10, 8 and 8.1 Built-In Apps Using PowerShell

Remove Windows 10, 8 and 8.1 Built-In Apps Using PowerShell

By Timothy Tibbetts

on 06/30/2023

IObit Mid-Year Sale: 90% OFF + Mystery Treat Experience faster surfing, smarter security, and total privacy with IObit Pro,
now yours at 90% OFF plus a mystery treat!

Power users, server admins, IT, and techs can remove Windows 10, 8 and 8.1 built-in apps using PowerShell. The advantage is that you can remove these apps from the default install.wim in your Windows 10, 8 and 8.1 ISO allowing you to have a ready to install Windows 10 ISO without the built-in apps.

Home users can remove as many built-in apps as you like post-installation. Step 1 covers how to remove the built-in apps from the ISO. Step 2 is for home users looking to remove as many built-in apps as they want, one at a time.

As you probably already know, some apps including Cortana and Edge are hardcoded and can't be removed. Using Step 1 may leave behind some shortcuts on the Start Menu.

1: Remove Pre-Installation From Install.win

As a reminder, this method is for advanced users. Home users jump to step 2.

Download and start the script, and when you do so, a temporary folder will be created. All apps will then be removed. Example commands include:

Paramaters

PathtoWim - Path to install.wim
select - Enable

Examples:

.removeapps.ps1 -pathtowim c:10install.wim
.removeapps.ps1 -pathtowim c:10install.wim -selectapps $true
.removeapps.ps1 -pathtowim c:10install.wim -select $true -index 2

2: Remove Post-Installation

If Windows is already installed, using the PowerShell method is a quick and easy way to remove a few apps.

Start by opening PowerShell as admin. You can do this by pressing the Windows Key + X and select Windows PowerShell (Admin).

Before you begin, remember if you change your mind, you'll need to reinstall from the Windows Store.

To remove everything you just need to type in Get-AppxPackage -AllUsers | Remove-AppxPackage.

To only remove some built-in apps, choose from the list below. Copy and paste the code and use CTRL + V to insert that code into PowerShell and press enter. Each one you enter will be removed without warning, prompts, or confirmation.



Uninstall 3D Viewer:
Get-AppxPackage Microsoft.Microsoft3DViewer | Remove-AppxPackage

Uninstall Calculator:
Get-AppxPackage *windowscalculator* | Remove-AppxPackage

Uninstall 3D Builder:
Get-AppxPackage *3dbuilder* | Remove-AppxPackage

Uninstall Calendar and Mail:
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage

Uninstall Alarms and Clock:
Get-AppxPackage *windowsalarms* | Remove-AppxPackage

Uninstall Camera:
Get-AppxPackage *windowscamera* | Remove-AppxPackage

Uninstall Get Office:
Get-AppxPackage *officehub* | Remove-AppxPackage

Uninstall Get Help
Get-AppxPackage *Microsoft.GetHelp* -AllUsers | Remove-AppxPackage

Uninstall Get Started:
Get-AppxPackage *getstarted* | Remove-AppxPackage

Uninstall Get Skype:
Get-AppxPackage *skypeapp* | Remove-AppxPackage

Uninstall Groove Music:
Get-AppxPackage *zunemusic* | Remove-AppxPackage

Uninstall Maps:
Get-AppxPackage *windowsmaps* | Remove-AppxPackage

Uninstall Microsoft Solitaire Collection:
Get-AppxPackage *solitairecollection* | Remove-AppxPackage

Uninstall Money:
Get-AppxPackage *bingfinance* | Remove-AppxPackage

Uninstall Movies & TV:
Get-AppxPackage *zunevideo* | Remove-AppxPackage

Uninstall News:
Get-AppxPackage *bingnews* | Remove-AppxPackage

Uninstall OneNote:
Get-AppxPackage *onenote* | Remove-AppxPackage

Uninstall People:
Get-AppxPackage *people* | Remove-AppxPackage

Uninstall Phone Companion:
Get-AppxPackage *windowsphone* | Remove-AppxPackage

Uninstall Photos:
Get-AppxPackage *photos* | Remove-AppxPackage

Uninstall Sports:
Get-AppxPackage *bingsports* | Remove-AppxPackage

Uninstall Store:
Get-AppxPackage *windowsstore* | Remove-AppxPackage

Uninstall Voice Recorder:
Get-AppxPackage *soundrecorder* | Remove-AppxPackage

Uninstall Weather:
Get-AppxPackage *bingweather* | Remove-AppxPackage

Uninstall Xbox:
Get-AppxPackage *xboxapp* | Remove-AppxPackage

Similar:
  • How to Restore Windows Store on Windows 10
  • How-To Disable the Windows Store on Windows 10 (Video)
  • PowerShell and Command Prompt 101
  • The Ultimate List of Every Known Command Prompt and PowerShell Commands
  • How to Securely Delete Files in Windows 10 With PowerShell and Cipher

    comments powered by Disqus





  • © 2000-2025 MajorGeeks.com
    Powered by Contentteller® Business Edition