I have been searching for this, I'm following the vSphere hardening guide, and as an example, I want to disable all the floppies on a machine. The configuration maximum shows that there is a maximum of 2 floppies that can be attached to a vSphere 5 host. The guide shows that if you want to disable a floppy just use:
floppyX.present = False
If I want to disable both floppies, can I do this?
floppy0:1.present = False
Or would it have to be?
Floppy0.present = False
Floppy1.present = False