Surface Pro 4遠端桌面解析度問題

衡子發表於2017-02-25

Surface Pro 4是非常收歡迎的膝上型電腦。但我們這些技術人員在使用中有一點非常不方便:

Surface Pro 4的解析度非常高,如果用Surface Pro 4遠端桌面到遠端的一臺機器,因為兩邊解析度的問題,遠端的影象會非常的小。

為解決這個問題,需要做一下兩個工作:

1. 修改登錄檔:

用regedit編輯登錄檔,找到:

HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows > CurrentVersion > SideBySide

新增PreferExternalManifest,並設定值為1.

這就指定可以使用外部的Manifest。

2. 建立Manifest檔案,C:\Windows\System32\mstsc.exe.manifest:

 

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">

<dependency>
  <dependentAssembly>
    <assemblyIdentity
      type="win32"
      name="Microsoft.Windows.Common-Controls"
      version="6.0.0.0" processorArchitecture="*"
      publicKeyToken="6595b64144ccf1df"
      language="*">
    </assemblyIdentity>
  </dependentAssembly>
</dependency>

<dependency>
  <dependentAssembly>
    <assemblyIdentity
      type="win32"
      name="Microsoft.VC90.CRT"
      version="9.0.21022.8"
      processorArchitecture="amd64"
      publicKeyToken="1fc8b3b9a1e18e3b">
    </assemblyIdentity>
  </dependentAssembly>
</dependency>

<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
  <security>
    <requestedPrivileges>
      <requestedExecutionLevel
        level="asInvoker"
        uiAccess="false"/>
    </requestedPrivileges>
  </security>
</trustInfo>

<asmv3:application>
  <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
    <ms_windowsSettings:dpiAware xmlns:ms_windowsSettings="http://schemas.microsoft.com/SMI/2005/WindowsSettings">false</ms_windowsSettings:dpiAware>
  </asmv3:windowsSettings>
</asmv3:application>

</assembly>

 

 

建立完這個檔案後,再開啟遠端桌面,這時的解析度就和原主機一樣了。

相關文章