Difference between revisions of "WinShell"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
Line 1: Line 1:
 
This is a silent installer and uninstaller for WinShell.
 
This is a silent installer and uninstaller for WinShell.
  
<package id="winshell" name="winshell" revision="1" priority="0" reboot="false">
+
<source lang="xml">
 +
<package id="winshell" name="winshell" revision="1" priority="0" reboot="false">
 
  <check type="uninstall" condition="exists" path="WinShell" />
 
  <check type="uninstall" condition="exists" path="WinShell" />
 
  <install cmd='%SOFTWARE%\WinShell\WinShell26.exe /sp- /silent /norestart /verysilent' />
 
  <install cmd='%SOFTWARE%\WinShell\WinShell26.exe /sp- /silent /norestart /verysilent' />
Line 7: Line 8:
 
  <install cmd='cmd /c rmdir "%ProgramFiles%\Winshell\demo" ' />
 
  <install cmd='cmd /c rmdir "%ProgramFiles%\Winshell\demo" ' />
 
  <remove cmd='"%PROGRAMFILES%\WinShell\unins000.exe" /SP- /SILENT /NORESTART' />
 
  <remove cmd='"%PROGRAMFILES%\WinShell\unins000.exe" /SP- /SILENT /NORESTART' />
</package>
+
</package>
 +
</source>
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 11:05, 1 May 2008

This is a silent installer and uninstaller for WinShell.

<package id="winshell" name="winshell" revision="1" priority="0" reboot="false">
 <check type="uninstall" condition="exists" path="WinShell" />
 <install cmd='%SOFTWARE%\WinShell\WinShell26.exe /sp- /silent /norestart /verysilent' />
 <install cmd='cmd /c del /s /q "%ProgramFiles%\WinShell\demo\*.*" ' />
 <install cmd='cmd /c rmdir "%ProgramFiles%\Winshell\demo" ' />
 <remove cmd='"%PROGRAMFILES%\WinShell\unins000.exe" /SP- /SILENT /NORESTART' />
</package>