从命令行打开Chrome


68

我有以下批处理文件:

@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时消失。)

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

它可以打开网页。我还注意到,如果已经打开了一个chrome窗口,该批处理运行良好(留下了可用的提示),将选项卡添加到现有的chrome会话中。


这将起作用:google-chrome google.com
Bishwas Mishra,

Answers:


149

看一下start命令。它应该完成您要实现的目标。

另外,您也许可以省去chrome的路径。以下在Windows 7上有效:

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


您如何提供类似以下的参数:google-chrome --enable-webgl --ignore-gpu-blacklist
Dariush Jafari

在网址之前包括任何其他参数。开始chrome --enable-webgl --ignore-gpu-blacklist“ site1.com”“ site2.com”
GavinH

如何使用用户个人资料打开?我有多个Chrome用户个人资料。@GavinH
Akhil Jalagam

8

使用如下的启动命令。

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

在打开新实例之前,最好先关闭Chrome实例。您可以按照以下步骤进行操作:

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

那对你有用。


2
@Vidz使用start "" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" http://www.google.com
Georg

@Vidz谢谢。我也有同样的问题。但是我的dafault浏览器是IE(互联网浏览器)。
bfhaha

您将如何指定端口号?
尼尔斯·森斯

1
@NilsSens-您可以指定端口号,例如 start chrome "http:localhost:88\bar" 哪里88是端口号。域和端口之间需要冒号。
比尔·罗林森

8

C:\>start chrome "http://site1.com" 在Windows Vista上工作。


一年前给出的答案会增加什么?
Matthieu

7

让我们看一下start命令。

打开Windows命令提示符

要打开新的Chrome窗口(空白),请输入以下内容:

start chrome --new-window 

要么

start chrome

要在Chrome中打开URL,请输入以下内容:

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

要以隐身模式在Chrome中打开URL,请输入以下内容:

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"


3

打开命令提示符并键入

cd\ (enter)

然后输入

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


0

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

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

在参数中替换所需的URL。

您可以获得更多选项,例如隐身模式等。运行google-chrome --help以查看选项。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.