Вы находитесь на странице: 1из 30

 VG

^^ Why do you want to remove the service and what exact problem are you facing?

 Roberto

@Slamet, If you remove Cortana, then you lose the search feature in start menu.

But if you insist:

Get-AppxPackage -name "Microsoft.Windows.Cortana" | Remove-AppxPackage

 Nat

Question: What's the benefit behind deleting built-in apps that do not have the uninstall option readily available? Would removing them actually clear enough space worth the process or help the device

run better, i don't think they occupy that much space to begin with?

I'm asking because I just got a new laptop with win10 on it and will definitely not be using most of the built-in apps. The OCD freak in me loves having all things clear and minimal so I would personally

prefer not having any useless software on my device, but since I am not tech-savvy I worry about the consequences of tinkering with it... Could removing some of them (App connector, sway, Xbox... for

example) potentially cause any complications?

 VG

^^ Some modern/metro apps continuously run in background and consume system resources. Also uninstalling modern apps will disable them from default programs list and Windows will not waste your

Internet bandwidth in updating those apps. If you are not going to use these apps, uninstalling them would be a wise choice.

 Nat

Convinced! Thanks VG, will be using your tutorial to clear them up! Happy 2016!

 Frank

Tried that but for each package that showed in the result command it result as Package was not found...

 Michael

Now will these commands actually uninstall the applications or just hide them? I am prepping for a firm wide roll-out of Win 10 and there are certain apps we do not need installed or want the users to

reinstall, such as Xbox, Mail, Store, Calendar, Movies, TV, etc. I have done what you list in step 1, but since we are on a domain the apps come back as that process just hides the applications. Is there no

procedure that will actually uninstall them?

 Shane

Unfortunately, after removing all your apps, microsoft are likely to reinstall them again. I've just had amazon, skype, xbox and a bunch of others reinstalled as part of Ms updates.

Keep the script handy you are likely to need it again.

Also running scripts in powershell is likely to be banned by execution priveleges. If you get a warning you can execute these commands type the following into powershell before running the above

commands.

Set-ExecutionPolicy Bypass
This removes all execution restrictions.

To reset them to default, after running the script run

Set-ExecutionPolicy remote

 Robert

Hi VG, got a question, I ran the following:

Get-AppxPackage -allusers *officehub* | Remove-AppxPackage

It removed it for the current user but new user got it back. Ideas?

 maxout

It would be cool to run some Batch file and just remove annoying apps.

 Unnamed

i attempted to get rid of Xbox and recieved this:

remove-appxpackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.XboxGameCallableUI_1000.10586.0.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.XboxGameCallableUI_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] fd4e6b19-9e95-0000-a997-4efd959ed101 in the Event Log or use

the command line Get-AppxLog -ActivityID fd4e6b19-9e95-0000-a997-4efd959ed101

At line:1 char:26

+ get-appxpackage *xbox* | remove-appxpackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.XboxG...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

remove-appxpackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.XboxIdentityProvider_1000.10586.0.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.XboxIdentityProvider_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] fd4e6b19-9e95-0000-ab97-4efd959ed101 in the Event Log or use
the command line Get-AppxLog -ActivityID fd4e6b19-9e95-0000-ab97-4efd959ed101

At line:1 char:26

+ get-appxpackage *xbox* | remove-appxpackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.XboxI...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

I tried and recieved this first, then copy pasted it exact from your website. Any clue what might've gone wrong?

 VG

^^ You need to open PowerShell as Administrator. It seems you directly opened it.

 Cory Ulrich

For anyone looking to prevent certain apps from installing for new users use this in a powershell admin console or script with admin rights (You can add or remove apps as you please. I intentionally left out

the calculator and photo viewer. You may want to keep the store. I didn't):

$Applist = Get-AppXProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*3DBuilder*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*Appconnector*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*BingFinance*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*BingNews*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*BingSports*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*BingWeather*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*CommsPhone*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*ConnectivityStore*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*Getstarted*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*Messaging*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*MicrosoftOfficeHub*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*MicrosoftSolitaireCollection*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*OneNote*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*Sway*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*People*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*SkypeApp*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*WindowsAlarms*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*WindowsCamera*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*windowscommunicationsapps*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*WindowsMaps*"} | Remove-AppxProvisionedPackage -online


$Applist | WHere-Object {$_.packagename -like "*WindowsPhone*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*WindowsSoundRecorder*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*WindowsStore*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*XboxApp*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*ZuneMusic*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*ZuneVideo*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*xbox*"} | Remove-AppxProvisionedPackage -online

$Applist | WHere-Object {$_.packagename -like "*contact support*"} | Remove-AppxProvisionedPackage -online

 Adam

Thanks for the guide, unfortunately I am facing the same trouble as Michael from a few comments above.

I am designing a Windows 10 SoE image for a large scale deployment and I am required to have most of these apps removed.

I've run the powershell commands as an administrator and with the -allusers command while the system is in Audit mode, but after the machine has been sysprepped these apps all reappear :(

Now scratching my head on how to get rid of these.

 Anjonymous

Can I use this method to uninstall Microsoft Edge? I did try it with the exact syntax you have mentioned here with all additions that were needed, but, nothing happened after I clicked on enter. It did not in

fact run a script at all. Is that how it works? I can still open edge and it is actually a very big nuisance. Mainly, when it keeps opening up when I search anything through cortana.

I realize this is unrelated to the above issue but I wish to know also whether edge is a part of Office or not, because I have had Windows 10 for almost 6 months now but have not even had to use edge

until now! I have been happily (quite ignorantly, I might add) using chrome as my default browser for any and every application, especially with cortana! (I had subverted cortana to use chrome with

chrometana)

I would quite desperately try to know of a solution to this issue!

 VG

^^ Check following:

https://www.askvg.com/windows-10-tip-remove-cortana-microsoft-edge-contact-support-and-feedback-apps/

 JTBB

thank you so much for making it completely clear as to removal of those useless apps.

 Michelle

I used these powershells under the admin account for -allusers, restart and admin acct is great, go to others accts and items are either still there or get reinstalled...grrr. I run powershell while under the user

profile as admin and either get package not found or it looks good, but the app never goes away

Any ideas why or how to permanently delete them from others accounts?

 LQA

Will these uninstalled apps be automatically reinstalled in the upcoming Anniversary Update?
 VG

^^ Most probably yes.

@Michelle

Try to rename apps folder as mentioned in following article:

https://www.askvg.com/windows-10-tip-remove-cortana-microsoft-edge-contact-support-and-feedback-apps/

 Hannibal Dobbs

Does not work.

Windows 10 upgrade.

There is no ADMINISTRATOR on my computer. Right click left click, click enter enter NOTHING.

 Mou Ahmed

Thank you sooooo much for this!! Especially the cheatsheet to copy in at the end!

 CasK

Eventids 214 and 10 continue to be logged, in spite of my many attempts to disable, remove, etc. Windows Store Apps. It appears that you must have a very good handle on this area of Windows 10, but

I'm confused why the App Readiness service seems to ignore my efforts and continues to attempt to install and register the Windows Apps - resulting in the 214 and 10 eventids. Any help or guidance

would be appreciated.

 mario

I'm uninstalling all apps using powershell on windows10. I used powershell as administrator :cmd is as follows: Get-AppxPackage -AllUsers | Remove-AppxPackage. and it works when I sign in as my

credentials' of school administrator but when I restarted the computer and used sign on of a student, all the apps are there. switch back to my credentials of administrator and they are gone. How can I

make this apps gone from student sign on inside this domain? thank you

 VG

^^ You can try to rename the folders as mentioned in following article:

https://www.askvg.com/windows-10-tip-remove-cortana-microsoft-edge-contact-support-and-feedback-apps/

 jackie

How can i uninstall windows 10, with contana, It has slowed my computer down so much very frustrated,,it automatically downloaded itself and i don't like it .. i want my windows7 or 8 ...whatever it was

before. please send me a link or whatever i have to do to uninstall windows 10

 VG

^^ Please check following:

https://www.askvg.com/how-to-restore-previous-windows-version-after-upgrading-to-windows-10/

 chuzzwassa

What is Microsoft.Advertising.Xaml and is it safe to remove?

 Bjorn
After Windows 10 anniversary update, there are a few apps that are not listed

Such as "Buy Wifi and Mobile data", "FeedbackHub" that has an uninstall option when right click on it. But "Contact Microsoft Support", "Microsoft Fast Help", " Reseller Demo" and Handwriting for

different languages, can only be uninstalled if you go to "Optional functions".

How to uninstall them using Power Shell ?

 Neil

Hey, so I have a problem.

Windows calculator is broken and I am trying to uninstall and reinstall it.

But, when I try, I get this error:

remove-appxpackage : Deployment failed with HRESULT: 0x80073CF6, Package could not be registered.

error 0x80070003: Reading manifest from location: AppxManifest.xml failed with error: The system cannot find the path

specified.

NOTE: For additional information, look for [ActivityId] ee80509c-0ec9-0000-af92-83eec90ed201 in the Event Log or use

the command line Get-AppxLog -ActivityID ee80509c-0ec9-0000-af92-83eec90ed201

At line:1 char:47

+ get-appxpackage Microsoft.WindowsCalculator | remove-appxpackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...__8wekyb3d8bbwe:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Any help?

 Mark Lester

This helped me. It is really annoying that every time I uninstall those apps, they get installed again after restart. Now that I deleted the Windows Store, hopefully, they won't go back.

 BladeMight

Actually this way apps will not be deleted from WindowsApps folder, so they will still take some of your space on hdd.

 patrick

how do i prevent apps from reappearing after sysprep?

 Fernando Z

OMG!!! I love you!!! This is the most wonderful panacea there is in the world, seeing all that garbage just being sent out one by one onto the limbo...

Thanks for the easy-to-understand tutorial!

 Chris Schneider

will these apps "come back" when you install the latest build. i read somewhere after 14936 it wont install apps if removed. btw an easier way to uninstall these is using ccleaners uninstall.
 VG

^^ Yes. Check following:

https://www.askvg.com/windows-10-will-not-reinstall-uninstalled-apps-when-upgrading-to-newer-builds/

 Klaus Hartnegg

The info on this webpage is partially wrong.

The command "Get-AppxPackage -AllUsers" does shows apps of all users.

But Remove-AppxPackage always only removes it from the current user.

 John Adams

THANK YOU for publishing all of the tips!

Microsoft decided to run push a software update the re-installed of the CR*P APPS that I had deleted.

Your page provided a very clean, detailed set of instructions that helped me take back my computer!

BTW -- I also used the anti-beacon tool by Spybot to shut off all telemetry going to Microsoft. Spybot also shuts down Microsoft's ability to turn your computer into a zombie machine/P2P device to push

their crap to other computers.

Many thanks again!

 Don

Couldn't the Power Shell script be placed in the run once in the registry?

 Petar

I get this problem;

Get-AppxPackage : The service cannot be started, either because it is disabled or because it has no enabled devices ass

ociated with it.

The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.

At line:1 char:1

+ Get-AppxPackage

+ ~~~~~~~~~~~~~~~

+ CategoryInfo : NotSpecified: (:) [Get-AppxPackage], Exception

+ FullyQualifiedErrorId : System.Exception,Microsoft.Windows.Appx.PackageManager.Commands.GetAppxPackageCommand

 Stijn

Hi,

I use the following script to uninstall the apps for both existing users and new users. But no matter what I try, every time I end up with a broken start menu.

I tried uninstalling each app separately, in different sequences, etc. Always the same result: broken start menu. Uninstalled apps are still showing, you just can no longer open them or do anything with

them for that matter.


Also it isn't just one app that causes this. One time it can be the feedbackhub, the next time the BingWeather. It is incredibly frustrating that it seems impossible to remove bloatware without breaking your

system.

echo "Uninstalling default apps"

$apps = @(

# default Windows 10 apps

"Microsoft.BingWeather"

"Microsoft.Getstarted"

"Microsoft.ZuneMusic"

"Microsoft.Windows.Photos"

"Microsoft.3DBuilder"

"Microsoft.MicrosoftSolitaireCollection"

"Microsoft.Office.OneNote"

"Microsoft.MicrosoftOfficeHub"

"Microsoft.People"

"Microsoft.OneConnect"

"Microsoft.WindowsMaps"

"Microsoft.ZuneVideo"

"Microsoft.SkypeApp"

"Microsoft.Messaging"

"AdobeSystemsIncorporated.AdobePhotoshopExpress"

"*PicsArt*"

"*BingTranslator*"

"*ZuneMusic*"

"*BingWeather*"

"*Duolingo*"

"*Flipboard*"

"*Microsoft.NetworkSpeedTest*"

"*Wunderlist*"

"*EclipseManager*"

"*FreshPaint*"

"*Advertising*"

"*windowscommunicationsapps*"

"*feedbackhub*"

# apps which cannot be removed using Remove-AppxPackage


#"Microsoft.BioEnrollment"

#"Microsoft.AAD.BrokerPlugin"

#"Microsoft.MicrosoftEdge"

#"Microsoft.Windows.Cortana"

#"Microsoft.WindowsFeedback"

#"Microsoft.XboxGameCallableUI"

#"Microsoft.XboxIdentityProvider"

#"Windows.ContactSupport"

foreach ($app in $apps) {

echo "Trying to remove $app"

Get-AppxPackage -Name $app -AllUsers | Remove-AppxPackage

Get-AppxPackage $app -AllUsers | Remove-AppxPackage

Get-AppXProvisionedPackage -Online |

where DisplayName -EQ $app |

Remove-AppxProvisionedPackage -Online

Get-AppXProvisionedPackage -Online |

where-object {$_.packagename –like $app} |

Remove-AppxProvisionedPackage -Online

 chris

just use ccleaner. go to uninstall. and pick the c**p you dont want. easy.

 Yofri

Hi VG

How to remove Connect, Get Help, & Mixed Reality Portal

I cant find the keyword to uninstall these

 Yofri

Ups in newly Creators Update

 Phil

Hi it gives me error!!!

Windows PowerShell

Copyright (C) 2016 Microsoft Corporation. All rights reserved.


PS C:\WINDOWS\system32> Get-AppxPackage | Remove-AppxPackage

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.AAD.BrokerPlugin_1000.15063.0.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-2577-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-2577-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.AAD.B...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.CloudExperienceHost_10.0.15063.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy failed. This app is part of Windows and

cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn

Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-526e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-526e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

windows.immersivecontrolpanel_6.2.0.0_neutral_neutral_cw5n1h2txyewy from: C:\Windows\ImmersiveControlPanel failed.

This app is part of Windows and cannot be uninstalled on a per-user basis. An administrator can attempt to remove the
app from the computer using Turn Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-546e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-546e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (windows.immersi...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.MicrosoftEdge_40.15063.0.0_neutral__8wekyb3d8bbwe from:

C:\Windows\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-2c77-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-2c77-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Micro...__8wekyb3d8bbwe:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.ContentDeliveryManager_10.0.15063.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy failed. This app is part of Windows and

cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn

Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-5e6e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-5e6e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (Microsoft.Windo...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict

validation.

Windows cannot remove framework Microsoft.VCLibs.140.00_14.0.24123.0_x64__8wekyb3d8bbwe because package(s)

Microsoft.XboxIdentityProvider Microsoft.XboxSpeechToTextOverlay Microsoft.Wallet Microsoft.Messaging

Microsoft.XboxGameOverlay Microsoft.StorePurchaseApp Microsoft.Getstarted Microsoft.WindowsCamera Microsoft.OneConnect

Microsoft.People Microsoft.MicrosoftStickyNotes Microsoft.WindowsCalculator Microsoft.WindowsSoundRecorder

Microsoft.WindowsAlarms Microsoft.WindowsMaps Microsoft.MSPaint Microsoft.Zun

Windows cannot remove framework Microsoft.VCLibs.140.00_14.0.24123.0_x64__8wekyb3d8bbwe because package(s)

Microsoft.XboxIdentityProvider Microsoft.XboxSpeechToTextOverlay Microsoft.Wallet Microsoft.Messaging

Microsoft.XboxGameOverlay Microsoft.StorePurchaseApp Microsoft.Getstarted Microsoft.WindowsCamera Microsoft.OneConnect

Microsoft.People Microsoft.MicrosoftStickyNotes Microsoft.WindowsCalculator Microsoft.WindowsSoundRecorder

Microsoft.WindowsAlarms Microsoft.WindowsMaps Microsoft.MSPaint Microsoft.ZuneMusic Microsoft.XboxApp

Microsoft.Microsoft3DViewer Microsoft.Office.OneNote Microsoft.ZuneVideo Ookla.SpeedtestbyOokla Microsoft.WindowsStore

currently depends on the framework. Removing all packages that depend on the framework automatically removes the

framework.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-676e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-676e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.VCLib...__8wekyb3d8bbwe:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict

validation.

Windows cannot remove framework Microsoft.VCLibs.140.00_14.0.24123.0_x86__8wekyb3d8bbwe because package(s)

king.com.BubbleWitch3Saga currently depends on the framework. Removing all packages that depend on the framework

automatically removes the framework.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-696e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-696e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (Microsoft.VCLib...__8wekyb3d8bbwe:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict

validation.

Windows cannot remove framework Microsoft.NET.Native.Framework.1.3_1.3.24201.0_x64__8wekyb3d8bbwe because package(s)

Microsoft.XboxIdentityProvider Microsoft.Wallet Microsoft.Messaging Microsoft.Getstarted Microsoft.WindowsCamera

Microsoft.OneConnect Microsoft.People Microsoft.MicrosoftStickyNotes Microsoft.WindowsMaps Microsoft.XboxApp

Microsoft.Microsoft3DViewer Ookla.SpeedtestbyOokla Microsoft.WindowsStore currently depends on the framework. Removing

all packages that depend on the framework automaticall

Windows cannot remove framework Microsoft.NET.Native.Framework.1.3_1.3.24201.0_x64__8wekyb3d8bbwe because package(s)

Microsoft.XboxIdentityProvider Microsoft.Wallet Microsoft.Messaging Microsoft.Getstarted Microsoft.WindowsCamera

Microsoft.OneConnect Microsoft.People Microsoft.MicrosoftStickyNotes Microsoft.WindowsMaps Microsoft.XboxApp

Microsoft.Microsoft3DViewer Ookla.SpeedtestbyOokla Microsoft.WindowsStore currently depends on the framework. Removing

all packages that depend on the framework automatically removes the framework.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-3877-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-3877-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.NET.N...__8wekyb3d8bbwe:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict

validation.

Windows cannot remove framework Microsoft.NET.Native.Framework.1.3_1.3.24201.0_x86__8wekyb3d8bbwe because package(s)

Microsoft.XboxIdentityProvider Microsoft.Wallet Microsoft.Messaging Microsoft.Getstarted Microsoft.WindowsCamera

Microsoft.OneConnect Microsoft.People Microsoft.MicrosoftStickyNotes Microsoft.WindowsMaps Microsoft.XboxApp

Microsoft.Microsoft3DViewer Ookla.SpeedtestbyOokla Microsoft.WindowsStore currently depends on the framework. Removing

all packages that depend on the framework automaticall

Windows cannot remove framework Microsoft.NET.Native.Framework.1.3_1.3.24201.0_x86__8wekyb3d8bbwe because package(s)

Microsoft.XboxIdentityProvider Microsoft.Wallet Microsoft.Messaging Microsoft.Getstarted Microsoft.WindowsCamera

Microsoft.OneConnect Microsoft.People Microsoft.MicrosoftStickyNotes Microsoft.WindowsMaps Microsoft.XboxApp

Microsoft.Microsoft3DViewer Ookla.SpeedtestbyOokla Microsoft.WindowsStore currently depends on the framework. Removing

all packages that depend on the framework automatically removes the framework.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-3a77-a4e25dc8d201 in the Event Log or use
the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-3a77-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.NET.N...__8wekyb3d8bbwe:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict

validation.

Windows cannot remove framework Microsoft.NET.Native.Runtime.1.3_1.3.23901.0_x64__8wekyb3d8bbwe because package(s)

Microsoft.XboxIdentityProvider Microsoft.Wallet Microsoft.Messaging Microsoft.Getstarted Microsoft.WindowsCamera

Microsoft.OneConnect currently depends on the framework. Removing all packages that depend on the framework

automatically removes the framework.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-3c77-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-3c77-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.NET.N...__8wekyb3d8bbwe:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict

validation.

Windows cannot remove framework Microsoft.NET.Native.Runtime.1.3_1.3.23901.0_x86__8wekyb3d8bbwe because package(s)

Microsoft.XboxIdentityProvider Microsoft.Wallet Microsoft.Messaging Microsoft.Getstarted Microsoft.WindowsCamera

Microsoft.OneConnect currently depends on the framework. Removing all packages that depend on the framework

automatically removes the framework.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-756e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-756e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.NET.N...__8wekyb3d8bbwe:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)


error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.ShellExperienceHost_10.0.15063.250_neutral_neutral_cw5n1h2txyewy from:

C:\WINDOWS\SystemApps\ShellExperienceHost_cw5n1h2txyewy failed. This app is part of Windows and cannot be uninstalled

on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows Features on

or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-846e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-846e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.Cortana_1.8.12.15063_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.Cortana_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-896e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-896e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package Microsoft.LockApp_10.0.15063.0_neutral__cw5n1h2txyewy

from: C:\Windows\SystemApps\Microsoft.LockApp_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-5a77-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-5a77-a4e25dc8d201


At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.LockA...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package DesktopLearning_1000.15063.0.0_neutral__cw5n1h2txyewy

from: C:\Windows\SystemApps\DesktopLearning_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-5d77-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-5d77-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (DesktopLearning...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

c5e2524a-ea46-4f67-841f-6a9465d9d515_10.0.15063.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.FileExplorer_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-9a6e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-9a6e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (c5e2524a-ea46-4...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)


error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.SecondaryTileExperience_10.0.0.0_neutral__cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.SecondaryTileExperience_cw5n1h2txyewy failed. This app is part of Windows and

cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn

Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-6f77-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-6f77-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

1527c705-839a-4832-9118-54d4Bd6a0c89_10.0.15063.250_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.FilePicker_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0001-c268-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0001-c268-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (1527c705-839a-4...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.WindowPicker_10.0.15063.250_neutral__cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.WindowPicker_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-b06e-a4e25dc8d201 in the Event Log or use
the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-b06e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package HoloShell_10.0.15063.0_neutral__cw5n1h2txyewy from:

C:\Windows\HoloShell failed. This app is part of Windows and cannot be uninstalled on a per-user basis. An

administrator can attempt to remove the app from the computer using Turn Windows Features on or off. However, it may

not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-b36e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-b36e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (HoloShell_10.0....__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.Apprep.ChxApp_1000.15063.0.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.AppRep.ChxApp_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-7377-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-7377-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand
Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.HolographicFirstRun_10.0.15063.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.HolographicFirstRun_cw5n1h2txyewy failed. This app is part of Windows and

cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn

Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-7c77-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-7c77-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.ModalSharePickerHost_1000.15063.0.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.ModalSharePickerHost_cw5n1h2txyewy failed. This app is part of Windows and

cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn

Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-c66e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-c66e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.OOBENetworkCaptivePortal_10.0.15063.0_neutral__cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.OOBENetworkCaptivePortal_cw5n1h2txyewy failed. This app is part of Windows and

cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn
Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-c76e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-c76e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.OOBENetworkConnectionFlow_10.0.15063.0_neutral__cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.OOBENetworkConnectionFlow_cw5n1h2txyewy failed. This app is part of Windows

and cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using

Turn Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-d16e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-d16e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.ParentalControls_1000.15063.0.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\ParentalControls_cw5n1h2txyewy failed. This app is part of Windows and cannot be uninstalled on

a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows Features on or

off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-8b77-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-8b77-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (Microsoft.Windo...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.CredDialogHost_10.0.15063.0_neutral__cw5n1h2txyewy from:

C:\Windows\SystemApps\microsoft.creddialoghost_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-8c77-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-8c77-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.CredD...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package CortanaListenUIApp_10.0.15063.0_neutral__cw5n1h2txyewy

from: C:\Windows\SystemApps\CortanaListenUIApp_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-e66e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-e66e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (CortanaListenUI...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.PPIProjection_10.0.15063.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.PPIProjection_cw5n1h2txyewy failed. This app is part of Windows and cannot be


uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-e86e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-e86e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.PPIPr...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package DesktopView_1000.15063.0.0_neutral_neutral_cw5n1h2txyewy

from: C:\Windows\SystemApps\DesktopView_cw5n1h2txyewy failed. This app is part of Windows and cannot be uninstalled on

a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows Features on or

off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-f26e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-f26e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (DesktopView_100...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

E2A4F912-2574-4A75-9BB0-0D023378592B_10.0.15063.250_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.AppResolverUX_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-fd6e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-fd6e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (E2A4F912-2574-4...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package EnvironmentsApp_10.0.15063.0_neutral__cw5n1h2txyewy

from: C:\Windows\SystemApps\EnvironmentsApp_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-fe6e-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-fe6e-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (EnvironmentsApp...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package HoloCamera_1.0.0.5_neutral__cw5n1h2txyewy from:

C:\Windows\SystemApps\holocamera_cw5n1h2txyewy failed. This app is part of Windows and cannot be uninstalled on a

per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows Features on or

off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-a777-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-a777-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (HoloCamera_1.0....__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package HoloItemPlayerApp_1.0.0.2_neutral__cw5n1h2txyewy from:

C:\Windows\SystemApps\holoitemplayerapp_cw5n1h2txyewy failed. This app is part of Windows and cannot be uninstalled on

a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows Features on or

off. However, it may not be possible to uninstall the app.


NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-b077-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-b077-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (HoloItemPlayerA...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.SecHealthUI_10.0.15063.0_neutral__cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.SecHealthUI_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-b177-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-b177-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Windows.PrintDialog_6.2.0.0_neutral_neutral_cw5n1h2txyewy from: C:\Windows\PrintDialog failed. This app is part of

Windows and cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the

computer using Turn Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-086f-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-086f-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Windows.PrintDi...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand
Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Windows.MiracastView_6.3.0.0_neutral_neutral_cw5n1h2txyewy from: C:\Windows\MiracastView failed. This app is part of

Windows and cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the

computer using Turn Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-bc77-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-bc77-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Windows.Miracas...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Windows.ContactSupport_10.0.15063.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\ContactSupport_cw5n1h2txyewy failed. This app is part of Windows and cannot be uninstalled on a

per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows Features on or

off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-136f-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-136f-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Windows.Contact...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.XboxGameCallableUI_1000.15063.0.0_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.XboxGameCallableUI_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.


NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-c777-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-c777-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.XboxG...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.BioEnrollment_10.0.15063.0_neutral__cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.BioEnrollment_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-1e6f-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-1e6f-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.BioEn...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.AccountsControl_10.0.15063.250_neutral__cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.AccountsControl_cw5n1h2txyewy failed. This app is part of Windows and cannot be

uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn Windows

Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0000-d177-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0000-d177-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (Microsoft.Accou...__cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict

validation.

Windows cannot remove framework Microsoft.NET.Native.Runtime.1.4_1.4.24201.0_x64__8wekyb3d8bbwe because package(s)

Microsoft.OneConnect Microsoft.People Microsoft.MicrosoftStickyNotes Microsoft.WindowsMaps Microsoft.XboxApp

Microsoft.Microsoft3DViewer Ookla.SpeedtestbyOokla Microsoft.WindowsStore currently depends on the framework. Removing

all packages that depend on the framework automatically removes the framework.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-2f6f-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-2f6f-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.NET.N...__8wekyb3d8bbwe:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict

validation.

Windows cannot remove framework Microsoft.NET.Native.Runtime.1.4_1.4.24201.0_x86__8wekyb3d8bbwe because package(s)

Microsoft.OneConnect Microsoft.People Microsoft.MicrosoftStickyNotes Microsoft.WindowsMaps Microsoft.XboxApp

Microsoft.Microsoft3DViewer Ookla.SpeedtestbyOokla Microsoft.WindowsStore currently depends on the framework. Removing

all packages that depend on the framework automatically removes the framework.

NOTE: For additional information, look for [ActivityId] e2a44300-c85d-0003-396f-a4e25dc8d201 in the Event Log or use

the command line Get-AppxLog -ActivityID e2a44300-c85d-0003-396f-a4e25dc8d201

At line:1 char:19

+ Get-AppxPackage | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.NET.N...__8wekyb3d8bbwe:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

PS C:\WINDOWS\system32>

 VG

^^ Some system apps can't be removed using the command. That's what the error message is telling.

 Phil

oh ok thank you VG
 Yi

yo, just telling that removing all apps with one command line did broke my start menu (searching ability). but that happened only after creators update, all worked fine without windows apps before that

update. fixed by restoring all apps with this command that i found somewhere by searching how to fix start menu..

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

anyone can figure out what exactly/which app you must not uninstall when uninstalling them all. thanks :)

 AV

This is a great post, as many have already commented. I follow all the powershell stuff - but when I look at the list of applications, there are some I can't figure out whether to uninstall them or leave them.

CandyCrushSaga is easy enough to understand, but I end up wondering what thinks like windows.immersivecontrolpanel is used for and whether I should keep it or blow it away. And particularly so since

the last update...I mean, what is c5e2524a-ea46-4f67-841f-6a9465d9d515? They don't name that one anything that gives even a clue.

Does anybody know of a site that lists the what the apps do to help sort out what to keep and not?

 VG

^^ Some are system apps which can't be removed using PowerShell command as they are required by the operating system to function properly. "windows.immersivecontrolpanel" is one of them which is

actually the Settings app.

 noob

Hey, I used these scripts to remove a bunch of built in apps, and it seems to have worked, ie clicking on the shortcut to edge can't launch it, but all the shortcuts are still there in the start menu's 'all

programs' list, which is the main place I wanted them gone. Any advice?

 AR

Sounds like you've got online provision apps - these are really bloatware. A clean install of Windows should have none of those applications installed.

Try this from an elevated PowerShell. It will uninstall online provisioned apps.

Get-AppXProvisionedPackage -Online | Remove-AppxProvisionedPackage -Online

 Sysprepper

In response to chris, who was suggesting using CCleaner, I tested this and found that:

1- CCleaner doesn't list all the apps for all users; only for the current user (and I don't believe that is even a full list).

2 - Removing the app through CCleaner only removes it for the current user.

Just wanted to give a heads-up.

 James

Hi VG,

Followed your instructions and it all worked well. Unfortunately MS discovered a few missing programs and reinstalled them... yeah!!!!

Is there anyway of completely stopping Cortana and it's horrible siblings from reinfesting my PC?
When discovering the new .exe files for Cortana and co, I tried to remove the previous BAK_.exe files but couldn't any thoughts?

Thanks

 VG

^^ After removing all apps, rename "WindowsApps" folder in "C:\Program Files\" and remove particular app folder from "%userprofile%\appdata\local\Packages".

 tikkanen

Hello.

i cannot uninstall people app it gives me this error

Remove-AppxPackage : Deployment failed with HRESULT: 0x80073CFA, Removal failed. Please contact your software vendor.

(Exception from HRESULT: 0x80073CFA)

error 0x80070032: AppX Deployment Remove operation on package

Microsoft.Windows.PeopleExperienceHost_10.0.16299.15_neutral_neutral_cw5n1h2txyewy from:

C:\Windows\SystemApps\Microsoft.Windows.PeopleExperienceHost_cw5n1h2txyewy failed. This app is part of Windows and

cannot be uninstalled on a per-user basis. An administrator can attempt to remove the app from the computer using Turn

Windows Features on or off. However, it may not be possible to uninstall the app.

NOTE: For additional information, look for [ActivityId] 2826f6cf-7b12-0001-d3fb-2628127bd301 in the Event Log or use

the command line Get-AppxLog -ActivityID 2826f6cf-7b12-0001-d3fb-2628127bd301

At line:1 char:28

+ Get-AppxPackage *people* | Remove-AppxPackage

+ ~~~~~~~~~~~~~~~~~~

+ CategoryInfo : WriteError: (Microsoft.Windo...l_cw5n1h2txyewy:String) [Remove-AppxPackage], IOException

+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.RemoveAppxPackageCommand

And yes i am running powershell as a administrator.

So what do i need to do

Thank you for your answers in advance.

 Guido

Thank you.

I wanted to remove the stupid "photos" program as for some reason M$ updated it so you couldn't set up other programs as default for file extensions such as .gif

 John

I can successfully remove apps from current user but cannot get -allusers to work. -allusers shows "greyed out" (different color than rest of command) when I have typed in the command.

I run powershell as administrator

I have tried using wild card (*xbox*) and tried using full app name

 Birendrasinh Gohil
Dear Sir

Please give details how to restore calculator and photo app in windows 10 enterprise 64 bit

thanks

Birendrasinh Gohil
Leave a Comment

Your email address will not be published. Required fields are marked *

Name *

Email *

Save my name and email in this browser for the next time I comment.

NOTE: If your comment doesn't appear, wait for some time. It'll appear as soon as we approve it.

Submit Comment

« Previous article Next article »


RSS | Newsletter | Twitter | Facebook | YouTube

Latest Articles

o [Canary Update] Google Chrome 78.0 Comes with New Custom Color Picker Option
o [Fix] Windows 10 Touch Screen Not Working After Update
o Windows 10 20H1 Insider Preview Build 18950 Available for Download
o Windows 10 20H1 Builds Changelog
o [Tip] Enable Redesigned “New Tab Page Customization Menu” in Google Chrome
o [Software Update] Google Chrome 76 Stable Version Available for Download
o [Fix] “Something Went Wrong, Try Again” Error in Twitter’s New UI
o [Fix] Firefox Sync Not Working for All Preferences (Options)

Advertisements

go to home | browse categories | popular

Вам также может понравиться