3.5U4 update and QLA2340 driver version?

! file:///C:/DOCUME1/lchitwoo/people of the COUNTRY1/Temp/moz-screenshot.png! file:///C:/DOCUME1/lchitwoo/people of the COUNTRY1/Temp/moz-screenshot-1.png! I'm upgrading to 3.5u4, HCL for the QLA2340 HBA back two shots with different notes that refer to different versions of the QLA2340 pilot.

1 qla2x00_707 version 7.07.04.01

2 qla2300_707_vmw version 7.08 - vm32

Nobody knows who is suitable for the QLA2340 driver?

HCL research screenshot is attached.

Yes, FYI the readers that come with ESX have been certified to work, that's why they go to the trouble to ensure that your machines are on the HCL at 100%.

Drivers are unified solutions, which means that when you install a newer version of ESX with newer drivers, if they have certified the BIOS, firmware for qlogic cards will be automatically updated on the reboot of the server.

So, bottom line is that you don't need to worry about 3rd pilot decision-making, ESX will take care of all THE drivers and firmware for HCL devices.

Tags: VMware

Similar Questions

  • BIOS of ESX, NIC and HBA driver Versions

    Hi friends,

    am intermiediate POWERCLI user and shell the scritping, please you colud help launch me script below.

    more information http://www.sandfordit.com/vwiki/ESX_Script_Extracts_and_Examples

    Thanks in advance,

    Aldo.

    Get versions of driver BIOS, NIC and HBA is dependent on what is reported to the ESX provider CIM material supplier. This script has been written using different servers of HP and well can work for them.

    # ===============================================================
    # ESX Inventory Getter
    # ===============================================================
    # Simon Strutt        November 2010
    # ===============================================================
    #
    # Version 1
    # - Initial Creation
    #
    # Version 2 - Dec 2010
    # - Added BiosVer, CpuCores, CpuModel, HbaModel, NicModel
    # - Bugfix: Corrected VC connection handling
    # - Removed dependency on obsoleted properties (from upgrade to PowerCLI v4.1.1)
    #
    # Limitations
    # - Tested on HP DL380 (G7), BL465 (G7), BL495 (G6), BL685 (G5)
    # - Supports 1 distinct HBA model, 2 distinct NIC models
    #
    # ================================================================
     
    $start = Get-Date
    $OutputFile = "ESXs.csv"
    $VC_List = "ESX-Check.csv"
    $UserFile = "User.fil"
    $PassFile = "Pass.fil"                           # Encrypted file to store password in
    $Results = @()
     
    # Include library files
    . .\lib\Standard.ps1
     
    Start-Transcript -Path ESX-Inventory.log
    Log "Started script run at $start"
     
    # Function-U-like ===================================================================================
     
    Function Get-NicDriverVersion ($view, $driver) {
        # Gets the CIM provided driver version (tallies up driver name with CIM software component)
        $result = ($view.Runtime.HealthSystemRuntime.SystemHealthInfo.NumericSensorInfo | Where {$_.Name -like $driver + " driver*"} | Get-Unique).Name
        $result = ([regex]::Matches($result, "(\b\d)(.*)(?=\s)"))[0].Value         # HP regex to extract "2.102.440.0" for example
        $result
    }
     
    # =================================================================================================== 
     
    # Load list of VC's
    try {
        $VCs = Import-CSV $VC_List
    } catch {
        Log "ERROR: Failed to load list of vC's"
        Exit
    }
     
    # Load password credential from encrypted file
    $pass = Get-Content $PassFile | ConvertTo-SecureString
    $user = Get-Content $UserFile
    $cred = New-Object System.Management.Automation.PsCredential($user, $pass)
     
    foreach ($vc in $VCs) {
     
        # Connect to VC
        try {
            Log("Connecting to " + $vc.vc)
            $VCconn = Connect-VIServer -Server $vc.vc -Credential $cred -errorAction "Stop"
        } catch [VMware.VimAutomation.ViCore.Types.V1.ErrorHandling.InvalidLogin] {
            Log("Unable to connect to vCentre, invalid logon error !!")
            Log("Abandoning further script processing in order to prevent potential account lockout.")
            Break
        } catch {
            Log("Unable to connect to vCentre - " + $_)
            Continue
        }
     
        # Get ESX objects
        Log("Getting list of ESXs to check on " + ($vc.vc) + "...")
        $ESXs = Get-VMHost -Server $vc.vc | Sort -property Name
        Log("Got list of " + ($ESXs.Count) + " ESXs to check") 
     
        ForEach ($ESX in $ESXs) {
            $row = "" | Select VC, Cluster, Name, IP, Version, Make, Model, BiosVer, CpuCores, CpuModel, HbaModel, HbaDriver, HbaDriverVer, Nic1Model, Nic1Driver, Nic1DriverVer, Nic2Model, Nic2Driver, Nic2DriverVer
            Log($ESX.Name)
     
            # Store objects which get re-used for efficiency
            $ESXview = Get-View -VIObject $ESX
            $VMHostNetworkAdapter = Get-VMHostNetworkAdapter -VMHost $esx 
     
            # Get the basics
            $row.VC = $vc.vc
            $row.Cluster = $ESX.Parent
            $row.Name = $ESX.Name.Split(".")[0]
            $row.IP =  ($VMHostNetworkAdapter | Where {$_.ManagementTrafficEnabled -eq "True" -or $_.DeviceName -like "vswif*" -or $_.Name -eq "vmk0"}).IP
            $row.Version = $ESX.Version + " (" + $ESX.Build + ")"
            $row.Make = $ESX.Manufacturer
            $row.Model = $ESX.Model
     
            # Now onto the more ESX version / hardware specific stuff (new versions of hardware will require further work below)
     
            # BIOS
            if ($ESXView.Hardware.BiosInfo) {     # Works on some systems 
                $row.BiosVer = $ESXview.Hardware.BiosInfo.BiosVersion + " " + $ESXview.Hardware.BiosInfo.ReleaseDate.ToString("yyyy-MM-dd")   # Need date for HP servers as they use same version no for diff versions!
            } else {
                $row.BiosVer = ($ESXview.Runtime.HealthSystemRuntime.SystemHealthInfo.NumericSensorInfo | Where {$_.Name -like "*BIOS*"}).Name
                $row.BiosVer = ([regex]::Matches($row.BiosVer, "[A-Z]\d{2} 20\d{2}-\d{2}-\d{2}"))[0].Value           # HP regex to extract "A19 2010-09-30" for example
            }
     
            # CPU info
            $row.CpuCores = $ESXview.Hardware.CpuInfo.NumCpuCores.ToString() + " (" + $ESXview.Hardware.CpuPkg.count + "x" + $ESXview.Hardware.CpuPkg[0].ThreadId.count + ")"
            $row.CpuModel = $ESX.ExtensionData.Summary.Hardware.CpuModel
     
            # HBA info (script assumes only one HBA model in use)
            $row.HbaModel = ($ESX.ExtensionData.Config.StorageDevice.HostBusAdapter | Where {$_.Key -like "*FibreChannel*"})[0].Model
            $row.HbaDriver = ($ESX.ExtensionData.Config.StorageDevice.HostBusAdapter | Where {$_.Key -like "*FibreChannel*"})[0].Driver     # Includes version for ESX3
            $row.HbaDriverVer = ($ESXview.Runtime.HealthSystemRuntime.SystemHealthInfo.NumericSensorInfo | Where {$_.Name -like "*" + $row.HbaDriver + "*"}).Name
            $row.HbaDriverVer = ([regex]::Matches($row.HbaDriverVer, "(\b\d)(.*?)(?=\s)"))[0].Value
     
            # NIC info (script only supports two distinct NIC types)
            $nics = $ESXview.Hardware.PciDevice | Where {$_.ClassId -eq 512} | Select VendorName, DeviceName, Id | Sort-Object -Property DeviceName -Unique
            if ($nics.count) {
                $row.Nic1Model = $nics[0].VendorName + " " + $nics[0].Devicename
                $row.Nic2Model = $nics[1].VendorName + " " + $nics[1].Devicename
     
                # Use PCI ID to match up NIC hardware type with driver name
                $row.Nic1Driver = ($VMHostNetworkAdapter | Where {$_.ExtensionData.Pci -eq $nics[0].Id}).ExtensionData.Driver
                $row.Nic2Driver = ($VMHostNetworkAdapter | Where {$_.ExtensionData.Pci -eq $nics[1].Id}).ExtensionData.Driver
     
                $row.Nic1DriverVer = Get-NicDriverVersion $ESXview $row.Nic1Driver
                $row.Nic2DriverVer = Get-NicDriverVersion $ESXview $row.Nic2Driver
             } else {
                # Annoyingly, $nics is not an array if there's only one NIC type, hence seperate handling
                $row.Nic1Model = $nics.VendorName + " " + $nics.Devicename
                $row.Nic1Driver = ($VMHostNetworkAdapter | Where {$_.ExtensionData.Pci -eq $nics.Id}).ExtensionData.Driver
                $row.Nic1DriverVer = Get-NicDriverVersion $ESXview $row.Nic1Driver
            }
     
            $Results = $Results + $row
        }
        Disconnect-VIServer -Server $VCconn -Confirm:$false
    }
    $Results | Format-Table *
    Log("Writing results to $OutputFile...")
    $Results | Export-Csv -path $OutputFile -NoTypeInformation
     
    Log("All completed")
    Stop-Transcript

    Hi Aldo,.

    As directed by the PM, I sent you, I genericised the script a bit more, it should be easier to use (no need to the Standard.ps1 file).  Similarly the name of your Center virtual servers don't need to be put in a separate file CSV file is

    To avoid having to create credentials files, delete the following lines...

    # Load password credential from encrypted file
    $pass = Get-Content $PassFile | ConvertTo-SecureString
    $user = Get-Content $UserFile
    $cred = New-Object System.Management.Automation.PsCredential($user, $pass)
    

    .. .and replace by (the script will prompt you for the user/pass)...

    $cred = Get-Credential
    

    Hope this gets you operational.

    Note that I found to NIC and driver versions HBA is quite unreliable using this script, that there is a lot of consistency in what is returned by ICM to hardware vendors.  More on the servers I tested with firmware HBA was never available.  A more reliable, but more complex method is to use PowerShell for SSH for your ESX, which has its own problems, but is another approach (when you do audits of system I tend to use both).  See below for more info...

    http://vblog.Strutt.org.UK/2012/04/ESX-HBA-and-NIC-driverfirmware-versions/

    All the best...

    Simon

  • My KEY will not work for both windows 7 32-bit update and 64-bit version?

    I have two, a copy and a key for the upgrade to Windows 7, 32-bit and 64-bit.  (Key separately for each version, purchased about 6 months apart.)

    The computer that is running the 32-bit version had a hard drive failure.   After replacing the hard drive, I decided to install 64-bit on this computer using the key provided with the 32-bit version.

    I was led to believe that the key is not related to the 64 or 32 bit version and that it could be used for both, but only installed at the moment.

    After getting to step to enter the key, using the key provided with the 32-bit version, he couldn't say invalid key.  After several attempts and checking of typo, it's a no go.

    So, I went and started around and installed the 32 bit version and the key worked fine.

    So the key provided with the 32-bit version of 'upgrade' tied to only this version?  Every search I do, says that you can use the key for 32 or 64 bit.  They never mention the version "upgrade" is different from the "full" version

    Thanks for any info,

    SDM

    Because it is an upgrade version.

    However, the requirements for the media upgrade is that you have an operating system already eligible such as Windows XP or Vista installed to use it. Since the Windows 7 end user license agreement.

    15 UPDATES. To use upgrade software, you must first be licensed for the software that is eligible for the upgrade. After the upgrade, this agreement takes the place of the agreement for the software that you upgraded. After upgrade, you can no longer use the software that you upgraded.

    So, if you are always denied, you will just have to reinstall Windows XP or Vista and let it do the verification of eligibility.

    So using phone activation is the work around:

    How to activate Windows 7 manually (activate by phone)
     
    1) click Start and in the search for box type: slui.exe 4
     
    (2) press the ENTER"" key.
     
    (3) select your "country" in the list.
     
    (4) choose the option "activate phone".
     
    (5) stay on the phone (do not select/press all options) and wait for a person to help you with the activation.
     
    (6) explain your problem clearly to the support person.
     
    http://support.Microsoft.com/kb/950929/en-us

  • How can I fix the Player Plugin update? Whenever I click on the box to update and download the version, it still shows a red box in front of by update

    I'm trying to update a Plugin. When I click on the red box the Player Plugin, this brings me to the Adobe site in order to choose the version, language and operating system. I do and download version. It shows the version already installed. When I go back to check and see if the Adobe Reader Plugin has been updated, there are always the red box to the right, saying: it should be updated. I refreshed Firefox and that did not solve the problem. What can I do to update this Plugin?

    Is a situation like this, go to the web site of programs and check there.
    If the site says you have existing programs, that's all you need.

  • BlackBerry smartphone App world cannot be updated and my previous version disappeared.

    Hi I have a BB 9800 torch.

    I tried to update my 4.0.0.63 app world. I got the link to my email, I clicked it, went to the download site, selected the language I clicked the download button and a pop-up message appears and says «!» Download failed. ».

    Error details are

    907 invalid COD

    A network error has occurred.

    Finally, after this process, my previous version of app world has been uninstalled.

    Pls suggest a solution.

    Francesco

    Hi francescomacina

    Please ensure that the previous version i. e 4.0.0.63 you installed earlier your device is successfully uninstalled of your device then perform a battery pull reboot and then if you can manage try to download App World wi - fi network. See if that helps.

    Prince

    ___________________________________________________________________________

    Click 'Like' If you want to thank someone.

    If problem resolves mark message (s) as a 'Solution', so that others can use.

  • My subscription needs updated and the latest version of my projects disappeared!

    Hello

    I need to update my payment method to renew my membership (this will happen on Monday at the office of the person).

    Until tomorrow, but it seems that first decided to return to my projects to an earlier version. So it seems I've lost 3 days of work?

    Why is this and is going to get my job when membership is settled?

    Thank you.

    A

    Hi, Berta,.

    Please contact support by calling/chat to update the information of payment and billing related queries.

    Contact the customer service

    * Be sure to stay connected with your Adobe ID before accessing the link above *.

    Kind regards

    Sheena

  • NIC & Storage Driver Version and Firmware

    Hello

    I would like to know powercli average to determine the firmware revision, version, and NETWORK/storage card driver name. I can take this info via

    esxcfg-info takes so long

    ethtool-i vmnic0

    Thank you

    The seller and the device to take a look at my post to appoint this material .

    According to the HW you use, you can try using the CIM for the information.

    Take a look at the BIOS of ESX, NIC and HBA driver Versions, which shows a way to do with HP hardware.

  • Video driver not updated to the latest version... Troubleshooting help please...

    Hello and good day, group... We have here a few CQ4010F desktop computers. I pushed recently updated Windows and a PC (1PWC) now has a video driver to version less about that. The PC I compare (0SDQ) is great for video with full 1920 x 1080 is available and Acer E211H monitor display. For PC with the issue, the resolution will not be max (stuck @ 1600) and the screen credits. The goal is to get (1PWC) to the full resolution and correct monitor please.

    Here are the specs for the two because both machines are the same for the Prod #:

    Models: CQ4010F, ABA-Prod #NY650AA, stock video NVIDIA GeForce 6150SE nForce 430, stock charge RAM 4 GB, 64-bit, SP1 Win7 (after windows updates)...

    I compared the pilots, and they do not match when comparing machines:

    -(1PWC); NVIDIA, on 14/05/2009, version 8.15.11.8593, signed MS Windows

    -(0SDQ); NVIDIA, 01/04/2010 (new date), version 8.17.11.9739 (latest version), have signed MS Windows HW compatibility Publisher<--- want="" please!!!="">

    I can not get the most recent driver to load on the PC with the question. I pushed for troubleshooting updates driver Windows on (1PWC) several times. All say that the driver is updated? I did a driver update... process also with the reporting of the pilot system is running when it is not.  I went to the site of NVidia and NVidia driver downloads tell me that the correct driver is installed, when it is not. Interesting java Nvidia GPU playback tool said unknown to the GPU video about the PC card product? The 'good' PC reports the right product analysis offshore GPU and offers even update a more current Nvidia driver. I as well before it is rip out together video driver and loads a basic 640 x 480 driver, then start in safe mode and reload the driver proper. But I don't know if I did the steps correct basic video driver load correction method.

    Hope it was not too verbose. I am running "on this feedback rabbit hole an and any circular or troubleshooting tips would be great. Be advised that it is the PC with the southbridge NVIDIA North/South wobbly mobo that also has problems of USB.

    Thank you-

    /WF

    Hello GPS-Tech,

    Because the tool indicates the video card as being unknown, that it does not find a driver to update because he does not know what to look for, as well as update microsoft assumes that the driver is up to date because it has no idea of this driver to get.

    Your best option is to manually install the driver by accessing the site Web of NVIDIA manually by lifting the video card and the driver installation.

    I think it's the right driver
    http://goo.GL/67li4

  • Update Live 2009 and the new version of Windows Live 2011.

    After installing the update of Live software (10.11.2010) Version 2009 (Build 14.0.8117.416) in my computer - and I tried to start Live Gallery, I get the message Photogallery cannot start because lack of MSSQL 2005 COmpact edition.

    As I knew, SQL served also in the previous version. I'm a little afraid to try to install this version, because I already have MSSQL server 2005 installed and used in my accounting program. Install a new version will then often more problems than solve all the problems.

    How to add Live Gallery as a new instance of MSSQL2005? You have the settings to set a manual instance who will work with the photo gallery?

    Next problem:

    Microsoft alert on the old LiveSync program, who work for a long time. I used this for a few years, because I have 3 computers that must be synconized with the same information on the accounting data and documents and photos. This Livesync works very well.

    I should connect on my page of Live Sync yesterday and change the settings. I've been using Live sync for a long time. There I could see Live Sync will stop and set up a new product, mesh. Well, I agreed to install this solution. I used already, windows Live mail and Live messenger, for a time of loooong and very uncomfortable about this products.

    When I installed the new synchronization software, it is also updated my Messenger, the gallery and the mail. But I'm really disappointed... The Messenger is like a huge stone and with a new design and more complicated to see what you're doing. The Gallery is so bad, and the options to display images after the shooting date disappeared. Mail is so heavy and all programs with a HUGE menu of icons all places, with 1000' nds of choice which a normal user does NOT need or want.
     
    The system of mesh must be a better solution after sync Live, but it's so slow and do a lot of bad things in my computer. All my sync folders has been updated with Live Sync, but what a start doing the same thing again, and I had 12000 files update. Soon it started the update, he grabbed 20 GB of my available space in my drive C - from 32 GB to 12 GB, and I was really scared of running out of disk space. After a few our space was getting better, but it stills lost about 10 GB in my hard drive, compared to what I had before installing. The mesh has put a lot of temporary files in users\Appdata\Local\Microsoft'Live Mesh. I start checking all files, files which could be, and after update all the files, it was still about 9 GB left in this folder. My Local low folder is now 292 MB, Local is 4.2 GB and homelessness is 579 MB. But I still wonder where is the last 10 GB which disappear when I install the mesh.
     
    My other computer died in this operation. When I start today, I had a lot of messages on the server mesh was not, and I tried to restart it. But now it's DEAD - I could not power on it. A hard disk will also start default after installation of the mesh, it was a whole new Samsung 1 TB 3.5 inch SATA.
     
    Now my main computer died and I removed all the latest Live Messenger with Essentials on this one, and now it starts acting like a normal computer.
     
    My Gallery is normal again, that my email works normally again. and I decided to stop all kinds of synchronizations from Microsoft. Why if you change a good product that works fine?
     
    I recommend post you pack to download the previous version of Live Messenger and products - and continue to use Live Sync, and people to give a chance to yourself decide how version that should be updated when a new version is available. I had no choice to stop the update for Messenger, Gallery and mail. just a message about this also will be updated. http://explore.live.com/Windows-Live-Essentials?OS=other must be put on hold until the test is preferable. Live Mesh is dangerous - it kills your computer. This is NOT a final product - put in a BETA version and put on a warning.
     

    You can find support in this forum ONLY for the installing/uninstalling/upgrading to Windows Live Essentials 2011: http://windowslivehelp.com/forums.aspx?forumid=a372972e-8e7a-4d85-adc3-a1b43e8c02ec

    You will find support for WL photo library in this forum: http://windowslivehelp.com/forums.aspx?forumid=cafb0556-8959-49b9-afeb-635314aa02f3

    =========================================

    You can install/upgrade to Windows Live Essentials 2011 manually via http://explore.live.com/windows-live-essentials

    How to uninstall Windows Live Essentials (all programs)
    http://windowslivehelp.com/solution.aspx?SolutionID=64db5c80-85E4-49fe-BF07-cb08ffc5dd53

    How to uninstall a specific Windows Live Essentials program
    http://windowslivehelp.com/solution.aspx?SolutionID=c861e66a-c839-47C4-a1d5-46b46121fb5d

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Windows update and the eternal Saga Driver

    I have Win Vista Home Premium 64 - bit version. I also have a Samsung CLX-3175 Color Laser printer.

    Windows Update keeps reporting that an optional update for this printer is available, published on 29/04/2009.

    I made the following...

    The driver installed and checked again - Windows Update reports that's always ready to download
    The installed driver, restarted my computer and then checked.
    Looked at this forum and followed the instructions on renaming the folder C:\Windows\SoftwareDistribution - still does not work
    Contacted Samsung to see if there is anything that I should know - they passed me back here

    Any suggestions?

    Shayne

    Hi SkeE007,

    This problem may occur if you do not install the updates in the correct order. An old update does not install on a new update because newer versions of files are detected on the system. Therefore, the installation of the older update is unsuccessful; However, no NDR is sent to the Automatic Update component. Thus, the automatic update interprets this setup as a successful operation. Because the update has not been installed successfully, you continue to benefit from the update until the server still offers the update.

    Follow the steps mentioned below:

    Step 1: Rename the Catroot2 folder


    To rename the Catroot2 folder, follow these steps:

    1. click on Start, type cmd in the Search box, right-click cmd.exe , and then click run as administrator.  At the command prompt, type the following commands and press ENTER after each command:

    net stop cryptsvc
    Ren C:\System32\Catroot2 oldcatroot2
    net start cryptsvc
    output

    {Delete all the following folder tmp*.cat files: C:\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}

    Step 2: Reregister DLL files that are associated with Cryptographic Services

    To register .dll files that are associated with Cryptographic Services, follow these steps:
    Click Start, type cmd in the Search box, right-click cmd.exe , and then click run as administrator.
    At the command prompt, type the following commands and press ENTER after each command:

    regsvr32 /u softpub.dll
    regsvr32 /u wintrust.dll
    regsvr32 /u initpki.dll
    regsvr32 /u dssenh.dll
    regsvr32 /u rsaenh.dll
    regsvr32 /u gpkcsp.dll
    regsvr32 /u sccbase.dll
    regsvr32 /u slbcsp.dll
    regsvr32 /u mssip32.dll
    regsvr32 /u cryptdlg.dll
    output

    Note If you are prompted, click OK .

    Click Start, type cmd in the Search box, right-click cmd.exe , and then click run as administrator.
    At the command prompt, type the following commands and press ENTER after each command:

    regsvr32 softpub.dll
    regsvr32 wintrust.dll
    regsvr32 initpki.dll
    regsvr32 dssenh.dll
    regsvr32 rsaenh.dll
    regsvr32 gpkcsp.dll
    regsvr32 sccbase.dll
    regsvr32 slbcsp.dll
    regsvr32 mssip32.dll
    regsvr32 cryptdlg.dll
    output

    Restart the computer.

    Step 3: Hide the update

    Since the update dates back to April, you can simply right click on the update and select hide update and it will not appear on the list the next time that you use the update service. We have hidden the update because it is very possible that you would have received the latest version of this update that is already installed on the computer.

    I hope that helps!

    Thank you and best regards,
    Abdelouahab Microsoft responds to the technical support engineer

  • Stop windows update to install Nvidia driver version 52.16

    Hello

    Recently, I upgraded the PC of my father to WinXP SP3. It is an old DELL Dimension of 11 years. After installation there is a nagging question that won't stop.

    Windows Update keeps trying to install the following:

    MICROSOFT VIDEO NVIDIA GEFORCE 4 MX 420

    NVIDIA driver version 52.16

    This update is not necessary for the monitor to run.

    So far, my difficulty was to start in safe mode and back the driver.

    Windows Update repeatedly installed this driver. I have

    detailed instructions on how to block this specific update to settle here.

    Thank you

    Dwayne Boyd

    To hide an update in Windows XP, just go to the Windows Update site and uncheck the update and click on the + sign next to it. At the bottom of the explanation expanded the update the checkbox to hide this update become active and can be selected, thus masking the update.

    Then, you need to remove the update from the temporary folder:

    Stop the automatic updates service

    Click Start, choose run.
    In the run box, type services.msc.
    Click OK.
    Right-click the automatic updates service.
    Click on stop.
    Stopping the service will take a moment.

    Delete the content of the download folder
    Click Start. Choose run.
    In the run box, type %windir%\SoftwareDistribution
    Click OK.
    Open the download folder.
    Delete all the contents of the download folder.
    Close the window.

    Start the automatic updates service
    Click Start. Choose run.
    In the run box, type services.msc.
    Click OK.
    Right-click the automatic updates service.
    Click Start.
    Starting the service will take a moment.

    By removing the contents of the download folder - you have removed all downloaded
    updates.

    Now, the next step would be to configure Windows Update in order to warn only rather than automatically download and install updates. In this way, you stay in control.

    http://support.Microsoft.com/kb/306525

    Click Start, click run, type sysdm.cpl, and then press ENTER.

    Click the automatic updates tab, and then click to select an Notify me but don't automatically download or install

    I hope this helps.

  • I use Windows vista home premiem (fully updated) and vista takes about 135 GB on my hard drive

    I am using Windows vista premium (fully updated) family and vista takes about 135 GB on my hard drive. is this ok or isit unusual coz my harddrive overheats quickly. on the other hand he uses my cpu 100% if I run a small program... I have Compaq presario cq60 bicoeur 3 GB of ram.

    I am currently using AVG anti virus and it detects any sort of virus...

    Hello

    This free program allows you to see what is taking place.

    http://www.Jam-software.com/treesize_free/

    You can clean your hard drive using these two methods.

    "Delete files using Disk Cleanup"

    http://Windows.Microsoft.com/en-us/Windows-Vista/delete-files-using-disk-cleanup

    Using the free CCleaner program:

    http://www.Piriform.com/CCleaner

    In NO case use the registry cleaning Option in CCleaner

    Download, install, update and scan your system with the free version of Malwarebytes AntiMalware:

    http://www.Malwarebytes.org/products/malwarebytes_free

    See you soon.

  • How do I know what software updates and driver, I need?

    Hi all

    For the first time posting here so I hope that I asked this question in the appropriate forum.

    I have just bought myself a nice shiny new computer HP laptop Pavilion dv7-3020sa - Windows 7 64 bit.

    I've been on the HP software and driver downloads page and I'm confused as to which updates (if any) that I need.

    Is it possible to know what are the current versions of the software and drivers, I already have on my laptop, so I don't download and install older versions than those currently installed?

    So far, I only did the BIOS update.

    Best regards, Chris.

    Jeff,

    Thanks for all your help and information.

    I'll keep HP Support Assistant, for now.

    I don't know if it's just me, but my laptop does not seem to start more quickly after removing the HP Advisor and Hp Update.

    He saved the little hard drive space too.

    Best regards, Chris.

  • I've updated the Mac driver for the 8600 and direct wireless printing is no longer works. V5.9.1

    I've updated the Mac driver for the 8600 and direct wireless printing is no longer works. The HP utility is v5.9.1, Mac OS x 10.7. I did the software update and a new driver HP was part of the package. HP ePrint still works, and print tests are okay for General network settings are intact. None of the applications that use the print dialogue box standard and local networking make it through the print queue. Any tips? Any way to roll back a driver version? Or quickly get the next revision and hope printing works again? Thank you.

    Update: OSX-specific Version is 10.7.5, model of the printer is HP OfficeJet 8600. See you soon.

    Hello

    Try to reboot the router and check if that can help you.

    After connecting the back of the router, wait 30-60 seconds and restart the printer and Mac.

    If it persists, try resettign the system as follows:

    * Be aware that reset the printer system will eliminate any existing queue and reset all custom settings driver.

    Click on the Apple menu and then click on System Preferences.
    Select Print & Scan.
    Right click (or Ctrl + click) your product with the Printers list in the left panel and then click on reset printing system.
    Click OK to confirm the reset.
    Type your user name and password.
    Click OK. The printing system resets.

    Now reconfigure the device by following the HP (under Utilities Applications\hewlett-Packard\Device) installation wizard.

    Please let me know if this can help,

    Shlomi

  • Dragging my updated firefox to update to the latest version and now the game I play which is a flash based game lag all the time in firefox, but not in Internet Explorer

    OK so I play a game called Emporea on my PC and it uses flash, I've never had a problem then I refreshed firefox as she suggested and it updated to the latest version, I've never had problems with it before on previous versions and now, with this, the lag is so bad that it makes the game almost unplayable. I tried to open it in other browsers such as IE, and it works very well in people. so, the question is somewhere with firefox, I've updated my flash drive and still no change in firefox

    One of the changes in Firefox 48-49 title is e10s, separating the process of browser interface process page content. The performance impact of this can vary a lot between the systems, and it would be useful to know if you have this feature enabled. To check this, either:

    • button '3-bar' menu > '? ' button > Troubleshooting Information
    • (menu bar) Help > troubleshooting information
    • type or paste Subject: support in the address bar and press enter

    In the first table on the page, find the line of Multiprocess Windows and see if the number on the left side of the fraction is greater than zero. If so, you are using e10s.

    If you use e10s:

    To determine if this feature is causing this problem, you can turn off as follows:

    (1) in a new tab, type or paste Subject: config in the address bar and press enter/return. Click on the button promising to be careful.

    (2) in the search above the list box, type or paste the cars and make a pause so that the list is filtered

    (3) double-click the preference browser.tabs.remote.autostart.2 to switch the value from true to false

    Note: the exact name of this preference may vary, but it will start by Browser.Tabs.Remote.AutoStart

    On your next startup of Firefox, it must be run in the traditional way. Any difference?

Maybe you are looking for

  • NB520 - support for multiple monitors

    NB520 they supported multiple monitors built in, if not, how can I have multiple monitor support my NB520? I need to use a Pewerpoint 2007 (presenter to display mode differs from the public view). Thanks a lot for a response in advance.

  • How to stop a script running on facebook

    I have a script that runs when on facebook since internet windows. My computer was completely empty and remade. Can someone tell me how to close this?

  • How can I you have my original Windows Vista?

    Hello Sir, Please help me! I lost my original windows vista disc and my windows on the laptop is corrupted. so please tel me how I can get it from microsoft or other... I'll be very grateful.

  • Map Microsoft Isatap does not installing driver

    I get a message saying that I have new hardware to install - when I try to install I get a message saying "a driver routine was found, but could not be installed - Map Microsoft ISATAP - a device attached to the computer does not work - search for ro

  • How to connect an IDE and SATA drive on my computer

    I run windows XP Pro on my computer, it's a Sata hard drive, I also have to plug an IDE drive, but also a return to the top. Whenever I put the disc in, my computer can not see a reason any. Please help an old man if you would. Thanks in advance for