Skip to main content

Cisco Webex - Outlook integration issue

 Cisco Webex - Outlook integration issue

  1. Close MS Outlook and Cisco Webex.
  2. Open Registry Editor (regedit.msc) and navigate to Computer\HKEY_CURRENT_USER\SOFTWARE\IM Providers
  3. Remove Cisco Jabber folder and all items with name like "Cisco Jabber".
    NOTE: Don't remove and don't change "Cisco Spark" folder.
  4. Close Registry Editor.
  5. Then you need to register integration .dll:
    1. Run cmd.exe AS ADMINISTRATOR
    2. Navigate to c:\Users\<YOUR USERNAME>\AppData\Local\Programs\Cisco Spark\dependencies

    3. Enter command regsvr32.exe /s spark-windows-office-integration.dll

    4. Close cmd.exe
  6. Start Cisco Webex.
  7. Start MS Outlook.
  8. Check integration feature.
Note : If webex was installed from official site, then path is с:\Users\<YOURUSERNAME>\AppData\Local\Programs\Cisco Spark\dependencies
Else if webex was deployed by SCCM (or installed from Software Center), then path is с:\ProgramFiles\Cisco Spark\dependencies

Comments

Popular posts from this blog

IBM iAccess for windows 7.1 "a system restart is pending" error

 IBM iAccess for windows 7.1 "a system restart is pending" error HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager 1. Look for the following key:  PendingFileRenameOperations or   FileRenameOperations ** 2. Right-click ->  Rename . 3. Add a prefix ### and press Enter. 4. Close regedit and attempt the installation.  Note:  Make sure to go back and remove the ### prefix. The installation should continue.

Webex always using Microphone

 Webex always using Microphone 1). Navigate to Webex settings 2). Devices - Use Ultrasound 3). Remove ticket "Use Ultrasound"

Your organization manages updates on this PC

 Your organization manages updates on this PC We can disable updates from SCCM/WSUS for time being by using below command $currentWU = Get-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” | select -ExpandProperty UseWUServer Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value 0 Restart-Service wuauserv Once required updates are installed on Laptop switch back to previous settings Set-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU” -Name “UseWUServer” -Value $currentWU Restart-Service wuauserv