I have a MSI file which adds some entries under HKEY_CURRENT_USER\Software hive. It seems that the App Converter totally ignores them. Tee registries under HKEY_LOCAL_MACHINE are detected ok.
Has anyone encountered this issue? Maybe a workaround?
Thanks
I have a MSI file which adds some entries under HKEY_CURRENT_USER\Software hive. It seems that the App Converter totally ignores them
During deployment, we only support keys in the package under HKLM\Software. At runtime the application can write to HKCU but package content is per-machine only. That the reason you will find they are all ignored under HKCU\Software.
Let's clarify something may misunderstand:
Deployment:
Centennial packages may include private package registry data. This data must logically sit under HKLM\Software. No other registry locations are supported. When the package is deployed, this registry data is made available to the application.
Runtime:
Once an application is launched and running it can read or enumerate its package registry data under HKLM\Software. The running application may also read or write to HKCU.