Bulk uninstallation of WebEx Meetings

Thisaru Perera 11 Reputation points
2022-02-27T07:31:02.327+00:00

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: -

  • Batch File

@Echo off
wmic product where "name like 'Cisco webex%%'" call uninstall /nointeractive
wmic product where "name like 'webex%%'" call uninstall /nointeractive

  • PowerShell Script

*$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.

Windows for business | Windows Server | User experience | PowerShell
Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Rich Matheisen 47,901 Reputation points
    2022-02-27T15:58:47.207+00:00

    Because the application is installed "per user" you'll have to uninstall from each user's profile.

    Have you tried creating a scheduled task to run on-demand? The task would run with elevated privileges and execute either the uninstall string you've already found, or a script (PowerShell or batch) that runs it (along with any reporting you need). Once the task has been created, execute the scheduled task, then remove it and move on to the next user profile repeating the process.


  2. Gareth Lloyd 0 Reputation points
    2023-09-08T03:31:58.75+00:00

    FANTASTIC! BEEN A BIG TICKET FOR THIS WITH THREE SENIOR TECHS AND THIS WAS THE ANSWER

    Scheduler Task

    "C:\Windows\System32\cmd.exe" /k wmic product where "name like 'webex%%'" call uninstall /nointeractive

    or
    "C:\Windows\System32\cmd.exe" /k wmic product where "name like 'Cisco webex%%'" call uninstall /nointeractive

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.