unofficial blog

Remarkable features of Skype

Command line parameters for the new Skype

When the new Skype (that is, version 8 or higher) was released, users found that the program no longer supported the command line parameters that allowed to start several accounts at the same time or to create a portable Skype. In fact, not everything is as sad as it seems, and at the request of users, I decided to tell about the parameters of the command line in the new Skype. As a matter of fact, I planned to collect more information first and only then publish the article, but since they have already switched to the new Skype or are planning to do it, I'll have to tell only what I know and checked by myself (at the same time, other useful information may also come up).

List of command line parameters in the new Skype

Parameter Description
--datapath="path" Changes the folder where the user data is stored (by default, Skype stores them in %APPDATA%\Microsoft\Skype for Desktop). If path does not exist, Skype creates all the necessary folders.
--lang=ISO-639 Force Skype to use the specified locale. For example, use --lang=en-GB for British English, even if the OS has a different language or datetime format.
--secondary Launches several instances of Skype at the same time. To run multiple accounts, you must specify the parameter --datapath
--shutdown Closes Skype processes, started without the parameter --secondary
--_="URI scheme" Launches Skype using parameters of the URI scheme skype: (for example, if you pass --_="skype:echo123?call&video=true", Skype will make a video call to the echo123 service).

In addition to these, there are several other parameters, but I am not sure yet what they are intended for. Some of these parameters are given below:
  • --application-name
  • --auto-start
  • --migration

Since the new Skype is developed on the basis of the Electron framework, users can use more than 1200 parameters that are available for Chromium. A complete list of these parameters can be found here: https://peter.sh/experiments/chromium-command-line-switches/

How to run more than one account at a time?

For example, create a new shortcut for each account and specify the following path:
C:\Program Files (x86)\Microsoft\Skype for Desktop\Skype.exe --secondary --datapath="F:\SkypeNew\Login_1"

For a more convenient way, read How to run multiple Skype programs simultaneously or How to create a portable Skype for Windows.

The article clearly does not contain all the information about the parameters in the new Skype, so I will periodically update the material. Also, I will be grateful for any comments and additions.

21 comments

  1. 1 +1 0
    jordinordbeck (karma: +4),
    I have just looking for official information in skype website but the guide is for the old interface (any reference at all about the issue in the new version). I'm lucky to find your recent post. I have created a shortcut for the desktop (from the new skype path) and I have added the "--secondary" parameter in Properties>Shortcut (tab)>Target . That's all!
    1. 0 -1 1
      Administrator (karma: +1208),
      Hello! You're welcome! Please note that this won't allow you to use multiple accounts if you have enabled the "automatic log in" option. That is, when you run the second one without the --datapath parameter, it will launch the first account.
  2. 1 +1 0
    Sandi (karma: +9),
    Thanks for this update, it's great to have found at least one person who's written about the newest Skype and multiple instances to run. Would you happen to know or have the command line for Skype on a Mac OSx?
    Hopeful in advance,
    Cheers!
    1. 0 0 0
      Administrator (karma: +1208),
      I'm glad you found it useful. As for macOS I'm not sure, but I think the same commands should work. Is this not so?
      1. 1 +1 0
        Sandi (karma: +9),
        Thanks for your quick response! I'm not too sure but the old command line that worked before this update worked and the new "suggested" one that doesn't seem to work for me. Here's the newest (and only entry command lines I could find that was written up, shortly after the new release of 8.13.x

        sudo /Applications/Skype.app/Contents/MacOS/Skype /secondary (Did not work for me as it suggested that my login was not in the Sudoers file.)

        nohup sudo /Applications/Skype.app/Contents/MacOS/Skype /secondary (Did not work despite Admin Password request and entry)

        For reasons I can only believe is because I'm not running under my main Admin account, is perhaps somehow circumventing it from executing. It does prompt me for my Admin Password (to make changes) but once it's in, nothing changes. I will attempt it in the Admin login, but unfortunately it has not worked that way before, either.

        Before the newest Skype release, the command line that I entered and set as a start up file as well, worked like a charm, and both of my Skype accounts logged in and both instances were opened and running.
        The even more baffling part to this is, the OLD command line for the old release, works on my Macbook Pro, once I set up the old command line (as a start up file as well). So, I'm really baffled.

        Sorry for the lengthy reply!

        Cheers!

        [Updated ]
        UPDATE: For Mac OSx

        Messaged Skype Microsoft Support and this is what user TechFreak wrote and suggested:

        open -na /Applications/Skype.app --args --secondary --datapath="/Users/$(whoami)/Library/Application Support/Microsoft/Skype for Desktop/Profile1"

        To create an executeable text file (code file) and so that it can be made into a Startup file, use this at line 1:
        #!/bin/bash
        and use the Command line above as line 3. The Bin file should be ahead of the command line. This can be typed in TextEdit or Adobe Code and saved to run as a UNIX file, to execute.
        It works like a dream. If you don't wish to create an executeable, those lines can bIt can be either used typed out in TERMINAL or Use it in Users as a Start up Item to run.

        Hopefully this helps Unix or Mac OSx users too!

        Again, thanks so much for your help!

        Cheers!
        1. 0 0 0
          Administrator (karma: +1208),
          Hey! Thank you very much for sharing this instruction. Regards!
        2. 0 0 0
          wizonesolutions (karma: +11),
          Nice, this helped me fix my script...except that the secondary copy makes me log in every time.

          I use this script to create a second copy of Skype:

          #!/bin/bash
          echo "Removing old WorkSkype..."
          rm -rf /Applications/WorkSkype.app
          echo "Copying Skype.app..."
          cp -R /Applications/Skype.app /Applications/WorkSkype.app
          echo "Configuring init script..."
          mv /Applications/WorkSkype.app/Contents/MacOS/Skype /Applications/WorkSkype.app/Contents/MacOS/WorkSkype
          cp /Users/$(whoami)/shortcuts/SkypeLauncher /Applications/WorkSkype.app/Contents/MacOS/Skype
          echo "done."


          SkypeLauncher contains the #!/bin/bash and run commands (without open -na) since it's already in its own app bundle.

          I've tried playing with the arguments a bit (removing --args in particular, since I'm not using open anymore), but it doesn't seem to matter; I will get logged out whenever I open the app, even though it clearly knows that I was logged in before (my account comes up briefly before it requires login again).

          Maybe it's a security feature. Going to play with it some more.
          1. 0 0 0
            Administrator (karma: +1208),
            Be sure that --datapath points to two different folders.
            1. 0 0 0
              wizonesolutions (karma: +11),
              I should only have to specify it for the second instance, though, right? I do see the previous contents flash by, meaning it should be on the right datapath. But for some reason, it always makes me log in.

              In `SkypeLauncher` I have:
              #!/bin/bash
              /Applications/WorkSkype.app/Contents/MacOS/WorkSkype --secondary --datapath="/Users/$(whoami)/Library/Application Support/Microsoft/Skype for Desktop/Profile1"


              (I've tried with a few values, but none of them persist the login.)
              1. 0 0 0
                Administrator (karma: +1208),
                Sorry, I cannot test it now, but you should try this:
                1) To launch first profile:
                /Applications/WorkSkype.app/Contents/MacOS/WorkSkype --secondary --datapath="/Users/$(whoami)/Library/Application Support/Microsoft/Skype for Desktop/Profile1"

                2) To launch second profile:
                /Applications/WorkSkype.app/Contents/MacOS/WorkSkype --secondary --datapath="/Users/$(whoami)/Library/Application Support/Microsoft/Skype for Desktop/Profile2"
                1. 0 0 0
                  wizonesolutions (karma: +11),
                  Doesn't seem to work. Tried Profile0 and Profile1 with my main Skype app...still asks for a login each time. Only the primary Skype app seems to remember the login.
  3. 1 0 1
    David (karma: 0),
    Doesn't seem to work for Skype for business client :(
  4. 0 0 0
    John Doe (karma: 0),
    Skype seems to use discrete graphics card now on OS X, is it possible to diable it?

    How to find out what are supported command line options for Skype?
    1. 0 0 0
      Administrator (karma: +1208),
      You need to search for Chrome Command Line Switches. In your case, try --disable-gpu
  5. 0 0 0
    Karl Grimm (karma: 0),
    Hey guys. Many thanks for this incredibly useful information. I have been running two Skype accounts on my work PC for years, and didn't want the new lose the capability just because I went to the latest version.
  6. 0 0 0
    Alex (karma: 0),
    thank you, you helped me a lot!
  7. 0 0 0
    Muhammad (karma: 0),
    Thanks , works great.
  8. 0 0 0
    diana (karma: +3),
    am using the new skype how can i open a multi skype account...please show me the steps so i can open two skype
    1. 0 0 0
      Administrator (karma: +1208),
  9. 0 0 0
    Nirmal (karma: 0),
    Old method is still running just syntax changed

    old method [terminal command]

    Just go to skype directory path in command prompt, mine is "C:\Program Files (x86)\Microsoft\Skype for Desktop"

    =>cd C:\Program Files (x86)\Microsoft\Skype for Desktop
    => then run command called Skype.php --secondary

    => old method was - Skype.php /secondary
  10. 0 0 0
    Robert Hobbs (karma: 0),
    I've figured out how to open Skype using a Windows "ShellExecute" command, but now am looking for if there is a way to add a parameter to cause it to open a particular "target" contact by providing that contact's Skype Id as a parameter. Have not been able to find anything in my web searches including Skype community page. Any help would be appreciated..

Add new comment

Comments are moderated by the administrator and cannot immediately appear on the site.
Name:
Email:
Want to be notified of new comments?
If you activate notifications, you can at any time cancel them.
Before you start receiving notifications, you’ll have to confirm that the email you provided is yours.
Message:
• When asking a question, please specify the operating system and the version of Skype.
• If you encounter any errors, copy the full text of the message here.
• Do not forget that this is an unofficial blog, and here you get help only from regular users of Skype.
Rate entry: