Skip to content

Instantly share code, notes, and snippets.

@dkopec91
dkopec91 / chromeme.ps1
Last active February 9, 2023 11:32
PowerShell script for starting up multiple clean Chrome instances
#Starts multiple Chrome browser instances with individual, instance-specific, data directories
$ChromePath = "C:\Program Files (x86)\Google\Chrome\Application"
$TempPath = "C:\ChromeTMP"
$Delay = 800
$NumberOfInstances = 5
$StartUrl = "duckduckgo.com"
cd $ChromePath
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
~LButton & WheelUp::SoundSet, +10
~LButton & WheelDown::SoundSet, -10