【发布时间】:2016-03-28 08:56:11
【问题描述】:
我正在尝试为 Google Chrome 创建一个快捷方式,该快捷方式将在多个选项卡中打开多个基于 IP 的链接。
我在 .bat 文件中有这行代码。
@echo off
start Chrome “111.95.192.176/Audit/WebPages/Login.aspx”
start Chrome “111.95.192.176/AirAudit/WebPages/Login.aspx”
start Chrome “111.95.192.176/Helpdesk/Login.aspx”
start Chrome “111.95.192.176/SPM_Audit/Login.aspx”
但在谷歌浏览器中打开批处理文件(.bat)后会显示一些错误
This site can’t be reached
xn--http-uqa’s server DNS address could not be found.
ERR_NAME_NOT_RESOLVED
我该如何解决这个错误?
注意:代码中的IP地址不是原来的。
【问题讨论】:
标签: google-chrome batch-file tabs shortcut