open multiple canary chrome browser windows via batch file

  • 9 months ago
Comment

ChatGPT
1 / 1

To open multiple instances of the Canary version of Google Chrome browser using a batch file, you can use the start command with the appropriate arguments. Here's how you can do it:

  1. Open Notepad or any text editor.
  2. Paste the following lines of code:
batch
@echo off
start "" "C:\Program Files\Google\Chrome SxS\Application\chrome.exe"
start "" "C:\Program Files\Google\Chrome SxS\Application\chrome.exe"
start "" "C:\Program Files\Google\Chrome SxS\Application\chrome.exe"

Replace the paths in the start commands with the actual path to the Canary version of Chrome on your system.

  1. Save the file with a .bat extension (e.g., open_canary_chrome.bat).

  2. Double-click the batch file to run it. This will open three separate instances of the Canary Chrome browser.

Each start command will open a new instance of the Canary Chrome browser. You can adjust the number of instances by adding or removing start commands as needed.

Please note that the paths to the Canary Chrome executable and other environment variables may vary depending on your system configuration. Make sure to use the correct paths in the batch file.