hello
I am trying to uninstall all versions of Office Communicator R2 on our users computers. This is the script I have:
taskkill /IM communicator.exe /F
msiexec.exe /x {23E5396B-F5C5-4D56-A166-B6E111C4D36C} /qn
msiexec.exe /x {0D1CBBB9-F4A8-45B6-95E7-202BA61D7AF4} /qn
msiexec.exe /x {CEECF731-3F08-4210-8073-7E87F58C01D3} /qn
Problem:
On a test computer, communicator was uninstalled when the above script was ran but I got the Error 1605. I later confirmed that the msi code for the version of communicator installed on my test computer was {0D1CBBB9-F4A8-45B6-95E7-202BA61D7AF4}.
How can modify my script so that I can uninstall all possible versions of OCS installed on all computers?
Thank you in advance for your assistance