I am trying to convert a legacy Visual FoxPro 9 application that uses an InstallShield 2015 LE installer so we could deploy using the windows store. If I let the singleImage installer be converted it spouts a lot warning:
"DesktopAppConverter : warning 'W_COM_DARWIN_INSTALLATION_NOT_SUPPORTED': COM: Darwin installation is not supported for packaged applications. The InprocServer32 value of the InprocServer32 subkey of CLSID {C27CCE3B-8596-11D1-B16A-00C0F0283628} should be replaced with a default (unnamed) value that specifies the path to a server in the package. Otherwise, attempts to create this class will fail."
It sounds like I want to disable this DARWIN feature somewhere but information about this is very very scarse. It seems these warnings are given on some OCX (yes I know) controls but also components from the merge modules included in the setup. Does anyone know how to get rid of these warnings? They currently prevent the convertor from running, but some manual makeAppX steps do seem to allow me to generate an AppX but when the program is started there is a fast popup each time I enter windows that have these ocx controls.
I also had this issue. I converted a VB6 app recently with many DLL and OCX libraries. This is a tedious process, depending on the number of COM objects you have. Here are the steps.
HKEY_LOCAL_MAHCHINEnodeFile | Load HiveRegistry.datfile in your APPXpackagefilesfolderAPPX_ROOTAPPX_ROOTnode to a file namedAPPX_ROOT.regAPPX_ROOT.regfile in a text editor (one that has good global find/replace features, like notepad++)hex(7). This will jump you to the first value you need to replace. It should be prefixed by"InprocServer32"=@(default) value of the regkey (line above).@value into the Replace field. Do a global replace to save time. So you should end up with lines that look like this:hex(7)instances have been replaced.APPX_ROOT.regfileAPPX_ROOT.regfile back into the registry (right-clickAPPX_ROOT.regand choose theMergecommand or use regedit)APPX_ROOTnode in regeditFile|Unload Hive. Choose YES to dismount the registry file.This allows the Desktop Bridge to properly locate and instantiate your COM objects. Build your APPX Package with the updated Registry.dat.