This command sets or displays the hypervisor settings for the system. This command does not enable or disable the hypervisor ...

This command sets or displays the hypervisor settings for the system.

This command does not enable or disable the hypervisor debugger for any
particular OS loader entry. To enable or disable the hypervisor debugger for a
particular OS loader entry, use "bcdedit /set  HYPERVISORDEBUG ON".
For information about identifiers, run "bcdedit /? ID".

To set an individual hypervisor debugger setting, use
"bcdedit /set {hypervisorsettings}  ".  For information about
valid types, run "bcdedit /? TYPES".

bcdedit /hypervisorsettings [  [DEBUGPORT:] [BAUDRATE:]
                              [CHANNEL:] [HOSTIP:] [PORT:] ]

         Specifies the type of debugger.  can be one of
                    SERIAL, 1394, or NET.

              For SERIAL debugging, specifies the serial port to use as
                    the debugging port.

              For SERIAL debugging, specifies the baud rate to be used
                    for debugging.

           For 1394 debugging, specifies the 1394 channel to be used
                    for debugging.

                For network debugging, specifies the IPv4 address of the
                    host debugger.

              For network debugging, specifies the port to communicate
                    with on the host debugger. Should be 49152 or higher.

Examples:

The following command displays the current hypervisor settings:

    bcdedit /hypervisorsettings

The following command sets the hypervisor debugger settings to serial debugging
over COM1 at 115,200 baud:

    bcdedit /hypervisorsettings SERIAL DEBUGPORT:1 BAUDRATE:115200

The following command sets the hypervisor debugger settings to 1394 debugging
using channel 23:

    bcdedit /hypervisorsettings 1394 CHANNEL:23

The following command sets the hypervisor debugger settings to network
debugging with a debugger host at 192.168.1.2 communicating on port 50000:

    bcdedit /hypervisorsettings NET HOSTIP:192.168.1.2 PORT:50000