"Update for raid controller firmware" in availabel system upgrade does not go away after upgrade

We have two Ironport WSA, one S360 and one S370. Both stil have the "Update for raid controller firmware" still listed in "Available upgrades" even though we have done the update and rebooted the appliances.
How can we confirm that the update is applied?
If it is and the notice is still there how do we get rid of the reminder?

Go to the command line of the appliacne and run "version"
That will show you the current version of the firmware.
If you have record of what was there, you can compare...
Otherwise contact TAC, they can verify that you have the up-to-date version and pull your serial from the distribution list so you don't see it any more.
Ken

Similar Messages

  • I need to update my nikon D800 firmware but my Macbook Pro does not load a mass storage icon in my desktop, so, how can I update it if I can't get into the CF card pastes?

    I need to update my nikon D800 firmware but my Macbook Pro does not load a mass storage icon in my desktop, so, how can I update it if I can't get into the CF card pastes?

    I'd say your sister messed up and your iPod is toasted.
    Think about it...  She plugged it in to another computer, she doesn't remember what she did (yeah, right), and now your iPod is not being recognized by your computer... 
    Also take into consideration how old is your sister, and how much does she know about electronics?

  • "pending updates" status does not go away after updating apps

    When I download app updates to my computer (Windows 7) via iTunes and then sync to either my iphone or ipad (iOS 8.1.2), the updates actually install and the apps can then be opened. However the status of the applications in the App Store remains as "pending updates", and the badge notifications do not go away, even if I do a hard reboot. If I update over wifi, there is no issue. This is very annoying. Any suggestions?

    Ok since my last post the notifications does not go away on its own. There has to be a way to remove that...

  • After updating my MBP to firmware 1.1 my internet does not work anymore

    Please help,
    A couple of days ago my MBP asked me if I wanted to update to Firmware 1.1 and I did. I followed the steps like it said and when I restarted it my internet was not working anymore. I called my internet provider and they tried helping me but no luck.They gave me the codes and I tried to set up the PPP address and other codes.
    I am using a DSL cable and a Ethernet connection.
    Does anyone know how I could solve this?
    Thanks!

    Try resetting your iPad:
    Double click the Home button. Slide up with one finger on ALL your apps to close them.
    Then, Press the Sleep/Wake button + Home button and hold 15 seconds or until you see the Apple logo.
    This will reset your device without erasing data, apps or settings.

  • Download notification for Security Update 2014-002 does not go away after update

    I have downloaded the Security Update 2014-002 4 times tonight, it shows up in the downloaded and installed list, but it still is showing up as an update ready to download. I restarted my machine each time, but it still is showing up in the update notifications. Can anyone help?
    Thanks,
    George

    Go to the command line of the appliacne and run "version"
    That will show you the current version of the firmware.
    If you have record of what was there, you can compare...
    Otherwise contact TAC, they can verify that you have the up-to-date version and pull your serial from the distribution list so you don't see it any more.
    Ken

  • IPhone 4s does not trust iMac after upgrade to Snow Leopard. I am using my iPhone's hot spot for internet connection.

    Can't sync iPhone and iMac since upgrading to Snow Leopard. Using iPhone for internet access. Help??

    Hello Brad:
    First, forget about a virus. There are NO documented viruses that affect a Mac running OS X - none.
    Do you have about 10-15% of the HD free at all times?
    Open activity monitor and see what is taking the processor capacity.
    Barry

  • "Waiting for RAID Controller F/W to become ready..."

    Hello
    Lately I have been getting this message more often than not -- before Windows 7 (not) booting:  "Waiting for RAID Controller F/W to become ready..."
    Any suggestions?
    I have a
    Areca  ARC-1680D-IX 12-ports SAS RAID
    Thanks
    Rowby

    We sell and use these now:
    http://www.intel.com/products/server/raid-controllers/RS2BL080/RS2BL080-overview.htm
    http://www.intel.com/products/server/raid-controllers/RS2PI008/RS2PI008-overview.htm
    But they have more here: http://www.intel.com/products/server/raid/index.htm
    They also use LSI chips like Areca and Atto.
    Eric
    ADK

  • Qosmio F30: Need 64bit driver for RAID controller

    Can anyone help me???
    Please!
    I have Qosmio F-30.
    Where can i find 64-bit driver for raid controller?
    Is it exists somewhere?
    Please, help me!!!

    Unfortunately, the XP 64bit drivers are very rare and on the Toshiba driver page you will not find any.
    Possibly because Toshiba does not deliverer any notebooks with OS XP 64bit.
    See only one way to find one; google for 64 bit DAID driver and maybe you are successful
    Good luck

  • C# compiling error: 'System.Array' does not contain a definition for 'Select' and no extension method 'Select' accepting a first argument of type 'System.Array' could be found (are you missing a using directive or an assembly reference?)

    Hello experts,
    I'm totally new to C#. I'm trying to modify existing code to automatically rename a file if exists. I found a solution online as follows:
    string[] allFiles = Directory.GetFiles(folderPath).Select(filename => Path.GetFileNameWithoutExtension(filename)).ToArray();
            string tempFileName = fileName;
            int count = 1;
            while (allFiles.Contains(tempFileName ))
                tempFileName = String.Format("{0} ({1})", fileName, count++); 
            output = Path.Combine(folderPath, tempFileName );
            string fullPath=output + ".xml";
    However, it gives the following compilation errors
    for the Select and Contain methods respectively.:
    'System.Array' does not contain a definition for 'Select' and no extension method 'Select' accepting a first argument of type 'System.Array' could be found
    (are you missing a using directive or an assembly reference?)
    'System.Array' does not contain a definition for 'Contains' and no extension method 'Contains' accepting a first argument of type 'System.Array' could be
    found (are you missing a using directive or an assembly reference?)
    I googled on these errors, and people suggested to add using System.Linq;
    I did, but the errors persist. 
    Any help and information is greatly appreciated.
    P. S. Here are the using clauses I have:
    using System;
    using System.Data;
    using System.Windows.Forms;
    using System.IO;
    using System.Collections.Generic;
    using System.Text;
    using System.Linq;

    Besides your issue with System.Core, you also have a problem with the logic of our code, particularly your variables. It is confusing what your variables represent. You have an infinite loop, so the last section of code is never reached. Take a look 
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.IO;
    namespace consAppFileManipulation
    class Program
    static void Main(string[] args)
    string fullPath = @"c:\temp\trace.log";
    string folderPath = @"c:\temp\";
    string fileName = "trace.log";
    string output = "";
    string fileNameOnly = Path.GetFileNameWithoutExtension(fullPath);
    string extension = Path.GetExtension(fullPath);
    string path = Path.GetDirectoryName(fullPath);
    string newFullPath = fullPath;
    string[] allFiles = Directory.GetFiles(folderPath).Select(filename => Path.GetFileNameWithoutExtension(filename)).ToArray();
    string tempFileName = fileName;
    int count = 1;
    //THIS IS AN INFINITE LOOP
    while (allFiles.Contains(fileNameOnly))
    tempFileName = String.Format("{0} ({1})", fileName, count++);
    //THIS CODE IS NEVER REACHED
    output = Path.Combine(folderPath, tempFileName);
    fullPath = output + ".xml";
    //string fullPath = output + ".xml";
    UML, then code

  • Getting this:You cannot install Security Update 2011-002 on this volume. This volume does not meet the requirements for this update?

    I am getting this message: You cannot install Security Update 2011-002 on this volume. This volume does not meet the requirements for this update?
    is there a way to install this update?

    Hello
    More information would be useful, for example which Mac OS are you running.
    On the left menu item  About this Mac provides useful information.
    Also did you use Software Update to determine the update?
    Using Software Update can ensure you download and install the correct package for your particular Mac and OS version.

  • HT5429 when will a major update for maps be released? i'm sick of not being able to navigate at all

    when will a major update for maps be released? i'm sick of not being able to navigate at all

    This is a user forum. No one here would have an answer for that.

  • How do I adjust double click speed in Mountain Lion. The mouse system preferences does not seem to have a speed slider for double clicking. Only the tracking speed slider is visible.

    Double clicking is no longer opening my folders.
    How can I adjust the double click speed in Mountain Lion to reduce the double clicking speed. The mouse system preferences does not seem to have a speed slider for double clicking. Only the tracking speed slider is visible.

    For 10.8.3,  it's in System Preferences > Accessiblity > highlight Mouse & trackpad on the left.  The Double click speed slider shows on the right.  Moving it to the left gives you more time between clicks.  Moving it right gives you less time.

  • HT2434 does anybody know what happens if I dont update the firmware of my macbook pro (does not have a guid partition scheme))

    does anybody know what happens if I dont update the firmware of my macbook pro (does not have a guid partition scheme)?

    Apple will hire a high school girls clique to follow you around, make fun of you & post disparaging comments on Facebook .

  • Update was terminated - Class PO - Number 366 - Device ARCH does not exist

    Dear Gurus,
    We are using Automatic PO generation through ME59, we also applied one SAP note to pick the custom document type through ME59 (normally the system pick NB as standard document)
    In  MN05 - if i set as default output type 1 - print ( then the document is generating with the correct document with correct number range)
    But if i set in MN05 - default output as 2 - fax ( then i am getting this Update was terminated - Class PO - Number 366 - Device ARCH does not exist).
    Please advice
    Regards
    RS

    Dear Friend,
    Output determination for fax is not done properly. check the device connnectivity.
    SPRo>>Maintain Message type of PO
    For the particular document type - i have removed the default PO Print out settings - now its working fine. Is this the right way?
    Please advice
    RS

  • Hi, I Would like to know what I need to do to make work iWork"09 with my portable which has mac OS Lion 10.7.5 ; it does non open it because it says I need to do some updates but how can I do it if it does not open it ?

    Hi,
    I Would like to know what I need to do to make work iWork"09 with my portable which has mac OS Lion 10.7.5 ; it does non open it because it says I need to do some updates but how can I do it if it does not open it ?
    Thank You

    WILL ANYONE ANSWER MY QUESTION?  WHAT DO I HAVE TO DO TO GET A REPLY FOR MY CONUNDRUM/

Maybe you are looking for