Updated controller but not showing right version

I just updated my 4404 controller with 7.0.116.0.
After I rebooted and check the version number on the monitor page, it tells me its still version
7.0.98.0. The weird thing is, is that the Emergency Image Version is what changed to version 7.0.116.0.

Check your swapped image: Check the WLC part towards the bottom. This will be a place to start ..
Iblogged about this a bit ago ..
http://www.my80211.com/cisco-wlc-cli-commands/
Controller and Access Point Image Swap
Access Point - Swapping the image can done by a single access point or by all access points
(WiSM-slot8-2) >config ap image swap all
(WiSM-slot8-2) >show ap image all      
Total number of APs.............................. 2
Number of APs
Initiated............................................ 0
Predownloading.................................. 0
Completed predownloading.................. 2
Not Supported.................................... 0
Failed to Predownload.......................... 0
AP Name            Primary Image  Backup Image   Status          Version        Next Retry Time  Retry
TEST1                        7.0.98.0            6.0.196.159    Complete        7.0.98.0       NA               NA        
TEST2                        7.0.98.0            6.0.196.159    Complete        7.0.98.0       NA               NA        
Controller- Swapping the image on the controller
(WiSM-slot8-2) >config boot primary (backup)
(WiSM-slot8-2) >show boot          
Primary Boot Image............................... Code 7.0.98.0 (active)
Backup Boot Image................................ Code 6.0.196.159

Similar Messages

  • Exchange 2010 SP3 Rollup 7 not showing right version

    I have installed Rollup 7. I can see it in programs installed / updates
    but when I check the version number via the shell or console it show the number corresponding to sp3 no rollups
    tried to re install rollup7, but it fails 

    There is:
    Update Rollup 8 for Exchange Server 2010 SP2,
    and Update Rollup 8 for Exchange Server 2010 SP1
    But, as far as I know, there is no Update Rollup 8 for Exchange Server 2010
    SP3 yet.
    Please take a moment to Vote as Helpful and/or Mark as Answer where applicable. Thanks.
    That's correct Idan.  Exchange 2010 SP3 RU7 is the latest - released in August this year:
    http://blogs.technet.com/b/rmilne/archive/2014/08/26/exchange-2010-sp3-ru7-released.aspx
    Just like in Exchange 2003 & 2007 only service packs increment the version # you see in the management console and shell.  Check the exsetup file as mentioned in the first post Idan linked.
    Cheers,
    Rhoderick
    Microsoft Senior Exchange PFE
    Blog:
    http://blogs.technet.com/rmilne 
    Twitter:   LinkedIn:
      Facebook:
      XING:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Installed windows 10 and updated drivers but not showing on my computer.

    after installing windows 10 on my desktop, i went to the HP website to download my drivers for my printer.  It is not recognizing my printer on my computer.  what do i do?  it says it is offline....

    Hello sigmarwolf,
    It sounds like you are wanting to download your purchases made from your iPad onto your computers iTunes library. This article should help you do that named:
    Download past purchases
    http://support.apple.com/kb/ht2519
    You can also enable automatic downloads on your PC in your iTunes preferences:
    Open iTunes.
    If you haven't already, authorize your computer for use with your Apple ID by choosing Store > Authorize This Computer. Learn more about iTunes Store authorization.
    For Mac computers: Choose iTunes > Preferences and click the Store tab.
    For Windows computers: Choose Edit > Preferences and click the Store tab.
    You can enable Automatic Downloads2 for Music, Apps, or Books under Automatic Downloads.
    iTunes Store: How to enable Automatic Downloads
    http://support.apple.com/kb/ht4539
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • App Store not showing app version number anymore.

    I noticed that starting from a few weeks back, Apps with new updates in the 'Updates' tab do not show the version number of the app. Now only the app size in MB and 'What's New' is shown.
    Anybody can shed light on this ?
    Thanks.

    It is not in the Applications folder?
    Otherwise, I would suggest the Combo update
    http://support.apple.com/kb/dl1399

  • In the slide show view how can you pin the "next" Arrow to the ultimate edge so it is in the same place as the full screen image, it will pin to the left edge but not the right.

    In the slide show view how can you pin the "next" Arrow to the ultimate edge so it is in the same place as the full screen image, it will pin to the left edge but not the right.

    Hello,
    Please make sure that the next button is pinned to the right side as there in the attached image.
    If it is already pinned, you can try removing any embedded HTML code and checking it.
    Regards,
    Neha

  • Just downloaded PDF Editor Pro, version 3.7.0, but it wasn't working. I checked for updates; none, but it showed "an error has occurred."  What do I do?

    Just downloaded PDF Editor Pro, version 3.7.0, but it wasn't working. I checked for updates; none, but it showed "an error has occurred."  What do I do?

    You should check the developer's website.

  • TableView Context Menu Item shows up when run on Java 8 until update 5 but not on later ones

    The code below runs as its name says on Java 8 update 5 but not on later ones:
    public class TableViewShowingOnlyAnAppendContextMenuItemIfRowIsEmptyElseDeleteIsIncluded extends Application {
        private final TableView<Name> table = new TableView<>();
        private final ObservableList<Name> data = FXCollections.observableArrayList(new Name("Jacob"),
                new Name("Isabella"), new Name("Ethan"), new Name("Emma"), new Name("Michael"));
        public static void main(String[] args) {
            launch(args);
        @Override
        public void start(Stage stage) {
            TableColumn<Name, String> column = new TableColumn<>("Name");
            column.setCellValueFactory(new PropertyValueFactory<>("name"));
            table.getColumns().add(column);
            table.setItems(data);
            ContextMenu contextMenu = new ContextMenu();
            contextMenu.getItems().add(new MenuItem("append"));
            table.setContextMenu(contextMenu);
            table.setRowFactory(tableView -> {
                TableRow<Name> row = new TableRow<>();
                row.contextMenuProperty().bind(
                        Bindings.when(Bindings.isNotNull(row.itemProperty()))
                                .then(showOnlyAppendContextMenuItemIfRowIsEmptyElseIncludeDelete())
                                .otherwise((ContextMenu) null));
                return row;
            Scene scene = new Scene(table);
            stage.setScene(scene);
            stage.show();
        private ContextMenu showOnlyAppendContextMenuItemIfRowIsEmptyElseIncludeDelete() {
            ContextMenu rowMenu = new ContextMenu();
            ContextMenu tableMenu = table.getContextMenu();
            if (tableMenu != null)
                rowMenu.getItems().addAll(tableMenu.getItems());
            rowMenu.getItems().add(new MenuItem("delete"));
            return rowMenu;
        public static class Name {
            private final SimpleStringProperty name;
            private Name(String name) {
                this.name = new SimpleStringProperty(name);
            public String getName() {
                return name.get();
            public void setName(String name) {
                this.name.set(name);
    Can help me find the error in the code? Or if there is none, is this a regression that should be submitted? As of now, all the PCs in use have 8u5.
    Thanks in advance.

    Correctly answered by James_D:
    http://stackoverflow.com/questions/28195552/javafx-tableview-context-menu-item-shows-up-when-run-on-java-8-until-update-5-bu
    pasted below:
    The fix is to create new menu items that are copies of the ones in the table's context menu:
    private ContextMenu showOnlyAppendContextMenuItemIfRowIsEmptyElseIncludeDelete() {
    ContextMenu rowMenu = new ContextMenu();
    ContextMenu tableMenu = table.getContextMenu();
    if (tableMenu != null) {
    for (MenuItem item : tableMenu.getItems()) {
    MenuItem rowItem = new MenuItem(item.getText());
    rowItem.setGraphic(item.getGraphic());
    rowItem.setOnAction(item.getOnAction());
    rowMenu.getItems().add(rowItem);
    rowMenu.getItems().add(new MenuItem("delete"));
    return rowMenu;

  • My 5th gen nano will not sync win 7 .says connected but not show in itunes. driver is updated ,working properly ....help

    my 5th gen nano ,has updated driver ,working properly. ipod connected but not showing in itunes ?

    By the way, I totally restored everything. It was ok. It starts to 'unrecognize' my iPod Classic when it comes to synching with iPhoto. After this happened all the menus disappeared from my iPod (music, Podcasts, movies synched fine). It seems to be a problem when synching with iPhoto. It was the same thing before.

  • Apps showing in library but not showing up in devices i pod- sync apps list. ...pls help

    apps showing in library but not showing up in devices i pod- sync apps list. ...pls help
    id: [email protected]

    Are the apps checked to be synced to the iPod and did you click on the sync button in Tunes?
    Were the apps purchased fro the same accoubnt signed into in the iPod?
    Are the apps compatible witht he iPOd model and iOS version?
    Do you have restrictions set that prohibit instaling apps?

  • Quicktim VR Controller is not showing eventhough it is set to true

    The controller is not showing up for me when I embed a Quicktime file.
    Here is the URL:
    http://www.mack-cali.com/props/tour/?propid=NY
    The controller is set to "true" but still not showing. Is there some way to troubleshoot this?
    Please Help.
    Thank You,

    http://www.mack-cali.com/props/quicktime/movies/NY-movie-1.mov
    You've forgotten to add the required height and width code. If you want to display your file at a smaller size your need to add aspect="true".
    Be sure to add 16 pixels to the movie height to allow room for the controller.

  • Update Record Does Not Show in Server Behaviors Pane

    I am using Dreamweaver CS4 on a Windows 7 machine. I am coding in ASP VBScript. When I apply an Update Record behavior to a form and upload the file to the server, it works fine. However, the Update Record does not show in the Server Behaviors pane. Therefore, I cannot click on it to make further edits to it. When I open this same file in Dreamweaver CS3 on a Windows XP machine, I do see the Update Record behavior in the Server Behaviors pane and I can click on it to make it edits. What do I need to do to get the Update Record behavior to show?

    Probably not the answer you are looking for, but support for traditional ASP has not been a focus of DW development, nor has it been for Windows 7 for
    that matter. ASP is a "depreciated" language and support for it is dwindling. The I don't know exact reason for what is happening to you here, but I'd imagine it's an issue with CS4s translators and the combination of the feature sets in both Win 7 and CS4 not "worrying" about ASP as much as they used to.
    Lawrence Cramer  *Adobe Community Professional*
    www.Cartweaver.com
    Complete Shopping   Cart Application for
    Dreamweaver, available in PHP and CF
    Stay updated - http://blog.cartweaver.com

  • HT4623 How can I update ios if "software update" option is not showing on the page "General"?  On my Iphone, it only show "About" and "Usage" next to each other.

    How can I update iOS 4.2.1 to the latest iOS if "software update" option is not showing on the page "General"? On my Iphone, it only show "About" and "Usage" . Please help.

    See the chart below to determine whether you can upgrade your device and what you can upgrade to.
    IPhone, iPod Touch, and iPad iOS Compatibility Chart
         Device                                       iOS Verson
    iPhone 1                                      iOS 3.1.3
    iPhone 3G                                   iOS 4.2.1
    iPhone 3GS                                 iOS 6.1.x
    iPhone 4                                      iOS 6.1.x
    iPhone 4S                                    iOS 6.1.x
    iPhone 5                                      iOS 6.1.x
    iPod Touch 1                               iOS 3.1.3
    iPod Touch 2                               iOS 4.2.1
    iPod Touch 3                               iOS 5.1.1
    iPod Touch 4                               iOS 6.1.x
    iPod Touch 5                               iOS 6.1.x
    iPad 1                                          iOS 5.1.1
    iPad 2                                          iOS 6.1.x
    iPad 3                                          iOS 6.1.x
    iPad 4                                          iOS 6.1.x
    iPad Mini                                     iOS 6.1.x
    =====================================
    Select the method most appropriate for your situation. If you are trying to upgrade to iOS 5 or higher, then you will have to connect your device to your computer and open iTunes in order to upgrade.
    Upgrading iOS
       1. How to update your iPhone, iPad, or iPod Touch
       2. iPhone Support
       3. iPod Touch Support
       4. iPad Support
         a. Updating Your iOS to Version 6.0.x from iOS 5
              Tap Settings > General > Software Update
         If an update is available there will be an active Update button. If you are current,
         then you will see a gray screen with a message saying your are up to date.
         b. If you are still using iOS 4 — Updating your device to iOS 5 or later.
         c. Resolving update problems
            1. iOS - Unable to update or restore
            2. iOS- Resolving update and restore alert messages

  • Wism controller does not show url redirection spalash page

    Hi 
    Wism controller does not show url redirection/splash page .
    client takes the ip from the  dhcp server. when browsing its not going to the authentication page as usual
    Thank you 

    Can you elaborate on your issue... really hard to follow.  To me, it seems like you want to use a guest splash page.  The client associates to the open guest ssid and get's an ip address.  Now the user has to open a browser to get the portal page correct?  This has nothing to do with the WLC, but the OS on the device.  Some devices can detect if no internet is present after authentication and obtaining an address.  This means the device will automatically open a browser to present the user with the splash page.  Other devices will require the user to open a browser to get the login screen.
    Scott

  • After the latest update Firefox does not show TRANSLATE THIS link on facebook

    After the latest update Firefox does not show TRANSLATE THIS link on facebook. I have many posts from Brazil but now they can not be translated since the link is missing. How to fix?

    See also:
    *https://addons.mozilla.org/firefox/addon/google-translator-for-firefox/
    *http://labs.microsofttranslator.com/bookmarklet/
    *http://googlesystem.blogspot.com/2009/11/google-translation-bar.html

  • NAC reports "Windows Update Agent is not the correct version"

    We just switched from CAM validation to Windows Update validation using NAC agent 4.7.2.10 (Clean access) and are begining to see lots of 64 bit Vista/Win7 machines with the "Windows Update Agent is not the correct version" issue.  We have 9 cases in less than a day and growing fast.
    Is there a resolution for this issue? Suggestions anyone?

    Hi Sam,
    I'm having the same issue, but on Windows 7 32-bits machines.  Were you able to overcome this problem?... I haven't been able to identify a pattern on machines that prompt "Windows Update Agent is not the correct version", but it happens randomly.  Our workaround is to reboot the machine, and then Agent completes posture validation without any prompt.

Maybe you are looking for

  • Calling stored procedure from unix shell script

    Hello, I am facing a problem while calling a stored procedure from UNIX shell script. I want to return a output variable from the stored procedure to the UNIX environment. Here is the code- #!/bin/sh OUTPUT=`sqlplus cmag/magnum@dw <<ENDOFSQL set serv

  • Error in uploading xml podcast listing

    Using ITunes to upload my xml feed to Itunes so we can get listed. I get this error: Error parsing feed Invalid XML Error on Line 65: The Element type "item" must be terminated by the matching end-tag "</item> Now I looked at my xml feed - it looks f

  • Reader XI has suddenly stopped loading any images in pdf's.  Any idea why?

    Reader XI has suddenly stopped loading any images in pdf's.  Any idea why?

  • JMS with IBM websphere

    Dear friends, i am studying JMS and its concepts. I copied two sample programs for sending messages and receiving messages. I am using Queue. I configured connection factories and Queue in Websphere JMS Provider. Also both files were complied properl

  • Creating new records in list view

    Hi, We have a requirement to allow creation/editing of records in the list view for Accounts/Opportunities. Can anyone provide clues to how this may be achieved in CRM 5.0 PCUI? Thanks Sujon