那些安装的未知程序是什么? [英] What are those installed unknown programs?

查看:24
本文介绍了那些安装的未知程序是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有谁知道这些程序 (GUID) 是什么?我相信它们是 UWP 编程的一部分,因为当我在 Visual Studio 中运行调试时,这些程序会出现在已安装的程序"中.

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".

此外,在 Windows 10 的已安装程序中也看不到 CCleaner.

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

谢谢!

推荐答案

如您所料,这些未知程序"中的大多数是在您部署或调试 UWP 应用程序时从 Visual Studio 生成的.其中一些是由 XAML 设计器创建的,以提供同步的设计视图.这些应用不会列在 Apps &功能.找到它们的一种可能方法是使用带有以下命令的 PowerShell:

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.

然后如果你想卸载它们,你可以添加 Remove-AppxPackage 命令,如:

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

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

在此之后,CCleaner 中应该没有未知程序".

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

这篇关于那些安装的未知程序是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆