Win7提示:这个程序可能安装不正确

程序开发者角度:

在Win7下面就会被提示“这个程序可能安装不正确”,用管理员权限运行也不行。于是Google之,发现一段解释(来自于*的一位ID是user876725的网友):

I ran into the same error message when running a new Qt based app I built. Same symptoms - would get this 'helpful' message after the .exe closed, no matter what the program did.

Now I have various qt app projects, all built the exactly the same way. And none of the others do this.

I finally figured out that this error was caused solely by the fact that I had named this particular project 'installer'. I had ended up with a binary 'installer.exe' and it would have no doubt had the project name built into it elsewhere (without delving into the qmake generated project file, not exactly sure what).

The point of interest is that you can run into this problem simply by having a project called 'installer' and nothing else.

仅仅因为程序里面有“installer”字段。确实VC工程名字叫PackageInstaller。光改最后编译成的exe的文件名是不行的,要改工程中的资源文件中的version字段的内容,里面关于程序的描述,把Installer相关的字段都改掉,运行果然就OK了。

另外exe和资源文件等可静态获取的字段字符包含“installer“、”setup”等都会被windows系统视为未知三方安装包进行校验,弹窗提示该程序可能安装不正确或者兼容性未知

使用者角度:

Win7系统打开程序提示“这个程序可能安装不正确”的解决方法。

Win7提示:这个程序可能安装不正确

1、点击开始菜单,在“计算机上”单击右键,选择“管理”;

Win7提示:这个程序可能安装不正确

2、在管理界面展开“服务和应用程序”;

Win7提示:这个程序可能安装不正确
3、在服务窗口右侧找到“Program Compatibility Assistant Service”并且双击打开;

Win7提示:这个程序可能安装不正确
4、在该服务属性界面将启动类型修改为“禁用”,然后点击“停用”,最后点击应用并确定即可。

Win7提示:这个程序可能安装不正确