Difference between revisions of "XnView"
From WPKG | Open Source Software Deployment and Distribution
m (Added how to remove the initial configuration wizard) |
m (Change the source language) |
||
Line 42: | Line 42: | ||
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: | 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> | + | <source lang="html"> |
echo. > "%PROGRAMFILES%\XnView\xnview.ini" | echo. > "%PROGRAMFILES%\XnView\xnview.ini" | ||
</source> | </source> |
Revision as of 07:29, 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"