Marco Gaiarin wrote: > Computer scientists, it is know, love recursion. > > I'm trying to use wpkg to install/manage... wpkg itself. > > I've done a simply: > > <package > id="wpkg" > name="WPKG" > revision="70" > priority="0" > reboot="false"> > > <check type="uninstall" condition="exists" path="WPKG" /> > > <install cmd='msiexec /qb /i %SOFTWARE%\WPKG\WPKGSetup.msi' /> > <upgrade cmd='msiexec /qb /i %SOFTWARE%\WPKG\WPKGSetup.msi' /> > <remove cmd='msiexec /qb /x %SOFTWARE%\WPKG\WPKGSetup.msi' /> > </package> > > but does not work, at least on upgrade, i think because the installer > was not able to complete because wpkg was running, but i'm now a > wiondows expert, so could i have missed something.
Currently, you can't update one version of the installer to another (i.e., 0.50 to 0.70) - you would have to uninstall 0.50, and then install 0.70. > I've also tried to apply settings, but this is another story/email... > ;))) There are example files in the package: installing: msiexec /qb /i WPKGSetup.msi SETTINGSFILE=f:\wpkg\images\setup\settings.xml Updating settings: %PROGRAMFILES%\WPKG\wpkginst.exe --SETTINGSFILE=f:\wpkg\images\setup\settings.xml You generate settings with the installer itself - "Export settings..." button - see screenshots - http://wpkg.org/index.php/Screenshots -- Tomasz Chmielewski http://wpkg.org ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ wpkg-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wpkg-users
