zoukankan      html  css  js  c++  java
  • 解决 VMware 虚拟机中被提示 “请不要在虚拟机中运行此程序“

    解决 VMware 虚拟机 中被提示 “请不要在虚拟机中运行此程序”或者“Themida Sorry, this application cannot run under a Virtual Machine”方法

    自己发现问题,解决问题后,觉得应该分享给大家。

    用记事本打开 VMX 文件 类似 Windows XP Professional.vmx

    在文本末尾加入一行

    monitor_control.restrict_backdoor = TRUE

    保存文件

    现在启动虚拟机 就不会被其他不能运行的软件检测到了

    如果还被检测可以再加入一行

    disable_acceleration = TRUE

    “这样处理以后 可能有个后遗症 就是 VMTools 无法加载了”————
    我的没有遇到这种情况

    以上来自网络,未亲测

    =======================重 -------- 点===========================

    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版本虚拟机好用.

  • 相关阅读:
    Python——PYQT:控件基本使用
    Python——GUI编程 利息计算器 作业9(python programming)
    Python——GUI编程(python programming)
    weblogic 8.1教程之部署(三)
    iOS CocoaPods安装和使用图解
    黑马day11 事务的四大特性
    实现按条件查询
    hdu 1078 FatMouse and Cheese【dp】
    Android-风格和主题
    Oracle PGA
  • 原文地址:https://www.cnblogs.com/zjoch/p/2221323.html
Copyright © 2011-2022 走看看