Skip to content

Instantly share code, notes, and snippets.

@0xded093
Created June 11, 2018 08:10
Show Gist options
  • Save 0xded093/3ca610d5858bcfd1219b9c1efb9b46ce to your computer and use it in GitHub Desktop.
Save 0xded093/3ca610d5858bcfd1219b9c1efb9b46ce to your computer and use it in GitHub Desktop.
#!/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