Hello Techies,
I am trying to remove the “WebEx Meetings” application from all of the computers using a script (Bulk uninstallation) in one of the customers and I am having trouble uninstalling it. So far, I have tried the below options and none of them gave me the solution for it. So, I am seeking your support to get it done.
The scripts I have used: -
@Echo off
wmic product where "name like 'Cisco webex%%'" call uninstall /nointeractive
wmic product where "name like 'webex%%'" call uninstall /nointeractive
*$app = Get-WmiObject -Class Win32_Product | Where-Object {
$_.Name -like "webex"
}
$app.Uninstall()*
The issue here is that we are unable to see the “WebEx Meetings” application when we use the below commands.
- wmic product where "name like 'Cisco webex%%'"
- wmic product where "name like 'webex%%'"
- *Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -like "webex"*
- Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall* | Select-Object DisplayName
- Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall* | Select-Object DisplayName
As per my understanding, the problem is mentioned in this article (https://community.cisco.com/t5/webex-meetings-and-webex-app/automated-uninstall-of-webex-meetings-desktop-application/td-p/4280950). But there’s no solution for that as well. Therefore, I am grateful if you can provide me with a solution for this issue.
Thanks and Regards,
Thisaru Perera.