如何制作批处理文件以在 Google Chrome 中打开特定配置文件

如何制作批处理文件以在 Google Chrome 中打开特定配置文件

我有.BAT批处理文件来打开一组程序、网页和资源管理器窗口。经过多次谷歌搜索,我仍然不知道如何执行配置文件目标

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 1"

批量运行。一种解决方法是批量运行该链接,但我认为这样计算机可以少一步实现相同目标,这样我会更放心。

我觉得我已经接近一个简单的修复,但恐怕我没有批处理命令行知识资源或术语进行充分的搜索。

答案1

如何在批处理文件中使用指定的配置文件运行 Chrome?

使用start

start "Chrome" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 1"

句法

START "title" [/D path] [options] "command" [parameters]

来源启动程序、命令或批处理脚本(在新窗口中打开。)


进一步阅读

答案2

启动“Chrome” “C:\Program Files (x86)\Google\Chrome\Application\chrome.exe” --profile-directory="配置文件 2"

开始“网页名称”http://someurl.com/

启动“Chrome” “C:\Program Files (x86)\Google\Chrome\Application\chrome.exe” --profile-directory="配置文件 3"

开始“网页名称”http://someurl.com/

相关内容