What are those installed unknown programs?

荒凉一梦 提交于 2019-12-08 04:59:07

问题


Does anyone know what are these programs (GUIDs)? I belive they are part of UWP programming because when I run debug at Visual Studio, these programs appear in "Installed Programs".

Also, can't see in Windows 10's Installed Programs but CCleaner.

Thanks!


回答1:


As you have guessed, most of these "unknown programs" are generated form Visual Studio when you deploy or debug UWP apps. And some of them are created by XAML Designer to provide synchronized Design view. These apps won't be listed in Apps & features. One possible way to find them is using PowerShell with the following command:

Get-AppxPackage | ? {$_.IsDevelopmentMode -eq $True}

This command works because all these "unknown programs" are installed in development mode.

And then if you want to uninstall them, you can add Remove-AppxPackage command like:

Get-AppxPackage | ? {$_.IsDevelopmentMode -eq $True} | Remove-AppxPackage

After this there should be no "unknown programs" in CCleaner.



来源:https://stackoverflow.com/questions/42609860/what-are-those-installed-unknown-programs

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!