Developer Snippet Diary

open multiple profiles of chrome using cmd at once

To open Multiple profiles follow below procedure

  1. Create a new text file
  2. change its extention to bat ie opener.bat
  3. change its content as 
    @echo off
    start chrome --profile-directory="Profile 41"
    start chrome --profile-directory="Profile 42"
  4. save file
  5. double click to open it
  6. It will open two chrome  instance with profile 41, 42
  7. To check profile number open below link in chrome
    chrome://version/
Posted by: R GONDAL
Email: rizikmw@gmail.com