Skip to main content

I am trying to install extend 10.3.0 on a Docker Container running Windows Server Core 1909.  After running the extend installer, I try running 'crun32 -v' from a command prompt to verify the install but no output is displayed.  The version information is not displayed as expected and no error is displayed indicating a failure.  The program simply returns to the command prompt.  I have successfully installed an older version of extend (9.1.1) on the same container and running 'crun32 -v' returned the expected version information.  However, my application now requires the use of 10.3.0 to run properly, so using the older version of extend is not an option for me.

The following is the command I am using to install extend 10.3.0:

msiexec /i 'C:\\temp\\1030Win32\\msi\\extend(R) Version 10.3.0 x86.msi' /l*v C:\\temp\\ExtendInstall.log /qn ADDLOCAL=Compiler,Runtime,WebRuntime,ThinClient,WebThinClient,AcuBench,AcuSQLPrecompiler,OnlineDocumentationCHM REMOVE=LicenseActivator
 
Any guidance or assistance in getting extend 10.3.0 working properly on my docker container would be appreciated.

I am trying to install extend 10.3.0 on a Docker Container running Windows Server Core 1909.  After running the extend installer, I try running 'crun32 -v' from a command prompt to verify the install but no output is displayed.  The version information is not displayed as expected and no error is displayed indicating a failure.  The program simply returns to the command prompt.  I have successfully installed an older version of extend (9.1.1) on the same container and running 'crun32 -v' returned the expected version information.  However, my application now requires the use of 10.3.0 to run properly, so using the older version of extend is not an option for me.

The following is the command I am using to install extend 10.3.0:

msiexec /i 'C:\\temp\\1030Win32\\msi\\extend(R) Version 10.3.0 x86.msi' /l*v C:\\temp\\ExtendInstall.log /qn ADDLOCAL=Compiler,Runtime,WebRuntime,ThinClient,WebThinClient,AcuBench,AcuSQLPrecompiler,OnlineDocumentationCHM REMOVE=LicenseActivator
 
Any guidance or assistance in getting extend 10.3.0 working properly on my docker container would be appreciated.

It is likely you need some of the Microsoft DLLs. Youcan do this by adding the two items (UcrtDlls,VCRedist) shown in the  command:

ADDLOCAL=UcrtDlls,VCRedist,Compiler,Runtime,WebRuntime,ThinClient,WebThinClient,AcuBench,AcuSQLPrecompiler,OnlineDocumentationCHM

 


It is likely you need some of the Microsoft DLLs. Youcan do this by adding the two items (UcrtDlls,VCRedist) shown in the  command:

ADDLOCAL=UcrtDlls,VCRedist,Compiler,Runtime,WebRuntime,ThinClient,WebThinClient,AcuBench,AcuSQLPrecompiler,OnlineDocumentationCHM

 

Adding UcrtDlls and VCRedist options resolved the issue.  Thank you.