• vmware-vmx.exe无法结束进程, 关闭Hyper-v虚拟服务


    因为启动vmware时虚拟机启动异常,vmware-vmx.exe无法结束进程。

    查资料发现,hyper-v和vmware冲突了,所以就关闭hyper;

    以管理员身份打开cmd(管理员)

    运行命令:bcdedit /set hypervisorlaunchtype off

    重启电脑

    然后管理员打开cmd,查看hyper开启情况!

    bcdedit /enum

    Windows 启动管理器
    --------------------
    标识符                  {bootmgr}
    device                  partition=C:
    description             Windows Boot Manager
    locale                  zh-CN
    inherit                 {globalsettings}
    flightsigning           No
    default                 {current}
    resumeobject            {9e929b21-64d6-11ea-a9f2-869f9597a8ab}
    displayorder            {current}
    toolsdisplayorder       {memdiag}
    timeout                 30

    Windows 启动加载器
    -------------------
    标识符                  {current}
    device                  partition=C:
    path                    \Windows\system32\winload.exe
    description             Windows 10 Enterprise
    locale                  zh-CN
    inherit                 {bootloadersettings}
    recoverysequence        {dd6a4dcd-64d6-11ea-8dad-87405c68fab8}
    displaymessageoverride  Recovery
    recoveryenabled         Yes
    flightsigning           No
    allowedinmemorysettings 0x15000075
    osdevice                partition=C:
    systemroot              \Windows
    resumeobject            {9e929b21-64d6-11ea-a9f2-869f9597a8ab}
    nx                      OptIn
    bootmenupolicy          Standard
    hypervisorlaunchtype    Off

    C:\Users\Administrator>
    出现hypervisorlaunchtype    Off,就表示关掉了Hyper-v 

    如果要重新开启Hyper-v,执行 bcdedit /set hypervisorlaunchtype auto 命令并重启即可。
     

  • 相关阅读:
    贪心算法—Problem Q
    京东API接口解析,实现获得JD商品评论
    ISP-Gamma
    深入理解计算机网络-4信号编码与调制4
    ABAP语法基础
    Linux 网络协议栈收消息过程-Ring Buffer
    ansible——利用主机模式选择主机
    第11章 Linux的网络管理
    C语言详解系列——操作符详解
    Cesium对三维模型进行查询并弹框展示信息
  • 原文地址:https://blog.csdn.net/martin_ywz/article/details/125905412