Last active
April 29, 2023 21:00
-
-
Save uhidontkno/b3591e14d1b4281de98ea7799460013d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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