Top Tip by Andrew Beard
You must first know the exact version and build number of the Workshare product, because each one will have a different and unique MSI identifier key code.
- Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
- There will be a list of product codes, scroll down individually and lcoate the Workshare product to be removed (i.e. DeltaView, Protect or Workshare Professional).
- Double click on the "uninstallstring" field and you will see a path resembling "MsiExec.exe /I{F0D8B3F5-736D-4DEA-A80A-A7FD0F5B8073}
- Replace the code in your uninstall script with the code you have just copied from HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall.
- Use that as below in the script:
MsiExec.exe /x {F0D8B3F5-736D-4DEA-A80A-A7FD0F5B8073}
Include the rest of the script after this.
Note: The /x is the MSI parameter switch to uninstall a Windows product.