从命令行打开 Chrome

我有以下批处理文件:

@echo off
REM Starts a chrome browser with multiple tabbed sites
C:\Users\UserName\AppData\Local\Google\Chrome\Application\chrome.exe "site1.com" "site2.com"

但是当我运行它的时候,它会导致提示被挂起并且在 Chrome 关闭之前不能使用。(或者,如果我没有使用提示符并从图标中运行它,它会打开一个不可用的空白提示符,并在 Chrome 关闭时消失。)

有什么办法可以防止这种情况的发生吗? 例如,一旦网页打开,提示就不再被束缚。

它能很好地打开网页。我还注意到,如果已经打开了一个 chrome 窗口,批处理运行良好(留下一个可用的提示符) ,将标签添加到现有的 chrome 会话。

248780 次浏览

查看一下 start命令,它应该可以完成您想要完成的任务。

另外,你也可以省略 chrome 的路径:

start chrome "site1.com" "site2.com"

使用 start 命令,如下所示。

start "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" http://www.google.com

在打开一个新的 chrome 实例之前,最好先关闭 chrome 实例。你可以这样做:

taskkill /IM chrome.exe
start "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" http://www.google.com

这对你有用。

打开命令提示符并键入

cd\ (enter)

然后打字

start chrome "www.google.com"(any website you require)

C:\>start chrome "http://site1.com"适用于 Windows Vista。

您可以创建批处理文件并在其中插入以下代码行:

cmd /k start chrome "http://yourWebSite.com

之后,您只需双击这个批处理文件。

让我们看看 start命令。

打开命令提示符

要打开一个新的 Chrome 窗口(空白) ,键入以下内容:

start chrome --new-window

或者

start chrome

要在 Chrome 中打开一个 URL,请键入以下内容:

start chrome --new-window "http://www.iot.qa/2018/02/narrowband-iot.html"

要在 Chrome 中以匿名模式打开网址,请键入以下内容:

start chrome --new-window --incognito "http://www.iot.qa/2018/02/narrowband-iot.html"

或者

start chrome --incognito "http://www.iot.qa/2018/02/narrowband-iot.html"

如果你想打开匿名窗口,请输入以下命令:

开始改用铬合金[隐姓埋名]

Ubuntu用户解答此问题,以供参考。

运行命令 google-chrome "http://localhost/"

在参数中替换所需的 URL。

你可以得到更多的选择,如隐身模式等。 运行 google-chrome --help查看选项。

启动铬合金

只需在 Windows 终端中键入 开始铬

Windows:type on Command Prompt and hit enter.
start chrome (chrome)
start firefox (firefox)
Ubuntu:type on terminal and hit enter.
google-chrome (chrome)
firefox (firefox)


if you want to open with path you have to added relative path with command(google-chrome www.facebook.com)