Difference between revisions of "XnView"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m (Added how to remove the initial configuration wizard)
Line 39: Line 39:
  
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]
 +
 +
If you're looking to bypass the initial Configuration Wizard popup for all users you have to create the xnview.ini inside the installation dir:
 +
 +
<source>
 +
echo. > "%PROGRAMFILES%\XnView\xnview.ini"
 +
</source>

Revision as of 07:28, 20 August 2010

This is a silent installer and uninstaller for XnView.

<?xml version="1.0" encoding="UTF-8"?>

<!-- 
XnView Homepage
http://www.xnview.com/

XnView download :
http://perso.orange.fr/pierre.g/xnview/endownload.html

WPKG pack by Gabriele
email: gaby"at"rantoloblog.it
-->
	
<packages>

	<package
    id="xnview"
    name="XnView"
    revision="1"
    reboot="false"
    priority="10">
	
	<check type="uninstall" condition="exists" path="XnView 1.90.3" />
		
	<install cmd='%SOFTWARE%\XnView-win.exe /norestart /silent' />
	
	<upgrade cmd='%PROGRAMFILES%\XnView\unins000.exe /SILENT' />
	<upgrade cmd='%SOFTWARE%\XnView-win.exe /norestart /silent' />
	
	<remove cmd='%PROGRAMFILES%\XnView\unins000.exe /SILENT' />
		
	</package>
	
</packages>

If you're looking to bypass the initial Configuration Wizard popup for all users you have to create the xnview.ini inside the installation dir:

echo. > "%PROGRAMFILES%\XnView\xnview.ini"