Classic Shell
From WPKG | Open Source Software Deployment and Distribution
"Classic Shellâ„¢ is free software that improves your productivity, enhances the usability of Windows and empowers you to use the computer the way you like it." [1]
Version 4.1.0
TODO: - fix MSI - change path to logfile
<?xml version="1.0" encoding="UTF-8"?>
<packages:packages xmlns:packages="http://www.wpkg.org/packages"
xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.wpkg.org/packages ../xsd/packages.xsd">
<package
id="classicshell"
name="Classic Shell"
revision="4.1.0"
reboot="false"
priority="10">
<variable name="version" value="4_1_0" />
<variable name="logfile" value="c:\classicshell.log" />
<check type="logical" condition="or">
<check type="uninstall" condition="exists" path="Classic Shell"/>
</check>
<install cmd='"%SOFTWARE%\Classic Shell\ClassicShellSetup_%version%.exe" /l* "%logfile%" /qn' />
<upgrade cmd='"%SOFTWARE%\Classic Shell\ClassicShellSetup_%version%.exe" /l* "%logfile%" /qn' />
<remove cmd='"%SOFTWARE%\Classic Shell\ClassicShellSetup_%version%.exe" /l* "%logfile%" /x %MSI% /qn' />
</package>
</packages:packages>