How to open a new tab in Chrome in an existing/running Chrome with cmdWhat are PATH and other environment...

What is the meaning of "pick up" in this sentence?

Find the number of ways to express 1050 as sum of consecutive integers

Is my plan for fixing my water heater leak bad?

What's the purpose of these copper coils with resitors inside them in A Yamaha RX-V396RDS amplifier?

Finding ratio of the area of triangles

Is the theory of the category of topological spaces computable?

On what did Lego base the appearance of the new Hogwarts minifigs?

Am I a Rude Number?

How can I improve my fireworks photography?

Table enclosed in curly brackets

Has the Isbell–Freyd criterion ever been used to check that a category is concretisable?

Eww, those bytes are gross

What does a violin mute do?

4 Spheres all touching each other??

Why do neural networks need so many training examples to perform?

LTSpice: When running a linear AC simulation, how to view the voltage ratio between two voltages?

How can I mix up weapons for large groups of similar monsters/characters?

How to mitigate "bandwagon attacking" from players?

Finding the number of integers that are a square and a cube at the same time

raspberry pi change directory (cd) command not working with USB drive

It took me a lot of time to make this, pls like. (YouTube Comments #1)

Can a person refuse a presidential pardon?

Wanted: 5.25 floppy to usb adapter

How to satisfy a player character's curiosity about another player character?



How to open a new tab in Chrome in an existing/running Chrome with cmd


What are PATH and other environment variables, and how can I set or use them?Command-Line Option to Open Chrome in New Window and Move FocusHow can I use Autohotkey to focus on an existing Google Chrome tab, not a “container” window?How to open a page in Chrome from the command line, in a new tab or an existing tab as appropriate?Make Chrome New Tab Totally BlankOpen URL in Chrome's current tab from command lineOpen Chrome tab in background using command lineCommand-Line Option to Open Chrome in New Window and Move FocusHow can I prevent a command run in cmd from opening a new cmd window OR how can I keep that window open?Google Chrome running super slowhow to open Chrome tab from the command-line without giving it focus (on Windows)Open Chrome new tab from outside Chrome













6















I would like to know if it is possible, with cmd, to open a new tab with a specific URL in a running Google Chrome. If yes, How??



So here what I've tried with what happened.





  1. Command-Line Option to Open Chrome in New Window and Move Focus



    The solution of this question worked half, it opened a new tab with the needed URL, but also a new window. But I need to open a specific page in a running Google Chrome.




  2. https://bugs.chromium.org/p/chromium/issues/detail?id=26728



    According to what I've understood from this source, it is impossible to do so with cmd. I think I misunderstood, but I don't see where.




Also, the command, chrome ... doesn't seem to work. CMD says:




'chrome' is not recognized as an internal or external command,
operable program or a batch file




I'm using Windows 10.










share|improve this question





























    6















    I would like to know if it is possible, with cmd, to open a new tab with a specific URL in a running Google Chrome. If yes, How??



    So here what I've tried with what happened.





    1. Command-Line Option to Open Chrome in New Window and Move Focus



      The solution of this question worked half, it opened a new tab with the needed URL, but also a new window. But I need to open a specific page in a running Google Chrome.




    2. https://bugs.chromium.org/p/chromium/issues/detail?id=26728



      According to what I've understood from this source, it is impossible to do so with cmd. I think I misunderstood, but I don't see where.




    Also, the command, chrome ... doesn't seem to work. CMD says:




    'chrome' is not recognized as an internal or external command,
    operable program or a batch file




    I'm using Windows 10.










    share|improve this question



























      6












      6








      6


      2






      I would like to know if it is possible, with cmd, to open a new tab with a specific URL in a running Google Chrome. If yes, How??



      So here what I've tried with what happened.





      1. Command-Line Option to Open Chrome in New Window and Move Focus



        The solution of this question worked half, it opened a new tab with the needed URL, but also a new window. But I need to open a specific page in a running Google Chrome.




      2. https://bugs.chromium.org/p/chromium/issues/detail?id=26728



        According to what I've understood from this source, it is impossible to do so with cmd. I think I misunderstood, but I don't see where.




      Also, the command, chrome ... doesn't seem to work. CMD says:




      'chrome' is not recognized as an internal or external command,
      operable program or a batch file




      I'm using Windows 10.










      share|improve this question
















      I would like to know if it is possible, with cmd, to open a new tab with a specific URL in a running Google Chrome. If yes, How??



      So here what I've tried with what happened.





      1. Command-Line Option to Open Chrome in New Window and Move Focus



        The solution of this question worked half, it opened a new tab with the needed URL, but also a new window. But I need to open a specific page in a running Google Chrome.




      2. https://bugs.chromium.org/p/chromium/issues/detail?id=26728



        According to what I've understood from this source, it is impossible to do so with cmd. I think I misunderstood, but I don't see where.




      Also, the command, chrome ... doesn't seem to work. CMD says:




      'chrome' is not recognized as an internal or external command,
      operable program or a batch file




      I'm using Windows 10.







      windows windows-10 command-line google-chrome cmd.exe






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 25 '17 at 23:56









      DavidPostill

      106k26228263




      106k26228263










      asked Jun 25 '17 at 23:34









      Bog RuBog Ru

      3313




      3313






















          5 Answers
          5






          active

          oldest

          votes


















          2














          If chrome is your default browser, you can try this:



          start "" "http://www.google.com"


          It will open the URL in the existing window or start your default browser if you haven't openend one yet.



          You can also set the limitation to not open the link if the browser isn't running:



          tasklist /nh|findstr "chrome.exe"&&start "" "http://www.google.com"


          That will open the URL only if chrome.exe has been found within the running tasks.






          share|improve this answer
























          • Thank you, the first command was what I've been searching for. What David wasn't wrong, but it made me open another window. I wanted to be working with an already opened one and add tabs to it. Thank you for both of your time.

            – Bog Ru
            Jun 26 '17 at 22:09











          • 1st command worked but it opened IE as it is default. 2nd din't work as there were many chrome instances running so it listed all instead of opening in one of the running chromes.

            – Manohar Reddy Poreddy
            Jul 14 '18 at 15:07





















          2














          The command, chrome ... doesn't seem to work




          'chrome' is not recognized as an internal or external command, operable program or a batch file




          That is because chrome is not in your path. You can add the Chrome directory to your path (see What are PATH and other environment variables, and how can I set or use them?) or use the full path to Chrome when running it.



          Example:



          "C:Program Files (x86)GoogleChromeApplicationchrome.exe"




          Is it possible, with cmd, to open a new tab with a specific URL in a running Google Chrome?



          Yes.



          Example:



          rem start chrome
          "C:Program Files (x86)GoogleChromeApplicationchrome.exe"
          rem open google in a tab in the already running chrome
          "C:Program Files (x86)GoogleChromeApplicationchrome.exe" google.com





          share|improve this answer
























          • Ok, so now my idea works at 75%, I was able to add a new tab to an existing Chrome window, but I had to create a new window first. What if I don't want to open it. Chrome is already open on the screen, I just want to add new tabs to the one on the screen.

            – Bog Ru
            Jun 26 '17 at 1:21













          • @BogRu I don't understand. That's exactly what happens when you run the second command.

            – DavidPostill
            Jun 26 '17 at 7:26



















          0
















          use win+R combination key and type the following command:
          chrome /new-tab www.google.com








          share|improve this answer
























          • In OP's question, they stated: "'chrome' is not recognized as an internal or external command, operable program or a batch file" when trying this- what do you suggest?

            – bertieb
            Mar 24 '18 at 22:25



















          0














          Other answers gave good details, just accumulating from all & my trials:



          start command



          Below opened default browser (IE for me in Windows 10):



          start "" "http://www.google.com"


          tasklist command



          "tasklist /nh|findstr .." This din't work, possibly because now Chrome runs several instances of chrome, some background and some foreground, so it only listed all chrome instances as in task manager.



          %ProgramFiles(x86)..chrome.exe



          For me, first one opened a new tab in already running Chrome, else opens a new window:



          "%ProgramFiles(x86)%GoogleChromeApplicationchrome.exe" "http://www.google.com"


          If above din't work, below may work:



          "%ProgramFiles%GoogleChromeApplicationchrome.exe" "http://www.google.com"


          %ProgramFiles(x86)% helps to skip to mention if it is C: or D: or other






          share|improve this answer































            0














            Here's the solution to that.



            If you havent opened chrome yet try writing this in CMD:




            start chrome instagram.com/albotravel




            That's my page as an example, now if you want to open another tab
            on that existing/running chrome that we just opened type this in CMD:




            start chrome /new-tab instagram.com/albografi




            That's it!






            share|improve this answer








            New contributor




            Albografi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.




















              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "3"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1222691%2fhow-to-open-a-new-tab-in-chrome-in-an-existing-running-chrome-with-cmd%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              5 Answers
              5






              active

              oldest

              votes








              5 Answers
              5






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              If chrome is your default browser, you can try this:



              start "" "http://www.google.com"


              It will open the URL in the existing window or start your default browser if you haven't openend one yet.



              You can also set the limitation to not open the link if the browser isn't running:



              tasklist /nh|findstr "chrome.exe"&&start "" "http://www.google.com"


              That will open the URL only if chrome.exe has been found within the running tasks.






              share|improve this answer
























              • Thank you, the first command was what I've been searching for. What David wasn't wrong, but it made me open another window. I wanted to be working with an already opened one and add tabs to it. Thank you for both of your time.

                – Bog Ru
                Jun 26 '17 at 22:09











              • 1st command worked but it opened IE as it is default. 2nd din't work as there were many chrome instances running so it listed all instead of opening in one of the running chromes.

                – Manohar Reddy Poreddy
                Jul 14 '18 at 15:07


















              2














              If chrome is your default browser, you can try this:



              start "" "http://www.google.com"


              It will open the URL in the existing window or start your default browser if you haven't openend one yet.



              You can also set the limitation to not open the link if the browser isn't running:



              tasklist /nh|findstr "chrome.exe"&&start "" "http://www.google.com"


              That will open the URL only if chrome.exe has been found within the running tasks.






              share|improve this answer
























              • Thank you, the first command was what I've been searching for. What David wasn't wrong, but it made me open another window. I wanted to be working with an already opened one and add tabs to it. Thank you for both of your time.

                – Bog Ru
                Jun 26 '17 at 22:09











              • 1st command worked but it opened IE as it is default. 2nd din't work as there were many chrome instances running so it listed all instead of opening in one of the running chromes.

                – Manohar Reddy Poreddy
                Jul 14 '18 at 15:07
















              2












              2








              2







              If chrome is your default browser, you can try this:



              start "" "http://www.google.com"


              It will open the URL in the existing window or start your default browser if you haven't openend one yet.



              You can also set the limitation to not open the link if the browser isn't running:



              tasklist /nh|findstr "chrome.exe"&&start "" "http://www.google.com"


              That will open the URL only if chrome.exe has been found within the running tasks.






              share|improve this answer













              If chrome is your default browser, you can try this:



              start "" "http://www.google.com"


              It will open the URL in the existing window or start your default browser if you haven't openend one yet.



              You can also set the limitation to not open the link if the browser isn't running:



              tasklist /nh|findstr "chrome.exe"&&start "" "http://www.google.com"


              That will open the URL only if chrome.exe has been found within the running tasks.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jun 26 '17 at 2:14









              RegejokRegejok

              1064




              1064













              • Thank you, the first command was what I've been searching for. What David wasn't wrong, but it made me open another window. I wanted to be working with an already opened one and add tabs to it. Thank you for both of your time.

                – Bog Ru
                Jun 26 '17 at 22:09











              • 1st command worked but it opened IE as it is default. 2nd din't work as there were many chrome instances running so it listed all instead of opening in one of the running chromes.

                – Manohar Reddy Poreddy
                Jul 14 '18 at 15:07





















              • Thank you, the first command was what I've been searching for. What David wasn't wrong, but it made me open another window. I wanted to be working with an already opened one and add tabs to it. Thank you for both of your time.

                – Bog Ru
                Jun 26 '17 at 22:09











              • 1st command worked but it opened IE as it is default. 2nd din't work as there were many chrome instances running so it listed all instead of opening in one of the running chromes.

                – Manohar Reddy Poreddy
                Jul 14 '18 at 15:07



















              Thank you, the first command was what I've been searching for. What David wasn't wrong, but it made me open another window. I wanted to be working with an already opened one and add tabs to it. Thank you for both of your time.

              – Bog Ru
              Jun 26 '17 at 22:09





              Thank you, the first command was what I've been searching for. What David wasn't wrong, but it made me open another window. I wanted to be working with an already opened one and add tabs to it. Thank you for both of your time.

              – Bog Ru
              Jun 26 '17 at 22:09













              1st command worked but it opened IE as it is default. 2nd din't work as there were many chrome instances running so it listed all instead of opening in one of the running chromes.

              – Manohar Reddy Poreddy
              Jul 14 '18 at 15:07







              1st command worked but it opened IE as it is default. 2nd din't work as there were many chrome instances running so it listed all instead of opening in one of the running chromes.

              – Manohar Reddy Poreddy
              Jul 14 '18 at 15:07















              2














              The command, chrome ... doesn't seem to work




              'chrome' is not recognized as an internal or external command, operable program or a batch file




              That is because chrome is not in your path. You can add the Chrome directory to your path (see What are PATH and other environment variables, and how can I set or use them?) or use the full path to Chrome when running it.



              Example:



              "C:Program Files (x86)GoogleChromeApplicationchrome.exe"




              Is it possible, with cmd, to open a new tab with a specific URL in a running Google Chrome?



              Yes.



              Example:



              rem start chrome
              "C:Program Files (x86)GoogleChromeApplicationchrome.exe"
              rem open google in a tab in the already running chrome
              "C:Program Files (x86)GoogleChromeApplicationchrome.exe" google.com





              share|improve this answer
























              • Ok, so now my idea works at 75%, I was able to add a new tab to an existing Chrome window, but I had to create a new window first. What if I don't want to open it. Chrome is already open on the screen, I just want to add new tabs to the one on the screen.

                – Bog Ru
                Jun 26 '17 at 1:21













              • @BogRu I don't understand. That's exactly what happens when you run the second command.

                – DavidPostill
                Jun 26 '17 at 7:26
















              2














              The command, chrome ... doesn't seem to work




              'chrome' is not recognized as an internal or external command, operable program or a batch file




              That is because chrome is not in your path. You can add the Chrome directory to your path (see What are PATH and other environment variables, and how can I set or use them?) or use the full path to Chrome when running it.



              Example:



              "C:Program Files (x86)GoogleChromeApplicationchrome.exe"




              Is it possible, with cmd, to open a new tab with a specific URL in a running Google Chrome?



              Yes.



              Example:



              rem start chrome
              "C:Program Files (x86)GoogleChromeApplicationchrome.exe"
              rem open google in a tab in the already running chrome
              "C:Program Files (x86)GoogleChromeApplicationchrome.exe" google.com





              share|improve this answer
























              • Ok, so now my idea works at 75%, I was able to add a new tab to an existing Chrome window, but I had to create a new window first. What if I don't want to open it. Chrome is already open on the screen, I just want to add new tabs to the one on the screen.

                – Bog Ru
                Jun 26 '17 at 1:21













              • @BogRu I don't understand. That's exactly what happens when you run the second command.

                – DavidPostill
                Jun 26 '17 at 7:26














              2












              2








              2







              The command, chrome ... doesn't seem to work




              'chrome' is not recognized as an internal or external command, operable program or a batch file




              That is because chrome is not in your path. You can add the Chrome directory to your path (see What are PATH and other environment variables, and how can I set or use them?) or use the full path to Chrome when running it.



              Example:



              "C:Program Files (x86)GoogleChromeApplicationchrome.exe"




              Is it possible, with cmd, to open a new tab with a specific URL in a running Google Chrome?



              Yes.



              Example:



              rem start chrome
              "C:Program Files (x86)GoogleChromeApplicationchrome.exe"
              rem open google in a tab in the already running chrome
              "C:Program Files (x86)GoogleChromeApplicationchrome.exe" google.com





              share|improve this answer













              The command, chrome ... doesn't seem to work




              'chrome' is not recognized as an internal or external command, operable program or a batch file




              That is because chrome is not in your path. You can add the Chrome directory to your path (see What are PATH and other environment variables, and how can I set or use them?) or use the full path to Chrome when running it.



              Example:



              "C:Program Files (x86)GoogleChromeApplicationchrome.exe"




              Is it possible, with cmd, to open a new tab with a specific URL in a running Google Chrome?



              Yes.



              Example:



              rem start chrome
              "C:Program Files (x86)GoogleChromeApplicationchrome.exe"
              rem open google in a tab in the already running chrome
              "C:Program Files (x86)GoogleChromeApplicationchrome.exe" google.com






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jun 25 '17 at 23:55









              DavidPostillDavidPostill

              106k26228263




              106k26228263













              • Ok, so now my idea works at 75%, I was able to add a new tab to an existing Chrome window, but I had to create a new window first. What if I don't want to open it. Chrome is already open on the screen, I just want to add new tabs to the one on the screen.

                – Bog Ru
                Jun 26 '17 at 1:21













              • @BogRu I don't understand. That's exactly what happens when you run the second command.

                – DavidPostill
                Jun 26 '17 at 7:26



















              • Ok, so now my idea works at 75%, I was able to add a new tab to an existing Chrome window, but I had to create a new window first. What if I don't want to open it. Chrome is already open on the screen, I just want to add new tabs to the one on the screen.

                – Bog Ru
                Jun 26 '17 at 1:21













              • @BogRu I don't understand. That's exactly what happens when you run the second command.

                – DavidPostill
                Jun 26 '17 at 7:26

















              Ok, so now my idea works at 75%, I was able to add a new tab to an existing Chrome window, but I had to create a new window first. What if I don't want to open it. Chrome is already open on the screen, I just want to add new tabs to the one on the screen.

              – Bog Ru
              Jun 26 '17 at 1:21







              Ok, so now my idea works at 75%, I was able to add a new tab to an existing Chrome window, but I had to create a new window first. What if I don't want to open it. Chrome is already open on the screen, I just want to add new tabs to the one on the screen.

              – Bog Ru
              Jun 26 '17 at 1:21















              @BogRu I don't understand. That's exactly what happens when you run the second command.

              – DavidPostill
              Jun 26 '17 at 7:26





              @BogRu I don't understand. That's exactly what happens when you run the second command.

              – DavidPostill
              Jun 26 '17 at 7:26











              0
















              use win+R combination key and type the following command:
              chrome /new-tab www.google.com








              share|improve this answer
























              • In OP's question, they stated: "'chrome' is not recognized as an internal or external command, operable program or a batch file" when trying this- what do you suggest?

                – bertieb
                Mar 24 '18 at 22:25
















              0
















              use win+R combination key and type the following command:
              chrome /new-tab www.google.com








              share|improve this answer
























              • In OP's question, they stated: "'chrome' is not recognized as an internal or external command, operable program or a batch file" when trying this- what do you suggest?

                – bertieb
                Mar 24 '18 at 22:25














              0












              0








              0









              use win+R combination key and type the following command:
              chrome /new-tab www.google.com








              share|improve this answer















              use win+R combination key and type the following command:
              chrome /new-tab www.google.com









              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Mar 24 '18 at 21:27









              java graduatesjava graduates

              1




              1













              • In OP's question, they stated: "'chrome' is not recognized as an internal or external command, operable program or a batch file" when trying this- what do you suggest?

                – bertieb
                Mar 24 '18 at 22:25



















              • In OP's question, they stated: "'chrome' is not recognized as an internal or external command, operable program or a batch file" when trying this- what do you suggest?

                – bertieb
                Mar 24 '18 at 22:25

















              In OP's question, they stated: "'chrome' is not recognized as an internal or external command, operable program or a batch file" when trying this- what do you suggest?

              – bertieb
              Mar 24 '18 at 22:25





              In OP's question, they stated: "'chrome' is not recognized as an internal or external command, operable program or a batch file" when trying this- what do you suggest?

              – bertieb
              Mar 24 '18 at 22:25











              0














              Other answers gave good details, just accumulating from all & my trials:



              start command



              Below opened default browser (IE for me in Windows 10):



              start "" "http://www.google.com"


              tasklist command



              "tasklist /nh|findstr .." This din't work, possibly because now Chrome runs several instances of chrome, some background and some foreground, so it only listed all chrome instances as in task manager.



              %ProgramFiles(x86)..chrome.exe



              For me, first one opened a new tab in already running Chrome, else opens a new window:



              "%ProgramFiles(x86)%GoogleChromeApplicationchrome.exe" "http://www.google.com"


              If above din't work, below may work:



              "%ProgramFiles%GoogleChromeApplicationchrome.exe" "http://www.google.com"


              %ProgramFiles(x86)% helps to skip to mention if it is C: or D: or other






              share|improve this answer




























                0














                Other answers gave good details, just accumulating from all & my trials:



                start command



                Below opened default browser (IE for me in Windows 10):



                start "" "http://www.google.com"


                tasklist command



                "tasklist /nh|findstr .." This din't work, possibly because now Chrome runs several instances of chrome, some background and some foreground, so it only listed all chrome instances as in task manager.



                %ProgramFiles(x86)..chrome.exe



                For me, first one opened a new tab in already running Chrome, else opens a new window:



                "%ProgramFiles(x86)%GoogleChromeApplicationchrome.exe" "http://www.google.com"


                If above din't work, below may work:



                "%ProgramFiles%GoogleChromeApplicationchrome.exe" "http://www.google.com"


                %ProgramFiles(x86)% helps to skip to mention if it is C: or D: or other






                share|improve this answer


























                  0












                  0








                  0







                  Other answers gave good details, just accumulating from all & my trials:



                  start command



                  Below opened default browser (IE for me in Windows 10):



                  start "" "http://www.google.com"


                  tasklist command



                  "tasklist /nh|findstr .." This din't work, possibly because now Chrome runs several instances of chrome, some background and some foreground, so it only listed all chrome instances as in task manager.



                  %ProgramFiles(x86)..chrome.exe



                  For me, first one opened a new tab in already running Chrome, else opens a new window:



                  "%ProgramFiles(x86)%GoogleChromeApplicationchrome.exe" "http://www.google.com"


                  If above din't work, below may work:



                  "%ProgramFiles%GoogleChromeApplicationchrome.exe" "http://www.google.com"


                  %ProgramFiles(x86)% helps to skip to mention if it is C: or D: or other






                  share|improve this answer













                  Other answers gave good details, just accumulating from all & my trials:



                  start command



                  Below opened default browser (IE for me in Windows 10):



                  start "" "http://www.google.com"


                  tasklist command



                  "tasklist /nh|findstr .." This din't work, possibly because now Chrome runs several instances of chrome, some background and some foreground, so it only listed all chrome instances as in task manager.



                  %ProgramFiles(x86)..chrome.exe



                  For me, first one opened a new tab in already running Chrome, else opens a new window:



                  "%ProgramFiles(x86)%GoogleChromeApplicationchrome.exe" "http://www.google.com"


                  If above din't work, below may work:



                  "%ProgramFiles%GoogleChromeApplicationchrome.exe" "http://www.google.com"


                  %ProgramFiles(x86)% helps to skip to mention if it is C: or D: or other







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jul 14 '18 at 15:25









                  Manohar Reddy PoreddyManohar Reddy Poreddy

                  1615




                  1615























                      0














                      Here's the solution to that.



                      If you havent opened chrome yet try writing this in CMD:




                      start chrome instagram.com/albotravel




                      That's my page as an example, now if you want to open another tab
                      on that existing/running chrome that we just opened type this in CMD:




                      start chrome /new-tab instagram.com/albografi




                      That's it!






                      share|improve this answer








                      New contributor




                      Albografi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.

























                        0














                        Here's the solution to that.



                        If you havent opened chrome yet try writing this in CMD:




                        start chrome instagram.com/albotravel




                        That's my page as an example, now if you want to open another tab
                        on that existing/running chrome that we just opened type this in CMD:




                        start chrome /new-tab instagram.com/albografi




                        That's it!






                        share|improve this answer








                        New contributor




                        Albografi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.























                          0












                          0








                          0







                          Here's the solution to that.



                          If you havent opened chrome yet try writing this in CMD:




                          start chrome instagram.com/albotravel




                          That's my page as an example, now if you want to open another tab
                          on that existing/running chrome that we just opened type this in CMD:




                          start chrome /new-tab instagram.com/albografi




                          That's it!






                          share|improve this answer








                          New contributor




                          Albografi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.










                          Here's the solution to that.



                          If you havent opened chrome yet try writing this in CMD:




                          start chrome instagram.com/albotravel




                          That's my page as an example, now if you want to open another tab
                          on that existing/running chrome that we just opened type this in CMD:




                          start chrome /new-tab instagram.com/albografi




                          That's it!







                          share|improve this answer








                          New contributor




                          Albografi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          share|improve this answer



                          share|improve this answer






                          New contributor




                          Albografi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          answered 19 mins ago









                          AlbografiAlbografi

                          11




                          11




                          New contributor




                          Albografi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          New contributor





                          Albografi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






                          Albografi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Super User!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1222691%2fhow-to-open-a-new-tab-in-chrome-in-an-existing-running-chrome-with-cmd%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

                              Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

                              Couldn't open a raw socket. Error: Permission denied (13) (nmap)Is it possible to run networking commands...