From a66fb933ef12098a510ebab139194b85b1a3c0ce Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Sun, 1 Jan 2023 16:43:59 +0100 Subject: [PATCH] Create script for Appstore downloads #41 --- apps/Download-AppxFromStore.cmd | 12 ++++++++ apps/Download-AppxFromStore.ps1 | 26 ++++++++--------- apps/apps.txt | 2 ++ apps/download-apps-from-ftp.cmd | 46 ++++++++++++++++++++++++++++++ apps/download-apps-from-source.cmd | 24 ++++++++++++++++ apps/upload-apps-to-ftp.cmd | 46 ++++++++++++++++++++++++++++++ scripts/unpack-zipfiles.cmd | 9 ++++++ software/basic.csv | 2 ++ 8 files changed, 154 insertions(+), 13 deletions(-) create mode 100644 apps/Download-AppxFromStore.cmd create mode 100644 apps/apps.txt create mode 100644 apps/download-apps-from-ftp.cmd create mode 100644 apps/download-apps-from-source.cmd create mode 100644 apps/upload-apps-to-ftp.cmd diff --git a/apps/Download-AppxFromStore.cmd b/apps/Download-AppxFromStore.cmd new file mode 100644 index 0000000..7410a21 --- /dev/null +++ b/apps/Download-AppxFromStore.cmd @@ -0,0 +1,12 @@ +@echo off + +IF %1.==. GOTO USAGE + +powershell -command .\Download-AppxFromStore.ps1 %1 +GOTO END + +:USAGE +echo "usage: %0 " + +:END + diff --git a/apps/Download-AppxFromStore.ps1 b/apps/Download-AppxFromStore.ps1 index 321c19b..be68b45 100644 --- a/apps/Download-AppxFromStore.ps1 +++ b/apps/Download-AppxFromStore.ps1 @@ -3,7 +3,8 @@ #> Param ( - [Parameter(Mandatory=$True)] [string] $StoreURL + [Parameter(Mandatory=$True)] [string] $StoreURL, + [Parameter(Mandatory=$False)] [string] $SavePath ) if ($StoreURL.EndsWith("/")) { @@ -17,9 +18,7 @@ $wchttp.Headers[[System.Net.HttpRequestHeader]::ContentType]="application/x-www- $HtmlResult = $wchttp.UploadString($URI,$myParameters) $start=$HtmlResult.IndexOf("

The links were successfully received from the Microsoft Store server.

") -write-host $start - -if ($Start -eq -1) { +if ($start -eq -1) { write-host "Could not get the links, please check the StoreURL." exit } @@ -37,15 +36,14 @@ try { $newHtml.write($src) } -$ToDownload=$newHtml.getElementsByTagName("a") | Select-Object textContent, href +if ( !$SavePath ) { + $SavePath=($StoreURL -split "/").split()[-2] +} -$LastFrontSlash=$StoreURL.LastIndexOf("/") -$ProductID=($StoreURL -split "/").split()[-2] - -if (!(test-path "$ProductID")) { - write-host "Creating directory $ProductID" +if (!(test-path "$SavePath")) { + write-host "Creating directory $SavePath" try { - New-Item -ItemType Directory "$ProductID" -ErrorAction Stop | Out-Null + New-Item -ItemType Directory "$SavePath" -ErrorAction Stop | Out-Null } catch { write-host "Failed to create directory.$([System.environment]::NewLine)$_" write-host "Exiting..." @@ -53,11 +51,13 @@ if (!(test-path "$ProductID")) { } } +$ToDownload=$newHtml.getElementsByTagName("a") | Select-Object textContent, href + Foreach ($Download in $ToDownload) { Write-host "Downloading $($Download.textContent)..." - $wchttp.DownloadFile($Download.href, "$ProductID\$($Download.textContent)") + $wchttp.DownloadFile($Download.href, "$SavePath\$($Download.textContent)") } write-host "---------------------------------------" -write-host "Download is complete. Your files are in directory [ $ProductID ] ..." +write-host "Download is complete. Your files are in directory [ $SavePath ] ..." diff --git a/apps/apps.txt b/apps/apps.txt new file mode 100644 index 0000000..5b787eb --- /dev/null +++ b/apps/apps.txt @@ -0,0 +1,2 @@ +https://apps.microsoft.com/store/detail/xbox-game-bar/9NZKPSTSNW4P + diff --git a/apps/download-apps-from-ftp.cmd b/apps/download-apps-from-ftp.cmd new file mode 100644 index 0000000..4cda7e9 --- /dev/null +++ b/apps/download-apps-from-ftp.cmd @@ -0,0 +1,46 @@ +@echo off +set FTPSETTINGS=..\company\ftpsettings.cmd +set APPSFOLDER=storeapps + +rem =================== +rem CONFIGFILE CHECK +rem =================== + +if NOT EXIST %FTPSETTINGS% ( + echo. + echo ERROR: %FTPSETTINGS% NOT FOUND + echo. + echo --- please create it as follows --- + echo set FTP_SERVER=example.com + echo set FTP_PATH=/path/to/directory + echo set FTP_USER=myuser + echo set FTP_PASS=mypass + exit /b +) + +echo. +echo loading settings ... +call %FTPSETTINGS% +echo ++++++++++++++++++ +echo FTP_SERVER=%FTP_SERVER% +echo FTP_PATH=%FTP_PATH% +echo FTP_USER=%FTP_USER% +echo FTP_PASS=xxxxxx +echo ++++++++++++++++++ +echo. + +rem ##################################### +rem MAIN loop ( UPLOAD apps to ftp ) ... +rem ##################################### + +mkdir %APPSFOLDER% 2>nul +IF EXIST %APPSFOLDER% ( + rem get all apps with wGET ... + cd %APPSFOLDER% + wget -nv -c -nd -N --user=%FTP_USER% --password=%FTP_PASS% ^ + ftp://%FTP_SERVER%/%FTP_PATH%/%APPSFOLDER%/*.* +) else ( + echo WARNING: [ %APPSFOLDER% ] does not exist, cannot download ... +) +cd .. + diff --git a/apps/download-apps-from-source.cmd b/apps/download-apps-from-source.cmd new file mode 100644 index 0000000..198495f --- /dev/null +++ b/apps/download-apps-from-source.cmd @@ -0,0 +1,24 @@ +@echo off + +set LISTFILE=apps.txt +set APPSFOLDER=storeapps + +IF NOT EXIST %LISTFILE% ( + echo ERROR: %LISTFILE% not found! + exit /b +) + +echo using list [ %LISTFILE% ] ... +mkdir %APPSFOLDER% 2>nul + +rem ################################### +rem MAIN loop ( download all apps ) ... +rem ################################### + +FOR /F "tokens=1" %%E in (%LISTFILE%) do ( + echo URL = [ %%E ] + powershell -command .\Download-AppxFromStore.ps1 %%E %APPSFOLDER% + echo. +) + + diff --git a/apps/upload-apps-to-ftp.cmd b/apps/upload-apps-to-ftp.cmd new file mode 100644 index 0000000..f07dfcb --- /dev/null +++ b/apps/upload-apps-to-ftp.cmd @@ -0,0 +1,46 @@ +@echo off +set FTPSETTINGS=..\company\ftpsettings.cmd +set APPSFOLDER=storeapps + +rem =================== +rem CONFIGFILE CHECK +rem =================== + +if NOT EXIST %FTPSETTINGS% ( + echo. + echo ERROR: %FTPSETTINGS% NOT FOUND + echo. + echo --- please create it as follows --- + echo set FTP_SERVER=example.com + echo set FTP_PATH=/path/to/directory + echo set FTP_USER=myuser + echo set FTP_PASS=mypass + exit /b +) + +echo. +echo loading settings ... +call %FTPSETTINGS% +echo ++++++++++++++++++ +echo FTP_SERVER=%FTP_SERVER% +echo FTP_PATH=%FTP_PATH% +echo FTP_USER=%FTP_USER% +echo FTP_PASS=xxxxxx +echo ++++++++++++++++++ +echo. + +rem ##################################### +rem MAIN loop ( UPLOAD apps to ftp ) ... +rem ##################################### + +rem folder present ? +IF EXIST %APPSFOLDER% ( + rem UPLOAD with curl ... + FOR %%F in (%APPSFOLDER%\*.*) DO ( + echo processing ... [ %%F ] + curl -u %FTP_USER%:%FTP_PASS% -T %%F ftp://%FTP_SERVER%/%FTP_PATH%/%APPSFOLDER%/ + ) +) else ( + echo WARNING: [ %APPSFOLDER% ] does not exist, cannot upload ... +) + diff --git a/scripts/unpack-zipfiles.cmd b/scripts/unpack-zipfiles.cmd index 44d27f6..800f026 100644 --- a/scripts/unpack-zipfiles.cmd +++ b/scripts/unpack-zipfiles.cmd @@ -28,6 +28,8 @@ for %%A in ( showkeyplus vim vivetool + wget + wgetdeps winscp wub @@ -137,6 +139,13 @@ move /Y %T%\vivetool\*.dll %TOOLS% rd /S /Q %T%\vivetool echo. +echo wGET +move /Y %T%\wget\wget.exe %TOOLS% +rd /S /Q %T%\wget +move /Y %T%\wgetdeps\*.dll %TOOLS% +rd /S /Q %T%\wgetdeps +echo. + echo WinSCP move /Y %T%\winscp\*.exe %TOOLS% rd /S /Q %T%\winscp diff --git a/software/basic.csv b/software/basic.csv index be97c03..ed25f02 100644 --- a/software/basic.csv +++ b/software/basic.csv @@ -2,6 +2,8 @@ https://www.7-zip.org/a/7z1900-x64.msi 7z-setup.msi https://go.microsoft.com/fwlink/?linkid=2120254 adk-setup.exe https://download.sysinternals.com/files/SysinternalsSuite.zip sysinternals.zip https://curl.se/windows/dl-7.79.1/curl-7.79.1-win64-mingw.zip curl.zip +https://netcologne.dl.sourceforge.net/project/gnuwin32/wget/1.11.4-1/wget-1.11.4-1-bin.zip wget.zip +https://netcologne.dl.sourceforge.net/project/gnuwin32/wget/1.11.4-1/wget-1.11.4-1-dep.zip wgetdeps.zip https://github.com/git-for-windows/git/releases/download/v2.30.1.windows.1/Git-2.30.1-64-bit.exe git-setup.exe http://www.ardiehl.de/imapcopy/IMAPCopy.zip imapcopy.zip https://go.microsoft.com/fwlink/?LinkId=691209 MediaCreationTool20H2.exe