It is safe for me to remove the drivers?

I got no answer to my previous question, so thought I would try an other way around...

It is safe for me to remove the USB drivers and then download new on the site to download drivers HP?

Original thread is here:

http://h30434.www3.HP.com/T5/notebook-operating-systems-and/Intel-ICH9-family-USB-drivers/m-p/703997...

Thanks - BB

Yes you can "Uninstall" the drivers usb one at a time by a right click on it and select "Uninstall".

Once this is done, right click on any other device and select "Check for changes on the hardware", windows will install fresh copies of the drivers, no need to download anything.

Tags: Notebooks

Similar Questions

  • laptop resets date and time back to factory on each reboot. Also removes the drivers for the cards and the outlook settings.

    Machine removes the drivers for the wireless card, also changes some settings in outlook after each reboot.

    Hi Jim,.

    You could try replacing the CMOS battery, as it appears to have failed.

    http://www.computerhope.com/issues/ch000239.htm

    Chris
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Recently my 2008 Dell Inspiron 530 desktop decided to download the drivers for a floppy drive, which he did not. Trying to remove the drivers it just comes back. =(

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas: I honestly have no idea where these persistent drivers came and am not techi enough to know where to go to fix this.

    • You have problems with programs
    • The error message only comes when I turn on the computer and I have to press f1 to continue because disk 0 loadout or something else does not, and it is becoming a real chore.
    • Recently, I stopped using windows update automatically cause I learned from a friend that I may be causing this problem and download the drivers, but I'm not sure it really the problem.
    • everything I tried like a hotfix removes the drivers, but they came right at the start.

    Hello
     
    Disconnect the card reader and start the computer to cross check if this is the origin of the problem. You can also connect to a different port and check the result.
     
    You can restore the computer to an earlier time when it worked very well for this problem. To do this, follow these steps.
    1. open the system restore by clicking the Start button, all programs, accessories, clicking System Tools, and then click System Restore.  If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.
     
    For more information about system restore, see this link:
    http://Windows.Microsoft.com/en-us/Windows-Vista/what-is-system-restore
     
    I hope this helps.
     
    Kind regards
    Syed
    Answers from Microsoft supports the engineer.
  • Hoax call on notifications about a virus tries to hijack your computer and ask for help to remove the files?

    OT: security.

    Dear community,

    Did anyone out there contacted by "windows" say you they receive notifications about a virus tries to hijack your computer and ask for help to remove the files? Initially, it was an area code 855, but now the number is unavailable. I get a lot of calls.

    any help would be appreciated

    Thank you

    Hello

    It's a scam.

    Here are the tips that we regularly give the posters who receive these types of calls:

    We have all the errors and warnings in our Event Viewer

    Either these so-called "Microsoft" Tech companies want to sell you a worthless software, or remote access to your computer to try to steal your credit card and bank information and also achieve an identity theft on you.

    You are the only person who knows if you gave them remote access.

    If you gave them remote access and you do Internet banking, contact your bank, to explain, and change passwords.

    If you use your online credit card, cancel and get a new one issued to you.

    And the only way that willl you know that you are free to them is to backup your data and do a clean install of your operating system.

    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

    And Microsoft does not contact you unless YOU have made prior arrangements with them to do.

    There is an article in the link I'm you provide at the end of this one

    Read this Information from Microsoft:

    "Avoid scams to phone for tech support.

    http://www.Microsoft.com/security/online-privacy/avoid-phone-scams.aspx

    Don't be fooled of unsolicited calls. Don't provide personal information.

    Here are some of the organizations that cyber criminals claim to come:

    • Helpdesk Windows

    • Windows repair center

    • Microsoft technical support

    • Microsoft technical support

    • Windows Support Group Technical Department

    • Microsoft Research and Development Team (team of Microsoft R & D)

    See you soon.

  • Script to search for text and remove the hyperlink and characterstyle link which applies (back to normal)

    I need help with my script to search for text and remove the hyperlink and characterstyle link which applies (returns the normal text).

    I can't do either as I want.  I want the user to be able to type in a dialog text they want to search for, do search this text IGNORING case (case insensitive) and then for all instances that he find it, remove character styles that are applied to the (set to [none]) and delete the hyperlinks.

    My code seems to define the character style [None], when I click on the text and look at the window of character Styles, BUT all old styles (font color, underline) are always applied and removed not as I want.

    Also, I can't understand how to remove all of the old links.

    Here is my code:

    myDocument var = app.activeDocument;

    var noneStyle = myDocument.characterStyles.item ("[None]");

    var myFindVal = "";

    var myErrorText = "";

    var myErrorCount = 0;

    myDialog = app.dialogs.add var ({name: "search user submitted text and delete hyperlinks from objects found.", canCancel: true});

    {with (MyDialog)}

    {with (dialogColumns.Add ())}

    {with (borderPanels.Add ())}

    staticTexts.add ({staticLabel: "search and delete hyperlinks for :"}); "})

    myTextBox var = textEditboxes.add({minWidth:100});)

    }

    }

    }

    If (myDialog.show () == true) {}

    myFindVal = myTextBox.editContents;

    doSearchAndReplace();

    app.findTextPreferences = NothingEnum.nothing;

    app.changeTextPreferences = NothingEnum.nothing;

    If (myErrorCount == 0) {}

    Alert ("done! ("Part of the links have been removed for: '" + myFindVal + ""! "");

    }

    else {}

    Alert ("last error: '" + myErrorText + "' & number of errors:" + myErrorCount);

    }

    }

    myDialog.destroy ();

    function doSearchAndReplace() {}

    app.findTextPreferences.findWhat = myFindVal;

    app.findChangeTextOptions.caseSensitive = false;

    app.findChangeTextOptions.includeFootnotes = false;

    app.findChangeTextOptions.includeHiddenLayers = false;

    app.findChangeTextOptions.includeLockedLayersForFind = false;

    app.findChangeTextOptions.includeLockedStoriesForFind = false;

    app.findChangeTextOptions.includeMasterPages = false;

    app.findChangeTextOptions.wholeWord = false;

    var myFoundItems = myDocument.findText ();

    for (i = 0; i < myFoundItems.length; i ++) {}

    myRemoveHyperlinkAndStyle (myFoundItems [i]);

    }

    }

    function myRemoveHyperlinkAndStyle (myFoundItem) {}

    try {}

    myDocument.hyperlinkTextDestinations.item (myFoundItem) .remove ();

    myDocument.hyperlinkTextSources.item (myFoundItem) .remove ();

    myDocument.hyperlinkURLDestinations.item (myFoundItem) .remove ();

    myFoundItem.applyCharacterStyle (noneStyle);

    }

    {catch (MyError)}

    myErrorCount ++;

    myErrorText = MonErreur;

    }

    }

    Hello

    Right, some hyperlink might be a pageItem...

    expand the 'if' condition with:

    If (myHyp [len].source.hasOwnProperty ("sourceText") &... content ==...)

    Jarek

  • How to remove the drivers for a device of a system completely.

    Hello

    Product name: HP Pavilion dv6-6093ex Entertainment Notebook PC support.

    Product number: LM610EA #A2N

    I recently found a problem with my Bluetooth with a phone Samsung Galaxy Bluetooth pairing.

    I decided to uninstall all components from the previous installation of BCBT7 (Broadcom Bluetooth).

    Before uninstalling anything technology Bluetooth, Device Manager was as follows:

    I uninstalled the BCBT7 (Broadcom Bluetooth) of the control panel. However, the Bluetooth drivers are still intact.

    I tried to uninstall the driver by clicking on "right click" on the Bluetooth device on Device Manager, and then I chose 'uninstall '.   Then, all Bluetooth entries disappeared.

    However, when I restarted my PC, the Bluetooth entries were once again:

    How to remove all components of a register Bluetooth device and everywhere on the system to get a clean install of it again.

    I checked the registry and found some Bluetooth entries below are still exist along with the icon in the notification area.

    Should I delete all of the above entries manually?

    Cooperator Hello,

    It seems that the generic drivers provided by Microsoft for your Bluetooth device are the cause of the problem. That is why, even if you have uninstalled them before restarting your PC, they have been re-installed again. To stop Windows to install the drivers automatically, go to Start, type "change device installation settings" and select to open the corresponding window. It should look a little like this,

    Change Yes, this automatically (recommended) settings to No, let me choose what to do. Select never install the software driver from Windows Update. Press save changes and restart or disconnection of your PC. Now, install the Bluetooth drivers provided by the manufacturer of the device and see if the problem still occurs.

    Let us know what happens. Hope this helps,

  • Replacement of removed the drivers (internet)?

    A friend of mine was trying to delete some files and believes she accidentally caught a few pilots in the delete as well. Since then, she has been unable to launch any web browser despite his cell phone indicating that it has an active wireless connection. She tried a restore of the system without result.

    Being computer illiterate, I have a few questions. Deleted the drivers would cause something like that or something else would be to blame? If it's the drivers, how could she determine which are missing in order to figure out who needs to be restored? Finally, by what means would be restored pilots? She has more all disks associated with the system.

    I don't really know what information is needed here. Let me know if something else is needed, and I'll get it here. Thank you.

    Hello

    Tell him to try a restore of the system to a point before she did this.

    How to make a Vista system restore
    http://www.Vistax64.com/tutorials/76905-System-Restore-how.html
    ================================================

    If it has been too long for a restore at work Point, try this:

    Have try the Safe Mode with network - repeatedly tap F8 to select
    than as a choice.

    or:

    The drivers can be downloaded to another computer and transferred
    This one on removable media such as CD, DVD, or USB drives.

    Control Panel - network - write down of the brand and the model of the Wifi - double click top - tab of the driver - write
    version - click the driver update (cannot do something that MS is far behind the pilots of certification). Then
    Right click on the Wifi device and UNINSTALL - Reboot - it will refresh the driver stack.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    How to install a device driver in Vista Device Manager
    http://www.Vistax64.com/tutorials/193584-Device-Manager-install-driver.html

    Download - SAVE - go where you put it - right click – RUN AS ADMIN.

    You can download several at once however restart after the installation of each of them.

    After watching the system manufacturer, you can check the manufacturer of the device an even newer version. (The
    manufacturer of system become your backup policies).

    Repeat for network (NIC) card and is a good time to get the other updated drivers as Vista like
    updated drivers.

  • HP OfficeJet 8500 a, unable to install driver in Windows 7. Tried to reinstall, remove the drivers, etc., but always refuses... Normal function with other computers.

    Normal function refuses year and a half, reinstall the drivers from HP Homepage. Normal function on the other computer. Printer and scanner is accessed by the ip address. I tried to install via USB, wired and wireless network.
    Network, internet etc. work normally... Said "bad typography of the .inf file", but it seems that they all look the same.
    What should do?

    Hello

    Try to restore the computer to a date when it was working fine and check if the problem is resolved. To run the system restore, you can consult the following articles:

    Restore system files and settings

    http://Windows.Microsoft.com/en-us/Windows7/restore-system-files-and-settings

    System Restore: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows7/system-restore-frequently-asked-questions

    Let us know if it help you.

  • Create the request for approval to remove the user operation with IOM api-11 g Release2

    Hello

    How do I create an approval request for an API using operation user remove? Can someone guide me? Any help is greatly appreciated...


    ARO
    Aliye

    You must use the new API set to create the request. OIM 11 g R2 supports model not application so your code will be changed.

    Examples: http://docs.oracle.com/cd/E27559_01/doc.1112/e28183/oim_up.htm#BABGBEHG

  • I don't select remember passwords for sites after removing the password

    The checkbox for remembering passwords is not a direct field in the options. I try uninstall/reinstall as I can't find anything about it in the forums.

    You use permanent Private Browsing?
    https://support.Mozilla.org/en-us/KB/private-browsing-use-Firefox-without-history#w_what-does-private-browsing-not-save
    Passwords: no new password is saved. the option is grayed out =

  • Script for internal policies remove the entries for backups that have already expired

    Hi all

    Can anyone help with the script to do a cleaning to remove backups of database DATA of CATALOG entries to delete the backup that are already expired.

    Thank you

    Noelie

    Its very simple - you must include the above commands in op you take backup.

    See an example here:

    RUN

    {

    affect the format of disc type channel backup_disk1 "G:\SARAT\/%U";

    Format of BACKUP AS BACKUPSET COMPRESS of base of DATA PLUS ARCHIVELOG 'G:\SARAT\FULL_ARCH_%d_%n_%u%s%p ';

    BACKUP CURRENT CONTROLFILE FORMAT 'g:\sarat\Controlfile_CISORA1_%u%s%p ';

    Backup SPFile;

    cross-checking of backup;

    obsolete report;

    remove obsolete

    Output channel backup_disk1;

    }

    Sarat

  • Adjustment for PhotoShop CS6 remove the new format 'dark '.

    I have a vision disorder and use ZoomText to activate my ability to work.  I was appalled to discover that the new format PhotoShop CS6 is so dark. the menus and tools have very little contrast.  It is a deal-breaker for me, I can't use it as it appears the first opening.  Is there a setting I can change that will allow PhotoShop to appear more like older versions where the lightness and contrast of the program itself?

    You can choose between different levels of brightness of the user interface in the preferences.

    Mylenium

  • any suggestions for failed to remove the browser/ask avira is inbedded firefox and internet explore it now

    whenever I try to open Firefox or Internet Explorer avira powered by ask opens by default riding

    Hello

    You can try to update Firefox and check: https://www.mozilla.org/en-US/firefox/new/

    Howto update

    If the problem persists, you can then reset Firefox and start over.

    The reset Firefox feature can solve a lot of problems in restaurant Firefox to its factory default condition while saving your vital information.
    Note: This will make you lose all the Extensions, open Web sites and preferences.

    To reset Firefox, perform the following steps:

    1. Go to Firefox > help > troubleshooting information.
    2. Click on the button 'Reset Firefox'.
    3. Firefox will close and reset. After Firefox is finished, it will display a window with the imported information. Click Finish.
    4. Firefox opens with all the default settings applied.

    Information can be found in the article Firefox Refresh - reset the settings and Add-ons .

    This solve your problems? Please report to us!

  • Remove the material (hard drive?)

    I just reinstall windows after getting a new motherboard. Windows workded fine until this only after updating windows. Now theres a notification for windows to remove the material in the notification area. The device, it's my hard drive! I don't want to remove it safely. I need. Also I discovered that in computer theres a no-excistent floppy drive listed. I have not installed. What should I do?

    Windows Vista home basic X 64

    Pentium D 960 ~3.966255 GHZ

    2 GB ram DDR2

    MSI MS-7255 V2.1

    DominicP has a simple answer as to why you are possibly of this in the thread of HDD of any listed under Safely Remove Hardware .

    As much as to find a way to get rid of the display option in your Notification area, you can try the suggestion of Morgan davies in the Safely Remove Hardware: for my drive! Put it in the Microsoft Technet Windows Vista Pro forums.

    I recommend you to backup all of your important documents to an external storage device before you try to do, just to be on the safe side.

  • How to remove the icon network connections of office, as well as the administration of Office Tools icon?

    original title: Hi Rami, how are you? can you help me to tell me how to remove the icon for network connection of office, as well as the administration of Office Tools icon?

    Hi Rami how are you? can you help me to tell me how to remove the icon for network connection of office, as well as the administration of Office Tools icon?

    Hi TristanRamizi,

    Thanks for posting your question in the Microsoft answers Forum. Are you logged on as administrator on the computer? Try to start the computer in Safe Mode , and then remove the icons.

Maybe you are looking for