Jump to content
Ketarin forum

keketoco00

Members
  • Posts

    1
  • Joined

  • Last visited

keketoco00's Achievements

Newbie

Newbie (1/14)

  • Conversation Starter Rare

Recent Badges

  1. Hello everybody! I got this code from Chris Titus Tech, and I would like to know if it is possible to add it to Ketarina and save it to the saved path in Ketarina. I'm trying to download WhatsApp offline, and this was the only way I found it. $apiUrl = "https://store.rg-adguard.net/api/GetFiles" $productUrl = "https://apps.microsoft.com/detail/9NKSQGP7F2NH" # To Do #$productUrl = "https://www.microsoft.com/store/productId/9MSPC6MP8FM4" # Whiteboard #$productUrl = "https://www.microsoft.com/store/productId/9WZDNCRFJBB1" # Wireless Display Adapter $downloadFolder = Join-Path $env:TEMP "StoreDownloads" if(!(Test-Path $downloadFolder -PathType Container)) { New-Item $downloadFolder -ItemType Directory -Force } $body = @{ type = 'url' url = $productUrl ring = 'RP' lang = 'en-US' } $raw = Invoke-RestMethod -Method Post -Uri $apiUrl -ContentType 'application/x-www-form-urlencoded' -Body $body $raw | Select-String '<tr style.*<a href=\"(?<url>.*)"\s.*>(?<text>.*)<\/a>' -AllMatches| % { $_.Matches } | % { $url = $_.Groups[1].Value $text = $_.Groups[2].Value Write-Host $text if($text -match "_(x86|x64|neutral).*msixbundle(|bundle)$") { $downloadFile = Join-Path $downloadFolder $text if(!(Test-Path $downloadFile)) { Invoke-WebRequest -Uri $url -OutFile $downloadFile } } }
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.