Created
June 11, 2018 08:10
-
-
Save 0xded093/3ca610d5858bcfd1219b9c1efb9b46ce 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
#!/bin/sh | |
# Kill existing Skype Session | |
kill -9 `pgrep -f Skype` | |
# Change into the application data folder | |
cd ~/Library/Containers/com.microsoft.SkypeForBusiness/Data/Library/Application\ Support/com.microsoft.SkypeForBusiness | |
# Backup db | |
cp DataStore.sqlite DataStore.sqlite.bk_$(date +%Y-%m-%d) | |
# Remove all Conversations | |
sqlite3 DataStore.sqlite "delete from Conversation" | |
# Remove all Conversation items | |
sqlite3 DataStore.sqlite "delete from ConversationHistoryItem" | |
# Restart Skype | |
open /Applications/Skype\ for\ Business.app/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment