Created
January 9, 2019 11:54
-
-
Save askbow/d60300ccd84243b485847922678a3e79 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM this script performs a hard reset of local CiscoJabber profile data | |
echo #Stop CiscoJabber.exe... | |
taskkill /f /im CiscoJabber.exe | |
echo #Clear Roaming Profile | |
cd "%APPDATA%\Cisco\Unified Communications" | |
rd /s /q "Jabber" | |
echo #Clear Local Profile | |
cd "..\Local\Cisco\Unified Communications" | |
rd /s /q "Jabber" | |
echo #Done | |
start "" "C:\Program Files (x86)\Cisco Systems\Cisco Jabber\CiscoJabber.exe" | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is amazing! Wow!