Skip to content

Instantly share code, notes, and snippets.

@uhidontkno
Last active April 29, 2023 21:00
Show Gist options
  • Save uhidontkno/b3591e14d1b4281de98ea7799460013d to your computer and use it in GitHub Desktop.
Save uhidontkno/b3591e14d1b4281de98ea7799460013d to your computer and use it in GitHub Desktop.
echo Downloading Chromium...
$client = New-Object System.Net.WebClient
$client.DownloadFile("https://download-chromium.appspot.com/dl/Win_x64?type=snapshots","./chrome.zip")
echo Extracting Chromium...
Expand-Archive -Path "./chrome.zip" -DestinationPath "./chrome-ext"
echo Deleting temporary files...
Remove-Item "chrome.zip"
echo Running Chromium...
start ./chrome-ext/chrome-win/chrome.exe
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment