I am trying to convert .msi to .appx using Desktop App Converter. But at one point I got the below statement after which nothing happens. Waiting for installer process to complete inside Isolated Environment
This the command I have used in DAC :
DesktopAppConverter.exe -Installer "C:\Users\akshay.verma\Desktop\Folens UWP\13_08_2019\Setup\Setup.msi" -InstallerArguments "/quiet" -Destination C:\Output\MyApp -PackageName "FolensPublishingCompany.FolensHIVE" -Publisher "CN=29ART5E3-HH9B-7873-8E62-699GF5689FA0" -Version 2.2.4.0 -MakeAppx -Sign -Verbose -Verify
I tried to change the InstallerArguments to /quiet/S/SILENT/VERYSILENT/qn but none of them works.
In log file I am getting this :
VERBOSE: Running installer command in Isolated Environment
VERBOSE: Command line: "C:\WINDOWS\system32\msiexec.exe" /quiet DISABLEADVTSHORTCUTS=1 INSTALLSTARTMENUSHORTCUTS=1
/norestart /i "C:\shared\installer\Setup.msi" /l*v "C:\shared\logs\install_Setup.log"
VERBOSE: Waiting for installer process to complete inside Isolated Environment
if I am running the below command separately in cmd then my msi is successfully getting installed without any user interaction.
"C:\WINDOWS\system32\msiexec.exe" /quiet DISABLEADVTSHORTCUTS=1 INSTALLSTARTMENUSHORTCUTS=1
/norestart /i "C:\shared\installer\Setup.msi" /l*v "C:\shared\logs\install_Setup.log"
Please help me to resolve why DAC is getting stuck.