"Host USB device connections disabled" in VMware?

3,194

Solution 1

See the answer below, from this blog post.


The root cause of this problem is that VMWare only support USB root hub driver from Microsoft. When your USB root hub driver get updated by another software (sony ericsson pc suite, AMD, etc.) the vmware cannot detect the usb driver.

What you can do is install the Microsoft USB Hub Driver on your Host. This is how you do it:

  1. Right Click on your My Computer icon and click Manage. Go to Device Manager. Search for USB Root Hub.

  2. Double Click on one of USB Root Hub. Check the Driver Provider. If it is a Sony Ericsson or provider other than Microsoft, you should install the Microsoft Driver. Klik Update Driver to Install Microsoft Driver.

  3. Choose Install from a list or specific location.

  4. Don’t search. I will choose the driver to install.

  5. Choose USB Root Hub from the bottom.

  6. Check again the Manufacturer. Make sure it is already changed to Microsoft.

  7. Do step 1-6 on all the USB Root Hub.

  8. Restart the Computer.


Solution 2

I restored the usb root hub drivers to Microsoft and then I uninstaller vmware.After uninstalling vmware i tried to install vmware again and after that...IT FINALLY WORKED!!! try that and good luck from me...finally my vmware work like it should do. :)

Share:
3,194

Related videos on Youtube

Mr Jonny Wood
Author by

Mr Jonny Wood

Updated on September 17, 2022

Comments

  • Mr Jonny Wood
    Mr Jonny Wood almost 2 years

    How would I go about remove the class from all elements except the next one?

    For example:

    <ul>
      <li class="current"><a href="#">Trigger</a></li>
      <li class="next"><a href="#">Trigger</a></li>
      <li class="next"><a href="#">Trigger</a></li>
      <li class="next"><a href="#">Trigger</a></li>
    </ul>
    

    Clicking on Trigger link a removes all the "next" classes from the li elements except the one directly below

    I'm not worried about the whole set of code to achieve this. I've written everything that I need apart from this one thing of removing the class except on the next li?!

    UPDATE: SOLVED

    Seems I overlooked a simple solution which works well:

    $(this).parent().siblings().not().next().removeClass('next');
    
    • Admin
      Admin over 14 years
      Did you check the status of this service in the Microsoft Management Console?
    • Daniel A. White
      Daniel A. White over 12 years
      can you show what you have tried?
  • kvizii
    kvizii about 14 years
    thank you soo much for answering and helping me...it means a lot :) thanks
  • Jjames
    Jjames almost 14 years
    Please keep in ming the Superuser (and all SE sites) are an English Community. Please use english next time.
  • Mr Jonny Wood
    Mr Jonny Wood over 12 years
    is this a better/technically more correct way than the solution I posted? Mine seems to work too but looks ver simple.
  • Mr Jonny Wood
    Mr Jonny Wood over 12 years
    I posted it as an answer below
  • Rob W
    Rob W over 12 years
    .not() is not even necessary. The negating effect of .not() does not chain. Your code somehow seems to work, but it doesn't: The first sibling is never affected: jsfiddle.net/fmGPk/2
  • Purag
    Purag over 12 years
    Even though you've found a solution that seems to work, it's better to stick to standards and best practices. This code may eventually stop working at one point in the future (not that this is likely, but it's possible, of course). @RobW's method is an excellent way of doing it.
  • Mr Jonny Wood
    Mr Jonny Wood over 12 years
    @Purmou – thanks for the clarification. I didn't think it was correct, was amazed it worked. I'll revert to Robs solution.