Type your Skype username:
Choose your Skype version:
Choose your Skype version:
-
Right-click on desktop (or inside desired folder) and choose «New», then click «Shortcut».
-
As the location of the item paste the following command, and click «Next»:
"%ProgramFiles%\Skype\Phone\Skype.exe" /secondary /username:skype_login
-
Enter the name of shortcut (eg
Skype.exe
) and click «Finish».
-
Now on your desktop will appears a new shortcut — double-clicking on it will launch Skype with your username. You can copy the shortcut to any folder, or if you want to automatically launch it at Windows starts up, copy the shortcut to the folder:
%APPDATA%\Microsoft\Windows\Start Menu
How does it work in the classic Skype?
The Skype supports a very useful command line option: “/secondary” which allows to run multiple instances of Skype at the same time, we just need to pass it to the Skype.exe, using a shortcut or the command line. To tell which Skype login we want to use, we should specify the “/username” option.As a result, we obtain the following command:
"%ProgramFiles%\Skype\Phone\Skype.exe" /secondary /username:skype_login
For convenience, we can save this command as a shortcut which launches Skype: right-click on the desktop and select the «New» and then click «Shortcut». Now, it remains to enter the above command as the item path and type the shortcut name.
How does it work in Skype 8?
The new Skype also has the ability to run multiple accounts at the same time, but the command line option/secondary
is replaced by --secondary
and you must use --datapath
intead of /username
.
As a result, we obtain the following command:
"%ProgramFiles(x86)%\Microsoft\Skype for Desktop\Skype.exe" --secondary --datapath="F:\Skype8"
Why Skype.exe cannot be found?
If during shortcut creation you get the “The file Skype.exe cannot be found” error, it means that Skype is installed elsewhere. Locate the installation folder and manually change the path of the item. For example, instead of:"%ProgramFiles%\Skype\Phone\Skype.exe"
Write:
"D:\Programs\Skype\Skype.exe"
It is important to note that in the new Skype the default path is changed to:"%ProgramFiles(x86)%\Microsoft\Skype for Desktop\Skype.exe"
8 comments
+4
), #1. Skype for Android (the regular app we all know and love)
2. Skype Beta (which shows you forthcoming features when you first open the app)
3. Skype Lite (aimed at the India market but available and working worldwide)
4. The China version of Skype, sometimes known as Skype Rover, which is now legacy but still works as of July 2018. It is unavailable in the Google Play store and must be side-loaded onto your device, which requires temporarily changing a security setting. Don't try this if you are nervous about privacy.
I use all 4 simultaneously. I set up the colour schemes of the first 3so that I know which one I'm in.
Hope this helps!
John at Konnekt Videophone https://www.konnekt.com.au
0
), #0
), #+301
), #+1207
), # ↑+4
), #A couple of notes though:
1) although I had first to create the folder on a non system drive (ie a USB key), later I was able to move the same folder onto the system drive. After correcting the path, the shortcut worked.
2) the method does not work for those new skype ID having "live:..." or an email. (invalid ID error)
+1207
), # ↑1) This happened because Windows do not allow Skype to create folders/files on the system drive. If you want to bypass it, you should run Skype as Administrator.
2) It should work, even if this instruction do not allow you to use such username (well, now I fixed it). The only thing to remember is that you should replace “:” with “%3A”.
By the way, I’m using this solution to automatically create portable Skype and run multiple accounts. It supports legacy usernames, as well as email and “live” accounts.
+3
), #I can't find the way to use multiple accounts on Mac. Could you let me know the code?
Also it worked when I typed in this code below.
#!/bin/bash
open -na /Applications/Skype.app --args --secondary --datapath="/Users/$(whoami)/Library/Application Support/Microsoft/Skype for Desktop/Profile1"
But how can I apply it automatically so that I don't have to open a terminal and type the code every time.
Thanks!