In certain virtual machines (VMs), administrators may observe that the floppy drive is not listed when viewing the VM’s configuration under Edit Settings in vCenter. However, the floppy drive still appears inside the guest operating system (OS) under File Explorer.
Check VM Hardware in vCenter
Open vSphere Client → Edit Settings for the VM.
Look under Virtual Hardware → confirm if Floppy Drive is listed.
If not listed, vCenter believes the floppy device is not part of the VM configuration.
This discrepancy causes the floppy drive to be hidden from vCenter but is accessible within the guest OS.
VMware vCenter Server
The floppy drive configuration is still present in the VMX file
vm.createDate = "XXXXXXXXXX"
ideo:0.deviceType = "atapi-cdrom"
ide0:0.fileName = "emptyBackingString"
ide0:0.present = "TRUE"
floppy0. startConnected = "FALSE"
floppyo. fileName = "Floppy 0"
etherneto.virtualDev = "vmxnet3"
etherneto. addressType = "static"
etherneto.address = "XXXXXXXXXXX"
ethernet0.uptCompatibility = "TRUE"
Reviewing the VMX file reveals entries related to the floppy drive, even though vCenter does not display it in the VM’s hardware settings.
Customers are advised to modify the VMX file by commenting out the floppy drive parameter.
Locate the virtual machine VMX file
/vmfs/volumes/<datastore>/<VM_Name>/<VM_Name>.vmx
.vmx file with a text editor (e.g., vi).Identify floppy drive configuration lines as below
floppy0. startConnected = "FALSE"Comment floppy drive configuration lines as below:vm.createDate = "XXXXXXXXXX"ideo:0.deviceType = "atapi-cdrom"ide0:0.fileName = "emptyBackingString"ide0:0.present = "TRUE"#floppy0. startConnected = "FALSE"
#floppyo. fileName = "Floppy 0"
etherneto.virtualDev = "vmxnet3"etherneto. addressType = "static"etherneto.address = "XXXXXXXXXXX"ethernet0.uptCompatibility = "TRUE"
To save the file Press Esc → type :wq → press Enter.
Reload the VM configuration - Reloading a vmx file without removing the virtual machine from inventory
Since the floppy drive entries remain in the VMX file, the guest OS continues to detect and display the floppy drive. Commenting out or removing these parameters ensures the floppy drive is no longer visible inside the VM.