abostonma7
IS-IT--Management
Hi Friends,
I've been looking for a solution to remove Meeting Maker program from multiple computers silently with no luck for weeks. I use the following script
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colSoftware = objWMIService.ExecQuery _
("Select * from Win32_Product Where Name = 'Meeting Maker'")
For Each objSoftware in colSoftware
objSoftware.Uninstall()
Next
But it does not do anything. Anyone has experience uninstalling this program?
Thanks in advance
I've been looking for a solution to remove Meeting Maker program from multiple computers silently with no luck for weeks. I use the following script
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colSoftware = objWMIService.ExecQuery _
("Select * from Win32_Product Where Name = 'Meeting Maker'")
For Each objSoftware in colSoftware
objSoftware.Uninstall()
Next
But it does not do anything. Anyone has experience uninstalling this program?
Thanks in advance