https://store.rg-adguard.net/에서 PowerShell로 Windows 스토어 앱 다운로드
6769 단어 windowspowershell
제품 URL을 찾는 방법
스크립트
위에서 얻은 제품 URL을 사용하고 로컬 설치를 위한 관련 파일 집합을 다운로드할 수 있는 이 스크립트를 만들었습니다.
$apiUrl = "https://store.rg-adguard.net/api/GetFiles"
$productUrl = "https://www.microsoft.com/store/productId/9nblggh5r558" # 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
if($text -match "_(x64|neutral).*appx(|bundle)$") {
Write-Host $text $url
$downloadFile = Join-Path $downloadFolder $text
Invoke-WebRequest -Uri $url -OutFile $downloadFile
}
}
Reference
이 문제에 관하여(https://store.rg-adguard.net/에서 PowerShell로 Windows 스토어 앱 다운로드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/kaiwalter/download-windows-store-apps-with-powershell-from-https-store-rg-adguard-net-155m텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)