轻松解决“请不要在虚拟机中运行此程序”的问题

VMWare虚拟机软件是一个“虚拟PC”软件,它使你可以在一台机器上同时运行两个或更多Windows、DOS、LINUX系统。如果遇到被提示“请不要在虚拟机中运行此程序”的情况,要怎么办呢?小编查寻了网上的方法,终于找到了一个比较有效的解决办法,大家可以尝试操作解决问题。

1、原因:是因为此程序会自动执行虚拟机检测,从而禁止在虚拟机运行。

2、解决办法:打开 VMware 虚拟机的配置文件,这是一个后缀为 vmx 的文本文件。在里面加入以下内容

isolation.tools.getPtrLocation.disable = “TRUE”

isolation.tools.setPtrLocation.disable = “TRUE”

isolation.tools.setVersion.disable = “TRUE”

isolation.tools.getVersion.disable = “TRUE”

monitor_control.disable_directexec = “TRUE”

monitor_control.disable_chksimd = “TRUE”

monitor_control.disable_ntreloc = “TRUE”

monitor_control.disable_selfmod = “TRUE”

monitor_control.disable_reloc = “TRUE”

monitor_control.disable_btinout = “TRUE”

monitor_control.disable_btmemspace = “TRUE”

monitor_control.disable_btpriv = “TRUE”

monitor_control.disable_btseg = “TRUE”

这段代码在7.0-7.1版本虚拟机好用。

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...