34 lines
910 B
Markdown
34 lines
910 B
Markdown
![]() |
Remotedesktop bei höher Auflösung
|
|||
|
|
|||
|
Dienstag, 18. Mai 2021
|
|||
|
|
|||
|
21:08
|
|||
|
|
|||
|
|
|||
|
|
|||
|
MSTSC zu \"alten\" Servern kann dazu führen das die Symbole extrem klein dargestellt werden.
|
|||
|
|
|||
|
Dann muss man folgenden tun auf dem Client :
|
|||
|
|
|||
|
|
|||
|
|
|||
|
In an elevated (admin) cmd shell, create a copy of mstsc.exe and mstsc.exe.mui:
|
|||
|
|
|||
|
cd %systemroot%\\system32
|
|||
|
|
|||
|
copy mstsc.exe mstsc2.exe
|
|||
|
|
|||
|
cd %systemroot%\\system32\\en-us\\
|
|||
|
|
|||
|
copy mstsc.exe.mui mstsc2.exe.mui
|
|||
|
|
|||
|
Please note, the en-us part corresponds to the installed language. This might be different for you, for example en-gb or de-de.
|
|||
|
|
|||
|
Now, set an AppCompatFlag for all users for mstsc2.exe:
|
|||
|
|
|||
|
reg add \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags\\Layers\" /t REG_SZ /v \"C:\\Windows\\System32\\mstsc2.exe\" /d \"\~ DPIUNAWARE\" /f
|
|||
|
|
|||
|
|
|||
|
|
|||
|
Aus \<<https://poweruser.blog/remote-desktop-client-on-hidpi-retina-displays-work-around-pixel-scaling-issues-1529f142ca93>\>
|