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
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.
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.
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
add a comment |
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.
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.
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
add a comment |
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.
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.
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
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.
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.
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
windows windows-10 command-line google-chrome cmd.exe
edited Jun 25 '17 at 23:56
DavidPostill♦
106k26228263
106k26228263
asked Jun 25 '17 at 23:34
Bog RuBog Ru
3313
3313
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
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.
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
add a comment |
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
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
add a comment |
use win+R combination key and type the following command:
chrome /new-tab www.google.com
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
add a comment |
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
add a comment |
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!
New contributor
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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
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
add a comment |
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
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
add a comment |
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
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
answered Jun 25 '17 at 23:55
DavidPostill♦DavidPostill
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
add a comment |
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
add a comment |
use win+R combination key and type the following command:
chrome /new-tab www.google.com
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
add a comment |
use win+R combination key and type the following command:
chrome /new-tab www.google.com
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
add a comment |
use win+R combination key and type the following command:
chrome /new-tab www.google.com
use win+R combination key and type the following command:
chrome /new-tab www.google.com
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Jul 14 '18 at 15:25
Manohar Reddy PoreddyManohar Reddy Poreddy
1615
1615
add a comment |
add a comment |
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!
New contributor
add a comment |
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!
New contributor
add a comment |
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!
New contributor
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!
New contributor
New contributor
answered 19 mins ago
AlbografiAlbografi
11
11
New contributor
New contributor
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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