You just have to build to batch files and drop them into folder containing new setup files.
Cut and paste the following line for
installation in mp_inst.bat:
msiexec /i setup.msi ALLUSERS=1 TARGETDIR="%programfiles%\mediaportal" /qb- /l*v mp_inst.log
deinstallation in mp_uninst.bat:
msiexec /x {E95FD367-B0A7-420B-A95A-E8888D3C0C99} /qb- /l*v mp_uninst.log
/i for installation, /x for deinstallation, ALLUSERS=1 is set for an all users installation, /qb- does a quiet installation without user interaction and "/l*v logfilename"writes a logfile. "MainEngineThread is returning 0" in the logfile says setup was successfully completed.
The msi packagecode {...} may vary in future versions.
no_idea.
Cut and paste the following line for
installation in mp_inst.bat:
msiexec /i setup.msi ALLUSERS=1 TARGETDIR="%programfiles%\mediaportal" /qb- /l*v mp_inst.log
deinstallation in mp_uninst.bat:
msiexec /x {E95FD367-B0A7-420B-A95A-E8888D3C0C99} /qb- /l*v mp_uninst.log
/i for installation, /x for deinstallation, ALLUSERS=1 is set for an all users installation, /qb- does a quiet installation without user interaction and "/l*v logfilename"writes a logfile. "MainEngineThread is returning 0" in the logfile says setup was successfully completed.
The msi packagecode {...} may vary in future versions.
no_idea.