Skip to content

Instantly share code, notes, and snippets.

@askbow
Created January 9, 2019 11:54
Show Gist options
  • Save askbow/d60300ccd84243b485847922678a3e79 to your computer and use it in GitHub Desktop.
Save askbow/d60300ccd84243b485847922678a3e79 to your computer and use it in GitHub Desktop.
@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
@iotalex
Copy link

iotalex commented Dec 21, 2021

This is amazing! Wow!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment