首页 > 其他 > 详细

Surface Pro 4远程桌面分辨率问题

时间:2017-02-25 18:27:34      阅读:1352      评论:0      收藏:0      [点我收藏+]

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>

 

 

创建完这个文件后,再开启远程桌面,这时的分辨率就和原主机一样了。

Surface Pro 4远程桌面分辨率问题

原文:http://www.cnblogs.com/hengwei/p/6442252.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!