VMware Workstation反虚拟机检测设置方法(软件或游戏提示在虚拟机运行的解决方法)
众所周知 VMware Workstation Pro 虚拟机是一款功能强大的虚拟机软件,可以让你在物理机上运行多个虚拟操作系统的软件。但是有个问题就是,现在很多的软件和游戏都会检测是否虚拟机运行,如果检测出再虚拟机里面运行会禁止你使用该软件或者游戏。解决上述问题,参照方法如下:
方法一
直接下载vmware 虚拟机 windows 去虚拟化环境系统套件在wmware虚拟机内安装操作系统。
方法二
用记事本打开虚拟机配置文件(*.vmx),在文件内容最后增加下列内容:
monitor.vintual_mmu = "automatic"
monitor.virtual_exec = "automatic"
board-id.reflectHost ="TRUE"
hw.model.reflectHost = "TRUE"
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"
monitor_control.virtual_rdtsc = "false"
hypervisor.cpuid.v0 = "FALSE"
Ecx = 7ED8320B
Edx = 178BFBFF
cpuid.1.ecx = "0————–0—————-"
cpuid.1.edx = "———–0———0———-"
上面最后两行cpuid适用于AMD芯片,若为Intel 芯片,请更换为如下内容:
cpuid.1.ecx = "00011111101111101110001111111111"
cpuid.1.edx = "10111111111010111111101111111111"
方法三
第一步,用记事本打开虚拟机配置文件(*.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"
monitor_control.restrict_backdoor = "TRUE"
monitor_control.virtual_rdtsc = "false"
disable_acceleration = TRUE
第二步,虚拟机设置 →处理器 → 虚拟化引擎→首选模式:选最后一项最长的
第三步,显卡改名
先安装 VMware Tools 装好驱动,备份出显卡驱动。
将*.inf 中
DiskID = "VMware Tools"
CompanyName = "VMware, Inc."
SVGA = "VMware SVGA II"
修改为
DiskID ="NVIDIA Windows Driver Library Installation"
CompanyName = "NVIDIA"
SVGA = "GeForce GTX 660"
在虚拟机中用修改好的inf文件更新显卡驱动。
备注:上述.vmx文件内容中双引号为英文状态下双引号。