Difference between revisions of "Uphclean"
From WPKG | Open Source Software Deployment and Distribution
m |
(→User Profile Hive Cleanup Service: updated to 1.6g - nb new guid for uninstall.) |
||
| Line 4: | Line 4: | ||
<source lang="xml"> | <source lang="xml"> | ||
<package | <package | ||
| − | id=" | + | id="microsoftuphclean" |
| − | name="User Profile Hive Cleanup Service 1. | + | name="User Profile Hive Cleanup Service 1.6g" |
revision="1" | revision="1" | ||
reboot="false" | reboot="false" | ||
priority="0"> | priority="0"> | ||
| − | + | ||
| + | <variable name="PKG_PATH" value="Components\microsoft.UPHClean.1.6g" /> | ||
| + | |||
<check | <check | ||
type="uninstall" | type="uninstall" | ||
condition="exists" | condition="exists" | ||
path="User Profile Hive Cleanup Service" /> | path="User Profile Hive Cleanup Service" /> | ||
| − | + | ||
| − | <install cmd='msiexec /i "%SOFTWARE%\UPHClean-Setup.msi" /qn /norestart' /> | + | <install cmd='msiexec /i "%SOFTWARE%\%PKG_PATH%\UPHClean-Setup.msi" /qn /norestart' /> |
| − | + | ||
| − | <remove cmd='msiexec /x { | + | <remove cmd='msiexec /x {7D15B945-2725-4443-AB3F-D900556612FE} /passive /norestart' /> |
| − | + | ||
| − | <upgrade cmd='msiexec /i "%SOFTWARE%\UPHClean-Setup.msi" /qn /norestart' /> | + | <upgrade cmd='msiexec /i "%SOFTWARE%\%PKG_PATH%\UPHClean-Setup.msi" /qn /norestart' /> |
| − | + | ||
</package> | </package> | ||
</source> | </source> | ||
| + | =External Links= | ||
| + | [http://www.microsoft.com/download/en/details.aspx?id=6676 Microsoft download:User Profile Hive Cleanup Service 1.6g] | ||
[[Category: Silent Installers]] | [[Category: Silent Installers]] | ||
Revision as of 15:21, 17 August 2011
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="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} /passive /norestart' />
<upgrade cmd='msiexec /i "%SOFTWARE%\%PKG_PATH%\UPHClean-Setup.msi" /qn /norestart' />
</package>