How to uninstall Cisco Unified Personal Communicator 8.5
It appears that the .MSI installer does not have an uninstall option? I would like to push the uninstall silently. Anyone have a VB Script or know if there is an uninstaller that I am unaware of?
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
jagadeish
11 years ago
The below command line should work
msiexec /x {ProductCode} /qb
Comments:
-
the issue is we have multiple product codes.....so this doesn't work - tinna444 11 years ago
-
It's quite an old post but maybe somebody is still interessted. We had a similar issue and i collected some Product Codes for CUPC 8.5 and 8.6.
We used this script:
REM cupc 8.6.2.20563 uninstall:
start /wait msiexec.exe /x {39AF5681-D448-4C33-A867-6F2DC52B9F38} /qn
REM cupc 8.5.5.19839 uninstall:
start /wait msiexec.exe /x {F754A105-BE10-43FC-9CD3-7D3EC5764EE4} /qn
REM cupc 8.5.6.20138 uninstall:
start /wait msiexec.exe /x {256B5065-E688-41AF-ADA4-CD0F364FAA31} /qn
REM cupc 8.6.1.20276 uninstall:
start /wait msiexec.exe /x {9DA559F6-D424-4C47-B48E-541C4791007D} /qn
REM cupc 8.5.5.19839 uninstall:
start /wait msiexec.exe /x {F754A105-BE10-43FC-9CD3-7D3EC5764EE4} /qn
REM cupc 8.5.1.17660 uninstall:
start /wait msiexec.exe /x {59A0E84B-DE53-47C2-95C8-B3B3A8D0C193} /qn
REM cupc 8.5.1.18771 uninstall:
start /wait msiexec.exe /x {65527992-D51E-4AFC-9A93-D560436AFFD2} /qn
REM cupc 8.5.3.19248 uninstall:
start /wait msiexec.exe /x {1BA6ED50-04DC-426A-BFB4-25E968B5C896} /qn
REM cupc 8.5.4.19609 uninstall:
start /wait msiexec.exe /x {5D20D75C-3081-44B2-AD61-8521FDDDE154} /qn
REM cupc 8.5.5.19839 uninstall:
start /wait msiexec.exe /x {698DE76F-150C-4B7D-87FB-1796BD2A1A3A} /qn
REM cupc 8.6.3.20802 uninstall:
start /wait msiexec.exe /x {D0336FF2-AFE4-4216-8AF7-D36DF4A9AC17} /qn - jagi_1.618 11 years ago