Advertisement
Combreal

uninstallCiscoMeeting.ps1

Feb 16th, 2022
1,345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <#
  2. .SYNOPSIS
  3. This script uninstall Cisco Meeting App.
  4. #>
  5.  
  6. $uninstall32 = gci "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" | foreach { gp $_.PSPath } | ? { $_ -match "Cisco Meeting" } | select UninstallString | ft -HideTableHeaders | Out-String
  7. If ($uninstall32) {
  8.     $uninstall32 = $uninstall32 -Replace "msiexec.exe", "" -Replace "/X",""
  9.     $uninstall32 = $uninstall32.Trim()
  10.     start-process "msiexec.exe" -arg "/X $uninstall32 /q" -Wait
  11.     return 0
  12. }
  13. Else { return 210 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement