romanitalian notes / Run skype secondary - two or more applications in the same time

Save the following code into file skype_secondary.bat

And run it (this file) - for run second Skype application. For example with second account login and password.

REM For Windows:
REM Make file: skype_secondary.bat and put the following into this file:
@echo off
"start "" "C:\Program Files (x86)\Skype\Phone\Skype.exe" /secondary /username:YOUR_ACCOUNT_NAME /password:YOUR_PASSWORD"
REM
REM OR
REM you can run this in your terminal (cmd console for Windows) - for make executable file:
REM
REM echo @echo off > skype_secondary.bat && echo "start "" "C:\Program Files (x86)\Skype\Phone\Skype.exe" /secondary /username:YOUR_ACCOUNT_NAME /password:YOUR_PASSWORD" >> skype_secondary.bat