转自:
http://jdav.is/2016/08/31/powerpoints-menu-is-too-big/
It seems that when Microsoft deployed their latest versions of Office, they forgot to adjust the DPI (dots per inch) settings for PowerPoint rendering the menus on second monitors extremely large. With the menu and its fonts so large, the design space on a secondary monitor is very limited, if not useless altogether.
Take a look at the two images comparing PowerPoint’s menu to that of Word’s (same monitor/resolution).
PowerPoint |
Word |
The great news is that it’s an easy fix.
To handle compatibility issues such as these, Microsoft’s applications use a manifest file. We simply need to update PowerPoint’s manifest file to disable the feature dpiAware.
- Open NotePad as an Administrator (right-click on NotePad and choose “Run as Administrator” from the context menu)
- In NotePad, open the file “C:Program Files (x86)Microsoft Office ootOffice16powerpnt.exe.manifest” (note: this is the path for Office 2016, but Office 2015 and older would be similar)
- Around line 27, you’ll see the following:
1<dpiAware>True/PM</dpiAware> - Change it to:
1<dpiAware>False</dpiAware> - Save the file and restart PowerPoint
Voila!
PowerPoint Fixed |
BONUS!
You can also apply the same fix to other applications. (But, you’ll need to tell Windows to look for the manifests.)
- Open up the registry editor (run regedit.exe)
- Navigate to Computer -> HKEY_LOCAL_MACHINE -> SOFTWARE -> Microsoft -> Windows -> CurrentVersion -> SideBySide
- In the right pane, right-click in the empty area and choose New -> DWORD (32-bit) Value
- Type PreferExternalManifest and press ENTER
- Right-click on PreferExternalManifest and choose Modify
- Type 1 and click OK
- Exit the registry editor
- Now, for whichever program you are using that has resolution issues:
- Find that application’s executable file (e.g. for Photoshop, “C:Program FilesAdobeAdobe Photoshop…Photoshop.exe”)
- In the same directory, create a new text file with the same name and append “.manifest” (e.g. Photoshop.exe.manifest)
- Open the file and add the following code:
123456789101112131415161718192021222324252627282930313233343536373839404142434445<?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><assemblyIdentitytype="win32"name="Microsoft.Windows.Common-Controls"version="6.0.0.0" processorArchitecture="*"publicKeyToken="6595b64144ccf1df"language="*"></assemblyIdentity></dependentAssembly></dependency><dependency><dependentAssembly><assemblyIdentitytype="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><requestedExecutionLevellevel="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> - Save the file and restart your application