VMware Global Community
rodrigo_piedade
Contributor
Contributor
Jump to solution

Maquina virtual com opção de ejetar com segurança placa de rede Windows

Criei 4 maquinas virtuais no VMware ESXi 7.0 com Windows server 2019.
Ao subir as maquinas aparece a opção de ejetar com segurança a placa de rede.
Gostaria de desabilitar isso. Alguma configuração na vm para impedir isso?

 

image.png

Reply
0 Kudos
1 Solution

Accepted Solutions
bluefirestorm
Champion
Champion
Jump to solution

You can add the following lines to the vmx configuration file.

devices.hotplug = "FALSE"
ahci.port.hotplug.enabled = "FALSE"

The ahci.port.hotplug.enabled = "FALSE" will make the eject of SATA devices disappear.

For more information look at https://kb.vmware.com/s/article/1012225

 

View solution in original post

2 Replies
bluefirestorm
Champion
Champion
Jump to solution

You can add the following lines to the vmx configuration file.

devices.hotplug = "FALSE"
ahci.port.hotplug.enabled = "FALSE"

The ahci.port.hotplug.enabled = "FALSE" will make the eject of SATA devices disappear.

For more information look at https://kb.vmware.com/s/article/1012225

 

rodrigo_piedade
Contributor
Contributor
Jump to solution

Thanks a lot for the help. It worked out.

Reply
0 Kudos