Advertisement
goezler

DPI Settings for MSTSC

Jan 21st, 2021
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.84 KB | None | 0 0
  1. #Open regedit and navigate to the registry key: "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide"
  2. #Right-click, select NEW -> DWORD (32 bit) Value
  3. #Type PreferExternalManifest and then press ENTER.
  4. #Right-click PreferExternalManifest, and then click Modify.
  5. #Enter Value Data 1 and select Decimal.
  6. #Click OK. Exit Registry Editor.
  7.  
  8.  
  9. #Next step is to make the manifest file, mstsc.exe.manifest.
  10. #Copy the contents below and put it in Notepad or similar tool and save it to a file as %SystemRoot%\System32\mstsc.exe.manifest.
  11.  
  12. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  13.  
  14. <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
  15.  
  16. <dependency>
  17.   <dependentAssembly>
  18.     <assemblyIdentity
  19.      type="win32"
  20.      name="Microsoft.Windows.Common-Controls"
  21.      version="6.0.0.0" processorArchitecture="*"
  22.      publicKeyToken="6595b64144ccf1df"
  23.      language="*">
  24.     </assemblyIdentity>
  25.   </dependentAssembly>
  26. </dependency>
  27.  
  28. <dependency>
  29.   <dependentAssembly>
  30.     <assemblyIdentity
  31.      type="win32"
  32.      name="Microsoft.VC90.CRT"
  33.      version="9.0.21022.8"
  34.      processorArchitecture="amd64"
  35.      publicKeyToken="1fc8b3b9a1e18e3b">
  36.     </assemblyIdentity>
  37.   </dependentAssembly>
  38. </dependency>
  39.  
  40. <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
  41.   <security>
  42.     <requestedPrivileges>
  43.       <requestedExecutionLevel
  44.        level="asInvoker"
  45.        uiAccess="false"/>
  46.     </requestedPrivileges>
  47.   </security>
  48. </trustInfo>
  49.  
  50. <asmv3:application>
  51.   <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
  52.     <ms_windowsSettings:dpiAware xmlns:ms_windowsSettings="http://schemas.microsoft.com/SMI/2005/WindowsSettings">false</ms_windowsSettings:dpiAware>
  53.   </asmv3:windowsSettings>
  54. </asmv3:application>
  55.  
  56. </assembly>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement