From e490600d4e68adf5e11389525715cb14005df770 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Thu, 16 Feb 2023 12:27:12 +0100 Subject: [PATCH] mstsc scales bad on big screens (4k or 5k) #104 --- apps/Download-AppxFromStore.cmd | 5 +++++ apps/apps.txt | 1 + scripts/autoconfig-all.cmd | 5 +++++ tools/install-apps.cmd | 10 +--------- 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/apps/Download-AppxFromStore.cmd b/apps/Download-AppxFromStore.cmd index 7410a21..0d8620f 100644 --- a/apps/Download-AppxFromStore.cmd +++ b/apps/Download-AppxFromStore.cmd @@ -7,6 +7,11 @@ GOTO END :USAGE echo "usage: %0 " +echo " HINT: use the browser URL!" +echo " HINT: DO NOT use the storeapp URL!" +echo. +echo " Example: https://apps.microsoft.com/store/detail//" +echo. :END diff --git a/apps/apps.txt b/apps/apps.txt index 5b787eb..980f57b 100644 --- a/apps/apps.txt +++ b/apps/apps.txt @@ -1,2 +1,3 @@ https://apps.microsoft.com/store/detail/xbox-game-bar/9NZKPSTSNW4P +https://apps.microsoft.com/store/detail/microsoftremotedesktop/9WZDNCRFJ3PS diff --git a/scripts/autoconfig-all.cmd b/scripts/autoconfig-all.cmd index 705bced..7df13a2 100644 --- a/scripts/autoconfig-all.cmd +++ b/scripts/autoconfig-all.cmd @@ -141,6 +141,7 @@ echo ### UNINSTALL tasks ### echo ####################### echo. +rem REMOVE all STOCK apps! powershell -command .\uninstall-apps.ps1 echo. @@ -181,6 +182,10 @@ echo. call install-shortcuts.cmd echo. +rem INSTALL the APPS WE want to have! +call install-apps.cmd +echo. + echo ##################### echo ### DISABLE tasks ### echo ##################### diff --git a/tools/install-apps.cmd b/tools/install-apps.cmd index ebe50e9..4fa104c 100644 --- a/tools/install-apps.cmd +++ b/tools/install-apps.cmd @@ -2,21 +2,13 @@ set APPSFOLDER=apps\storeapps set TOOLS=C:\tools -IF %1.==. GOTO USAGE - rem folder present ? IF EXIST %TOOLS%\%APPSFOLDER% ( - FOR %%F in (%TOOLS%\%APPSFOLDER%\*%1*.appxbundle, %TOOLS%\%APPSFOLDER%\*%1*.appx, %TOOLS%\%APPSFOLDER%\*%1*.msixbundle) do ( + FOR %%F in (%TOOLS%\%APPSFOLDER%\*.appxbundle, %TOOLS%\%APPSFOLDER%\*.appx, %TOOLS%\%APPSFOLDER%\*.msixbundle) do ( echo processing ... [ %%F ] dism /Online /Add-ProvisionedAppxPackage /PackagePath:"%%F" /SkipLicense ) ) else ( echo WARNING: [ %TOOLS%\%APPSFOLDER% ] does not exist, cannot install ... ) -GOTO END - -:USAGE -echo "usage: %0 " - -:END