Difference between revisions of "Uphclean"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(User Profile Hive Cleanup Service: updated to 1.6g - nb new guid for uninstall.)
(User Profile Hive Cleanup Service: changed uninstall from passive to qn after testing.)
Line 1: Line 1:
 
== User Profile Hive Cleanup Service ==
 
== 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/downloads/details.aspx?FamilyID=1b286e6d-8912-4e18-b570-42470e2f3582 Microsoft Downloads] is a simple MSI which is packaged trivially:
+
UPHClean as described in [http://support.microsoft.com/kb/837115/en-us MS KB837115] is a simple MSI which is packaged trivially:
  
 
<source lang="xml">
 
<source lang="xml">
Line 19: Line 19:
 
                 <install cmd='msiexec /i "%SOFTWARE%\%PKG_PATH%\UPHClean-Setup.msi" /qn /norestart' />
 
                 <install cmd='msiexec /i "%SOFTWARE%\%PKG_PATH%\UPHClean-Setup.msi" /qn /norestart' />
 
   
 
   
                 <remove cmd='msiexec /x {7D15B945-2725-4443-AB3F-D900556612FE} /passive /norestart' />
+
                 <remove cmd='msiexec /x {7D15B945-2725-4443-AB3F-D900556612FE} /qn /norestart' />
 
   
 
   
 
                 <upgrade cmd='msiexec /i "%SOFTWARE%\%PKG_PATH%\UPHClean-Setup.msi" /qn /norestart' />
 
                 <upgrade cmd='msiexec /i "%SOFTWARE%\%PKG_PATH%\UPHClean-Setup.msi" /qn /norestart' />

Revision as of 15:29, 17 August 2011

User Profile Hive Cleanup Service

UPHClean as described in MS KB837115 is a simple MSI which is packaged trivially:

<package
        id="microsoftuphclean"
        name="User Profile Hive Cleanup Service 1.6g"
        revision="1"
        reboot="false"
        priority="0">
 
		<variable name="PKG_PATH" value="Components\microsoft.UPHClean.1.6g" />
		
                <check
                        type="uninstall"
                        condition="exists"
                        path="User Profile Hive Cleanup Service" />
 
                <install cmd='msiexec /i "%SOFTWARE%\%PKG_PATH%\UPHClean-Setup.msi" /qn /norestart' />
 
                <remove cmd='msiexec /x {7D15B945-2725-4443-AB3F-D900556612FE} /qn /norestart' />
 
                <upgrade cmd='msiexec /i "%SOFTWARE%\%PKG_PATH%\UPHClean-Setup.msi" /qn /norestart' />
 
</package>

External Links

Microsoft download:User Profile Hive Cleanup Service 1.6g