mstsc scales bad on big screens (4k or 5k) #104

This commit is contained in:
Michael H.G. Schmidt 2023-02-16 12:27:12 +01:00
parent e0d752d8b1
commit e490600d4e
4 changed files with 12 additions and 9 deletions

View File

@ -7,6 +7,11 @@ GOTO END
:USAGE
echo "usage: %0 <Store URL>"
echo " HINT: use the browser URL!"
echo " HINT: DO NOT use the storeapp URL!"
echo.
echo " Example: https://apps.microsoft.com/store/detail/<APPNAME>/<LONG STRING>"
echo.
:END

View File

@ -1,2 +1,3 @@
https://apps.microsoft.com/store/detail/xbox-game-bar/9NZKPSTSNW4P
https://apps.microsoft.com/store/detail/microsoftremotedesktop/9WZDNCRFJ3PS

View File

@ -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 #####################

View File

@ -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 <Appname>"
:END