如何在Windows Mobile上列出“添加/删除程序”

时间:2022-05-15 02:51:03

For Windows desktop, the Add/Remove Programs list exists in the registry (as described here). I would like to list the same programs in Windows Mobile (5+), but the registry entries don't seem to exist in that location.

对于Windows桌面,注册表中存在“添加/删除程序”列表(如此处所述)。我想在Windows Mobile(5+)中列出相同的程序,但注册表项似乎不存在于该位置。

Searching the registry did not yield any positive results.

搜索注册表没有产生任何积极的结果。

Ideas?

1 个解决方案

#1


Have a look here. For older platforms you look at the registry key:

看看这里。对于较旧的平台,您可以查看注册表项:

\HKLM\SOFTWARE\Apps\Appname\

All installed applications should have the "InstallDir" and "Instl" keys there. The "Instl" must have a value of 1.

所有已安装的应用程序都应具有“InstallDir”和“Instl”键。 “Instl”的值必须为1。

For newer platforms you need to use the Configuration Service Provider.

对于较新的平台,您需要使用配置服务提供程序。

#1


Have a look here. For older platforms you look at the registry key:

看看这里。对于较旧的平台,您可以查看注册表项:

\HKLM\SOFTWARE\Apps\Appname\

All installed applications should have the "InstallDir" and "Instl" keys there. The "Instl" must have a value of 1.

所有已安装的应用程序都应具有“InstallDir”和“Instl”键。 “Instl”的值必须为1。

For newer platforms you need to use the Configuration Service Provider.

对于较新的平台,您需要使用配置服务提供程序。