added apps folder
This commit is contained in:
parent
9d70e659c3
commit
a27dafd2d7
63
apps/Download-AppxFromStore.ps1
Normal file
63
apps/Download-AppxFromStore.ps1
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<#
|
||||||
|
Original script taken from: https://github.com/MattiasC85/Scripts/blob/master/OSD/Download-AppxFromStore.ps1
|
||||||
|
#>
|
||||||
|
|
||||||
|
Param (
|
||||||
|
[Parameter(Mandatory=$True)] [string] $StoreURL
|
||||||
|
)
|
||||||
|
|
||||||
|
if ($StoreURL.EndsWith("/")) {
|
||||||
|
$StoreURL=$StoreURL.Remove($StoreUrl.Length-1,1)
|
||||||
|
}
|
||||||
|
|
||||||
|
$wchttp = [System.Net.WebClient]::new()
|
||||||
|
$URI = "https://store.rg-adguard.net/api/GetFiles"
|
||||||
|
$myParameters = "type=url&url=$($StoreURL)"
|
||||||
|
$wchttp.Headers[[System.Net.HttpRequestHeader]::ContentType]="application/x-www-form-urlencoded"
|
||||||
|
$HtmlResult = $wchttp.UploadString($URI,$myParameters)
|
||||||
|
|
||||||
|
$start=$HtmlResult.IndexOf("<p>The links were successfully received from the Microsoft Store server.</p>")
|
||||||
|
write-host $start
|
||||||
|
|
||||||
|
if ($Start -eq -1) {
|
||||||
|
write-host "Could not get the links, please check the StoreURL."
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
$TableEnd=($HtmlResult.LastIndexOf("</table>")+8)
|
||||||
|
$SemiCleaned=$HtmlResult.Substring($start,$TableEnd-$start)
|
||||||
|
|
||||||
|
$newHtml=New-Object -ComObject "HTMLFile"
|
||||||
|
try {
|
||||||
|
# This works in PowerShell with Office installed
|
||||||
|
$newHtml.IHTMLDocument2_write($SemiCleaned)
|
||||||
|
} catch {
|
||||||
|
# This works when Office is not installed
|
||||||
|
$src = [System.Text.Encoding]::Unicode.GetBytes($SemiCleaned)
|
||||||
|
$newHtml.write($src)
|
||||||
|
}
|
||||||
|
|
||||||
|
$ToDownload=$newHtml.getElementsByTagName("a") | Select-Object textContent, href
|
||||||
|
|
||||||
|
$LastFrontSlash=$StoreURL.LastIndexOf("/")
|
||||||
|
$ProductID=($StoreURL -split "/").split()[-2]
|
||||||
|
|
||||||
|
if (!(test-path "$ProductID")) {
|
||||||
|
write-host "Creating directory $ProductID"
|
||||||
|
try {
|
||||||
|
New-Item -ItemType Directory "$ProductID" -ErrorAction Stop | Out-Null
|
||||||
|
} catch {
|
||||||
|
write-host "Failed to create directory.$([System.environment]::NewLine)$_"
|
||||||
|
write-host "Exiting..."
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Foreach ($Download in $ToDownload) {
|
||||||
|
Write-host "Downloading $($Download.textContent)..."
|
||||||
|
$wchttp.DownloadFile($Download.href, "$ProductID\$($Download.textContent)")
|
||||||
|
}
|
||||||
|
|
||||||
|
write-host "---------------------------------------"
|
||||||
|
write-host "Download is complete. Your files are in directory [ $ProductID ] ..."
|
||||||
|
|
@ -83,3 +83,4 @@ echo LISTFILE = basic, browser, optional or other
|
|||||||
echo.
|
echo.
|
||||||
|
|
||||||
:END
|
:END
|
||||||
|
|
||||||
|
@ -62,3 +62,4 @@ echo LISTFILE = basic, browser or optional
|
|||||||
echo.
|
echo.
|
||||||
|
|
||||||
:END
|
:END
|
||||||
|
|
||||||
|
@ -54,3 +54,4 @@ echo "usage: %0 <UPLOADFILE>"
|
|||||||
echo.
|
echo.
|
||||||
|
|
||||||
:END
|
:END
|
||||||
|
|
||||||
|
@ -75,3 +75,4 @@ echo LISTFILE = basic, browser, optional or other
|
|||||||
echo.
|
echo.
|
||||||
|
|
||||||
:END
|
:END
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user