Information
Ensure that no parallel port is connected to a virtual machine unless required. For a parallel port to be disconnected, the parallelX.present parameter should either not be present or have a value of FALSE.
Removing unnecessary hardware devices can reduce the number of potential attack channels and help prevent attacks.
Solution
To disconnect all parallel ports from VMs, run the following PowerCLI command:
# In this Example you will need to add the functions from this post: http://blogs.vmware.com/vipowershell/2012/05/working-with-vm-devices-in-powercli.html
# Remove all Parallel Ports attached to VMs
Get-VM | Get-ParallelPort | Remove-ParallelPort
The VM will need to be powered off for this change to take effect.