# Suppress verbose output
$VerbosePreference = 'SilentlyContinue'
function Write-Log {
param (
[string]$Message
)
Write-Host "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') - $Message"
}
function Invoke-WithRetry {
param (
[ScriptBlock]$ScriptBlock,
[int]$MaxAttempts = 6,
[int]$DelaySeconds = 10
)
$attempt = 1
$success = $false
while (-not $success -and $attempt -le $MaxAttempts) {
try {
$result = & $ScriptBlock
$success = $true
return $result
}
catch {
Write-Log "Attempt $attempt failed: $_"
if ($attempt -lt $MaxAttempts) {
Write-Log "Retrying in $DelaySeconds seconds..."
Start-Sleep -Seconds $DelaySeconds
}
$attempt++
}
}
if (-not $success) {
Write-Log "All $MaxAttempts attempts failed."
return $null
}
}
function Get-LatestSpotifyVersion {
Write-Log "Getting data from rg-adguard..."
$session = New-Object Microsoft.PowerShell.Commands.WebRequestSession
$session.UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36"
$url = "https://ru.store.rg-adguard.net/api/GetFiles"
$body = "type=url&url=https://apps.microsoft.com/detail/9ncbcszsjrsb&gl=US&ring=RP&lang=en"
$headers = @{
"authority" = "ru.store.rg-adguard.net"
"method" = "POST"
"path" = "/api/GetFiles"
"scheme" = "https"
"accept" = "*/*"
"accept-language" = "ru,ru-RU;q=0.9,en;q=0.8"
"dnt" = "1"
"origin" = "https://ru.store.rg-adguard.net"
"priority" = "u=1, i"
"referer" = "https://ru.store.rg-adguard.net/"
"sec-ch-ua" = '"Google Chrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"'
"sec-ch-ua-mobile" = "?0"
"sec-ch-ua-platform" = '"Windows"'
"sec-fetch-dest" = "empty"
"sec-fetch-mode" = "cors"
"sec-fetch-site" = "same-origin"
}
$ProgressPreference = 'SilentlyContinue'
$lastResponse = $null
$response = Invoke-WithRetry -ScriptBlock {
$resp = Invoke-WebRequest -Uri $url -Method "POST" -Body $body -WebSession $session -Headers $headers -UseBasicParsing
$html = $resp.Content
$script:lastResponse = $html # Store the last response
$trContents = [regex]::Matches($html, '(?s)
(.*?)') | ForEach-Object { $_.Groups[1].Value }
$results = @()
foreach ($trContent in $trContents) {
if ($trContent -match ']*>([^<]+)') {
$url = $matches[1]
$fileName = $matches[2]
}
if ($trContent -match '>(\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} GMT)<') {
$dateTime = [DateTime]::ParseExact($matches[1], "yyyy-MM-dd HH:mm:ss 'GMT'", $null)
}
if ($trContent -match '>(\d+(?:\.\d+)?)\s*MB<') {
$size = $matches[1] + " MB"
}
$results += [PSCustomObject]@{
FileName = $fileName
DateTime = $dateTime
Size = $size
Url = $url
}
}
$filteredResults = $results | Where-Object { $_.FileName -match 'SpotifyAB\.SpotifyMusic_.+x64.+\.appx' }
$latestFile = $filteredResults | Sort-Object -Property DateTime -Descending | Select-Object -First 1
if (-not $latestFile) {
throw "No matching Spotify file found"
}
return $latestFile
}
if ($response) {
Write-Log "Found: $($response.FileName)"
return $response
}
else {
Write-Log "Failed to find matching Spotify file after multiple attempts."
Write-Log "Response:"
Write-Log $script:lastResponse
return $null
}
}
function Download-SpotifyAppx {
param ($downloadUrl, $filePath)
if (-not $downloadUrl) {
Write-Log "Error: Download URL is empty or null"
return $false
}
Write-Log "Downloading appx file..."
$ProgressPreference = 'SilentlyContinue'
$success = Invoke-WithRetry -ScriptBlock {
Invoke-WebRequest -Uri $downloadUrl -OutFile $filePath
$true
}
return $success
}
function Extract-SpotifyAppx {
param ($filePath, $extractPath)
Write-Log "Extracting files from archive..."
Add-Type -AssemblyName "System.IO.Compression.FileSystem"
try {
$zip = [System.IO.Compression.ZipFile]::OpenRead($filePath)
$zip.Entries | Where-Object { $_.FullName -notlike '*/*' } | ForEach-Object {
$destPath = Join-Path $extractPath $_.Name
[System.IO.Compression.ZipFileExtensions]::ExtractToFile($_, $destPath, $true)
}
return $true
}
catch {
Write-Log "Error extracting files: $_"
return $false
}
finally {
if ($zip -ne $null) {
$zip.Dispose()
}
}
}
function Get-SpotifyExeVersion {
param ($spotifyExePath)
Write-Log "Getting version from $([System.IO.Path]::GetFileName($spotifyExePath))..."
$exeContent = Get-Content -Path $spotifyExePath -Raw
$regex = '(?