This worked for me.
Ever since I installed VMware Player (I'm using 2.0.5 currently), it always informed me when connecting my external USB HD, that a high-speed device was connected to a low-speed USB (1.1) port. Hmm, said I. My USB ports are 2.0. So I enlisted the help of our old friend Google and came across the following information:
To enable USB 2.0 support in VMware Player, add the following lines to your .vmx file:
If the first line above is already present - it was in my file - you add just the other three lines. I saved the file and then fired up VMware Player. Voila! It recognized the high-speed hub, looked for and installed the drivers (it found them), and when I connected to my USB HD, it was mounted as the 2.0 device it actually is. Pretty cool.
Ever since I installed VMware Player (I'm using 2.0.5 currently), it always informed me when connecting my external USB HD, that a high-speed device was connected to a low-speed USB (1.1) port. Hmm, said I. My USB ports are 2.0. So I enlisted the help of our old friend Google and came across the following information:
To enable USB 2.0 support in VMware Player, add the following lines to your .vmx file:
Code:
scsi0.present = "TRUE" scsi0.pciSlotNumber = "18" ehci.present = "TRUE" ehci.pciSlotNumber = "19"
Comment