Questions on FAQ.md #67207
-
I had some queries on FAQ.md which I hope to get clarified here (and possibly get added to FAQ.md as well).
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
cc @Trenly |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
For 1. , there is an alternative (thanks to this blog), one can use this command to fetch the common ARP entries of installed packages. $32BitPath = "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*";$64BitPath = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*"; Get-ItemProperty "HKLM:\$32BitPath", "HKLM:\$64BitPath", "Registry::\HKEY_CURRENT_USER\$32BitPath", "Registry::\HKEY_CURRENT_USER\$64BitPath","Registry::\HKEY_USERS\$($_.SID)\$32BitPath", "Registry::\HKEY_USERS\$($_.SID)\$64BitPath", "Registry::\HKEY_USERS\temp\$32BitPath", "Registry::\HKEY_USERS\temp\$64BitPath" | Select DisplayName, PSChildName, DisplayVersion, Publisher |
Beta Was this translation helpful? Give feedback.
I’m not sure; I know win10 home doesn’t support it, but MSFT docs aren’t exactly clear as to win11 home does or does not; Product code under the Installer or under AppsAndFeaturesEntries actually do refer to the same field. It is used only for completeness and matching as far as I know. I know this can be found using MSIViewer and Orca for MSI installers, or by using powershell to dig through the msi’s database, but for a exe it isn’t really possible to know what the product code is without installing it and looking at the registry entries, unless you have access to the bundling code and/or logs
AppsAndFeaturesEntries can’t be added for applications which do not create any ARP entries