mstsc scales bad on big screens (4k or 5k) #104
This commit is contained in:
parent
e0d752d8b1
commit
e490600d4e
@ -7,6 +7,11 @@ GOTO END
|
|||||||
|
|
||||||
:USAGE
|
:USAGE
|
||||||
echo "usage: %0 <Store URL>"
|
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
|
:END
|
||||||
|
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
https://apps.microsoft.com/store/detail/xbox-game-bar/9NZKPSTSNW4P
|
https://apps.microsoft.com/store/detail/xbox-game-bar/9NZKPSTSNW4P
|
||||||
|
https://apps.microsoft.com/store/detail/microsoftremotedesktop/9WZDNCRFJ3PS
|
||||||
|
|
||||||
|
@ -141,6 +141,7 @@ echo ### UNINSTALL tasks ###
|
|||||||
echo #######################
|
echo #######################
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
|
rem REMOVE all STOCK apps!
|
||||||
powershell -command .\uninstall-apps.ps1
|
powershell -command .\uninstall-apps.ps1
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
@ -181,6 +182,10 @@ echo.
|
|||||||
call install-shortcuts.cmd
|
call install-shortcuts.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
|
rem INSTALL the APPS WE want to have!
|
||||||
|
call install-apps.cmd
|
||||||
|
echo.
|
||||||
|
|
||||||
echo #####################
|
echo #####################
|
||||||
echo ### DISABLE tasks ###
|
echo ### DISABLE tasks ###
|
||||||
echo #####################
|
echo #####################
|
||||||
|
@ -2,21 +2,13 @@
|
|||||||
set APPSFOLDER=apps\storeapps
|
set APPSFOLDER=apps\storeapps
|
||||||
set TOOLS=C:\tools
|
set TOOLS=C:\tools
|
||||||
|
|
||||||
IF %1.==. GOTO USAGE
|
|
||||||
|
|
||||||
rem folder present ?
|
rem folder present ?
|
||||||
IF EXIST %TOOLS%\%APPSFOLDER% (
|
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 ]
|
echo processing ... [ %%F ]
|
||||||
dism /Online /Add-ProvisionedAppxPackage /PackagePath:"%%F" /SkipLicense
|
dism /Online /Add-ProvisionedAppxPackage /PackagePath:"%%F" /SkipLicense
|
||||||
)
|
)
|
||||||
) else (
|
) else (
|
||||||
echo WARNING: [ %TOOLS%\%APPSFOLDER% ] does not exist, cannot install ...
|
echo WARNING: [ %TOOLS%\%APPSFOLDER% ] does not exist, cannot install ...
|
||||||
)
|
)
|
||||||
GOTO END
|
|
||||||
|
|
||||||
:USAGE
|
|
||||||
echo "usage: %0 <Appname>"
|
|
||||||
|
|
||||||
:END
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user