Hi, I was able to make an EXE installer that installs my software fine. After installing the EXE, I'm trying to do a test where I uninstall the product, then install again with the MSI. The uninstall works, but the MSI based installation does not install anything. This is my .bat script:
When looking through the MSI log, I see entries that look like:
Which would indicate that the component is not installed but the installer is still not installing it. I used REINSTALLMODE=vamus, so I would think that everything should get installed. I cannot figure out why none of the components in my installer package are being installed.
Any ideas?
The full log is [ here ]
Code:
echo Removing old version msiexec /norestart /qn /x{D7C1AD46-05CE-480E-B5FD-163C3DB2CDF5} echo Installing 2.0.1 version msiexec /i "c:\users\sen\downloads\ProduceProClient-v2-01.msi" /norestart /qn /l*v producepro.txt REINSTALL=ALL REINSTALLMODE=vamus PROP_HOST=hera.producepro.com PROP_PORT=22 PROP_PRINTER="" PROP_USERNAME="" PROP_PRIVATEKEY=""
Code:
MSI (s) (04:88) [15:44:54:699]: Component: pproclient.exe; Installed: Absent; Request: Null; Action: Null
Any ideas?
The full log is [ here ]
Comment