Skip to content

Instantly share code, notes, and snippets.

@wneessen
Created February 14, 2011 15:33
Show Gist options
  • Select an option

  • Save wneessen/826042 to your computer and use it in GitHub Desktop.

Select an option

Save wneessen/826042 to your computer and use it in GitHub Desktop.
Little Skype restart script
@ECHO OFF
:: Skype-Restart script
:: (C) 2011 by Winfried Neessen
:: Kill current skype process
taskkill /IM Skype.exe /f
:: Delete shared.xml file
del %appdata%\Skype\shared.*
:: Start new Skype instance
start /D "C:\Program Files (x86)\Skype\Phone\" Skype.exe
@spinalgr1990

Copy link
Copy Markdown

@echo OFF
:: Skype-Restart script
:: (C) 2011 by Winfried Neessen

:: Kill current skype process
taskkill /IM Skype.exe /f

:: Delete shared.xml file
del %appdata%\Skype\shared.*

:: Start new Skype instance
start /D "C:\Program Files (x86)\Microsoft\Skype for Desktop" Skype.exe

@wneessen

Copy link
Copy Markdown
Author

Ok? So you copied the Gist from 2011 as comment.

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