我相当普通的基于 MFC 的 Windows 应用程序在 Windows 7 上运行良好。但是当我在 Windows 8 中运行它时,没有出现 UI。起初我以为它没有正常启动,但最终意识到如果我打开任务管理器,它显示我的应用程序正在运行,但它列在“后台进程”部分下。
Windows 8 在进程上运行以确定它是“后台进程”的启发式方法是什么?或者我可以做些什么——也许在应用程序清单中——明确地将我的应用程序标记为前台进程?
我试过在Win7和XP兼容模式下运行,但无济于事。我尝试了几台Win8机器,都给出了相同的结果。
值得一提的是,这个应用程序是用 Visual Studio 2003 编译的,我没有选择使用更新的编译器。
我搜索了诸如“win8 后台进程”之类的东西,但我得到的只是想要创建后台进程的人。一些答案表明必须使用应用程序清单注册后台进程,但我仔细检查了我的清单,它绝对没有关于作为后台进程的任何内容。
这是我的清单,以防你能从中看到一些东西:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.0.0.0"
processorArchitecture="X86"
name="MyProductName"
type="win32"
/>
<description>My Product Description</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
<asmv3:trustInfo xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<asmv3:security>
<asmv3:requestedPrivileges>
<asmv3:requestedExecutionLevel level="asInvoker" uiAccess="false" />
</asmv3:requestedPrivileges>
</asmv3:security>
</asmv3:trustInfo>
</assembly>
如果我在此处找不到答案,我将与 Microsoft 一起发起支持事件以获得他们的帮助。如果达到这一点,我肯定会用我发现的内容更新这个问题。