Uninstalling HPC Pack 2008 R2

If for some reason you want to uninstall the HPC Pack 2008 R2 software from multiple computers, read on...

HPC Pack 2008 R2 is made up of several different components (for example the Client Utilities and the MPI Redistributable) that get installed in different combinations depending on what options you picked during setup. To fully remove the HPC Pack software you must remove all of the components, and some of the components can only be removed in a specific order.

It is not difficult to use the" Add or Remove Programs" or "Programs and Features" control panel to uninstall the pieces from 1 or 2 computers, but if you have a lot of computers to update that can get very tedious.

Copy this script in to notepad and save it as 'UninstallHPC.bat', and you can use it on any computer to remove all HPC Pack 2008 R2, HPC Pack 2008, and Compute Cluster Pack software.

echo Removing Compute Cluster Pack

MsiExec.exe /uninstall {01493E6E-2473-4DE5-963B-BF17BACC21C3} /passive
MsiExec.exe /uninstall {C87F3322-A8A0-4239-A81C-36292A250593} /passive

echo Removing HPC Pack 2008

MsiExec.exe /uninstall {21CE1D35-AB84-46fe-B2FD-B57271BE7B93} /passive
MsiExec.exe /uninstall {3EEC9986-EDE0-4ee2-ACFB-A3CD78A16F6D} /passive

echo Removing HPC Pack 2008 R2

echo Removing HPC Server Components
MsiExec.exe /x{CD5190DD-A85D-4844-9BF4-AC6B04EB1A12} /passive
MsiExec.exe /x{F1BB42C1-B9AE-4F47-843A-12FE8F956FFA} /passive
echo Removing MPI Redistributable
MsiExec.exe /x{D3299935-57F7-403A-9D7B-0B8F9F56F44B} /passive
MsiExec.exe /x{5576D439-C958-4EB6-97D9-EE9EA5760DAF} /passive
echo Removing Client Utilities
MsiExec.exe /x{D86BF5A7-BB6E-423f-AA1D-02B5F59C38B0} /passive
MsiExec.exe /x{67E5BC0C-8BFE-450C-902E-FDE8660E02E1} /passive
echo Removing HPC Excel Components
MsiExec.exe /x{7544D810-316A-4380-BBD6-3B7C02962392} /passive
MsiExec.exe /x{14AFEF5F-DD16-48FF-BFF9-2B4A83352422} /passive
echo Removing HPC Web Components
MsiExec.exe /x{7160D5B0-9F57-4B72-B4CA-41F65ABF44B7} /passive

Notes:

  1. This does not remove your database files or any WIMs that you've captured, so you may still have 'HPC-related files' on your computer.
  2. The script needs to be run from an Elevated/Administrator command window or you will have to acknowledge pop-up windows for each step.