Difference between revisions of "Uphclean"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Created page with '== User Profile Hive Cleanup Service == UPHClean as described in [http://support.microsoft.com/kb/837115/en-us MS KB837115] and downloadable from [http://www.microsoft.com/downlo…')
 
m
Line 23: Line 23:
 
</package>
 
</package>
 
</source>
 
</source>
 +
 +
[[Category:  Silent Installers]]

Revision as of 00:18, 21 November 2009

User Profile Hive Cleanup Service

UPHClean as described in MS KB837115 and downloadable from Microsoft Downloads is a simple MSI which is packaged trivially:

<package
        id="uphclean"
        name="User Profile Hive Cleanup Service 1.6d"
        revision="1"
        reboot="false"
        priority="0">

                <check
                        type="uninstall"
                        condition="exists"
                        path="User Profile Hive Cleanup Service" />

                <install cmd='msiexec /i "%SOFTWARE%\UPHClean-Setup.msi" /qn /norestart' />

                <remove cmd='msiexec /x {FF77941A-2BFA-4A18-BE2E-69B9498E4D55} /passive /norestart' />

                <upgrade cmd='msiexec /i "%SOFTWARE%\UPHClean-Setup.msi" /qn /norestart' />

</package>