cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
5206
Views
2
Helpful
4
Replies

Is there a way to force all jabber clients to sign out and pull new jabber-config?

keithforcier
Level 1
Level 1

Is there a way to force all jabber clients to sign out so that a new jabber-config file can be pulled from the CM?

4 Replies 4

Manish Gogna
Cisco Employee
Cisco Employee

While there is a way to force deploy jabber in bulk i do not see such an option to force logout the users.

Manish

Tapan Dutt
Cisco Employee
Cisco Employee

One option you can use is Bulk un-license all the users from CUCM, for presence and license it back. Please try it for one single user and check if you obtain the desired results, i haven't tested it but if it logs the users out next time when user logs in jabber will automatically download the new jabber-config.xml file

 

Tapan

Please rate helpful posts.


 

There is no such way of forcing the jabber to logout, but you could try restarting XCP router service which will make the jabber to go offline and can be restored when user logsout and login back. This will kind of make users to logout and login back.

Regards
 

i do this way in my projects,
 for force all users to re-login their jabber windows:

1- create a batch file (which is force task kill jabber.exe + clean & delete jabber config + cache)
2- force to run this batch file on all PC windows through "group policy"  or  "any other remote admin software" that can do this..

##################################
>> my batch file script is this:
(open a notepad, copy paste this script, then save it as ".bat" file)

@echo off
timeout 1 > NUL
ipconfig/flushdns
timeout 1 > NUL
taskkill /f /t /im ciscojabber.exe
timeout 1 > NUL
rmdir /s /q "%userprofile%\AppData\Local\Cisco\Unified Communications\Jabber"
rmdir /s /q "%userprofile%\AppData\Roaming\Cisco\Unified Communications\Jabber"
timeout 1 > NUL
rmdir /s /q "%userprofile%\Documents\MyJabberFiles"
timeout 1 > NUL
cd C:\Program Files (x86)\Cisco Systems\Cisco Jabber
start CiscoJabber.exe
##################################

>> my Telegram id: @morez_hadi + if this helped, please rate by click (Accept as solution) or (Helpful)