Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Contact
  • Reviews
  • Toggle search form

Determine Apps UWP and remove pre-provisioned Appx in Windows

Posted on 19/09/202019/11/2025 IT Expert By IT Expert No Comments on Determine Apps UWP and remove pre-provisioned Appx in Windows
  1. Home
  2. Windows Server
  3. Determine Apps UWP and remove pre-provisioned Appx in Windows
Package Full Name

In this article, we shall discuss how to determine Apps UWP and remove pre-provisioned Appx in Windows. Windows 10 comes with pre-installed apps that are not limited to Maps, People, Xbox, Photos, and music, etc. Please, see “Error 0xc1420127: The specified image in the specified wim is already mounted for read and write access, and Error 740: Elevated permissions are required to run DISM and how to remove pre-provisioned apps from Windows Image“.

For these pre-installed apps, Windows 10 doesn’t provide any point-and-click way to uninstall them. But you can easily uninstall all those apps using a simple Powershell command.

In a Windows installation, you can also use PowerShell to add, remove, and list app packages (.appx or .appxbundle) per image or user. Explore the article and learn how to determine Apps UWP.

How to determine Apps UWP

For related articles, please see how to fix error 0xc1510114: The wim file needs tobe remounted, Error 0x80070002: When trying to mount an image file, Error code 15601: How to resolve DISM unspecified error when removing preinstalled packages.

On the running Windows System (online), you can use PowerShell to query for the Package Full Name (UWP (GUID)) of the Appx. See this article on how to determine the UWP of an application using different methods and also how to set up a Single App Kiosk Mode Configuration using a Local Account / MDM Bridge WMI Provider. Run the following command from PowerShell

"get-AppxPackage" or "get-AppxPackage -user <put your name here>"
remove pre-provisioned appx
Apps UWP
get guid Capture

See the following articles on how to determine Apps UWP using the PowerShell command-line tool instead of DISM. For more information, see the following link.

Alternatively, you can use a script to remove installed apps from your device. It will ensure the removal of packages you have in the $Applist variable and all the pre-provisioned packages. You can find more information about this script here. This script explains how to determine Apps UWP.

$AppsList = "Microsoft.XboxSpeechTextOverlay","Microsoft.BingFinance","Microsoft.BingNews","Microsoft.BingWeather","Microsoft.XboxApp","Microsoft.SkypeApp","Microsoft.MicrosoftSolitaireCollection","Microsoft.BingSports","Microsoft.ZuneMusic","Microsoft.ZuneVideo","Microsoft.Windows.Photos","Microsoft.People","Microsoft.MicrosoftOfficeHub","Microsoft.WindowsMaps","microsoft.windowscommunicationsapps","Microsoft.Getstarted","Microsoft.3DBuilder"

ForEach ($App in $AppsList) 
{ 
    $PackageFullName = (Get-AppxPackage $App).PackageFullName
    $ProPackageFullName = (Get-AppxProvisionedPackage -online | where {$_.Displayname -eq $App}).PackageName
        write-host $PackageFullName
        Write-Host $ProPackageFullName 
    if ($PackageFullName) 
    { 
        Write-Host "Removing Package: $App"
        remove-AppxPackage -package $PackageFullName 
    } 
    else 
    { 
        Write-Host "Unable to find package: $App" 
    } 
        if ($ProPackageFullName) 
    { 
        Write-Host "Removing Provisioned Package: $ProPackageFullName"
        Remove-AppxProvisionedPackage -online -packagename $ProPackageFullName 
    } 
    else 
    { 
        Write-Host "Unable to find provisioned package: $App" 
    } 

}

I hope you found this blog post on how to Determine Apps UWP and remove pre-provisioned Appx in Windows very helpful. Please let me know in the comment session if you have any questions.

5/5 - (1 vote)

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Threads (Opens in new window) Threads
  • Share on Nextdoor (Opens in new window) Nextdoor
Windows Server Tags:install.wim, Microsoft Deployment Toolkit (MDT), WDS, Windows Deployment Services

Post navigation

Previous Post: Remove Windows 10 Apps with DISM: How to remove pre-provisioned apps from Windows Image
Next Post: Install Wim: How to Add Packages to Windows image Using the DISM Tool

Related Posts

  • image 78
    How to enable LDAP over SSL with a third-party Certificate such as DigiCert Windows
  • App Locker
    Harden your Veeam Backup Server with Microsoft AppLocker Windows
  • fress install windows server 2025   downgrade of Windows Server datacenter to standard edition
    Convert Windows Server Datacenter to Standard: Install Windows Server via iDRAC Virtual Media Windows Server
  • screenshot 2020 03 13 at 21.22.29
    How to determine Cygwin version Windows Server
  • windows subsystem
    What is Windows Subsystem for Linux Windows Server
  • windows 10 spying 1200x687 1
    Error 183: Specified image is being serviced by another DISM operation Windows Server

More Related Articles

image 78 How to enable LDAP over SSL with a third-party Certificate such as DigiCert Windows
App Locker Harden your Veeam Backup Server with Microsoft AppLocker Windows
fress install windows server 2025   downgrade of Windows Server datacenter to standard edition Convert Windows Server Datacenter to Standard: Install Windows Server via iDRAC Virtual Media Windows Server
screenshot 2020 03 13 at 21.22.29 How to determine Cygwin version Windows Server
windows subsystem What is Windows Subsystem for Linux Windows Server
windows 10 spying 1200x687 1 Error 183: Specified image is being serviced by another DISM operation Windows Server

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • Screenshot 2020 05 14 at 18.00.59
    Linux Error 13: Permission denied – Are you root Linux
  • Object First OOTBI   Best Storage Repo for Veeam
    Understanding User Roles & Access Control in Object First OOTBI Backup
  • Certificate does not contain the private key
    Server Certificate could not be updated: Private key does not match Windows Server
  • feature functionapp
    Deploy a function app from Visual Studio to Azure Platform AWS/Azure/OpenShift
  • Allow and Disallow Simultaneous Connection to Domain and Non Domain network
    Allow and Disallow Simultaneous Connection to Domain and Non-Domain network Network | Monitoring
  • unzip mac 994x400 1
    How to set a default app to archive files on macOS Mac
  • Performancewin10
    How Performance Monitor works in Windows 10 Windows
  • Vro And Agent Deployment
    Deploy Veeam Recovery Orchestrator and Agents to VBR and VEM Backup

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,801 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2025 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.