Created
September 21, 2023 14:21
-
-
Save gifflet/3245968df22ee26dfef46c9cb5cc0da5 to your computer and use it in GitHub Desktop.
Get chrome installer specific version download link (from squirrelistic.com)
This file contains hidden or 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
$ChromeVersion = 101 | |
$requestId = ([String][Guid]::NewGuid()).ToUpper() | |
$sessionId = ([String][Guid]::NewGuid()).ToUpper() | |
$xml = @" | |
<?xml version="1.0" encoding="UTF-8"?> | |
<request protocol="3.0" updater="Omaha" updaterversion="1.3.36.111" shell_version="1.3.36.111" | |
ismachine="1" sessionid="{$sessionId}" | |
installsource="update3web-ondemand" requestid="{$requestId}" | |
dedup="cr" domainjoined="0"> | |
<hw physmemory="4" sse="1" sse2="1" sse3="1" ssse3="1" sse41="1" sse42="1" avx="1" /> | |
<os platform="win" version="10.0" sp="" arch="x64" /> | |
<app appid="{8A69D345-D564-463C-AFF1-A69D9E530F96}" version="5.0.375" nextversion="" | |
ap="x64-stable-statsdef_0" lang="" brand="GCEB" client="" installage="0"> | |
<updatecheck targetversionprefix="$ChromeVersion.0"/> | |
</app> | |
</request> | |
"@ | |
$webRequest = @{ | |
Method = 'Post' | |
Uri = 'https://tools.google.com/service/update2' | |
Headers = @{ | |
'Content-Type' = 'application/x-www-form-urlencoded' | |
'X-Goog-Update-Interactivity' = 'fg' | |
} | |
Body = $Xml | |
} | |
$result = Invoke-WebRequest @webRequest -UseBasicParsing | |
$contentXml = [xml]$result.Content | |
$status = $contentXml.response.app.updatecheck.status | |
if ($status -eq 'ok') { | |
$package = $contentXml.response.app.updatecheck.manifest.packages.package | |
$urls = $contentXml.response.app.updatecheck.urls.url | ForEach-Object { $_.codebase + $package.name } | |
Write-Output "--- Chrome Windows 64-bit found. Hash=$($package.hash) Hash_sha256=$($package.hash_sha256)). ---" | |
Write-Output $urls | |
} | |
else { | |
Write-Output "Chrome not found (status: $status)" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment