在新窗口中从命令行打开窗口中的chrome

时间:2014-04-18 18:59:07

标签: windows google-chrome cmd

我在cmd提示符下尝试了这个命令:

start "c:\program files (x86)\google\chrome\application\chrome.exe" --new-window "http://localhost:8080:/debug?port=5858"

我得到" windows无法找到' - 新窗口'

如果我删除了启动命令,它可以正常工作。如果我保留启动命令但删除--new-window parm,则会在我的默认浏览器中打开URL(即)。

我已经尝试了上述几种变体,但无法使其发挥作用。

在新窗口中使用给定网址打开chrome的start命令的正确语法是什么?

3 个答案:

答案 0 :(得分:20)

答案在那里:Using the "start" command with parameters passed to the started program

start "" "c:\program files (x86)\google\chrome\application\chrome.exe" --new-window "http://localhost:8080:/debug?port=5858"

(在行的开头添加空标题参数)

答案 1 :(得分:3)

在Windows 10中,以下命令有效:

start chrome --new-window "https://www.facebook.com"

这在cmd中完美无缺。

答案 2 :(得分:0)

尝试将其放在批处理文件中,然后可以将大小和位置播放到:

start "" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --new-window "http://brianp.dk/" --window-size="2560,1000" --window-position="0,0" --user-data-dir="D:/Test/Profiles/1"
start "" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --new-window "http://borsen.dk/" --start-maximized --window-position="2560,000" --user-data-dir="D:/Test/Profiles/2"
start "" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --new-window "http://penge.dk/" --window-size="1280,1000" --window-position="0000,1000" --user-data-dir="D:/Test/Profiles/3"