NM-CUE module Upgrade

Hi,
I am trying to upgrade NM-CUE from current 7.0 to 8.6. Can someone suggest me what is the procedure for the same?

Hi Ronak,
I have downloaded cue-vm-k9.nmx.8.6.1.zip that contains the below files:
1. cue-installer.nmx.8.6.1
2. cue-vm-full-k9.nmx.8.6.1.prt1
3. cue-vm-installer-k9.nmx.8.6.1.prt1
4. cue-vm-k9.nmx.8.6.1.pkg
5. cue-vm-langpack.nmx.8.6.1.pkg
Do you have any document that says the procedure of uploading the files into NM-CUE?

Similar Messages

  • 1861 Inbuilt CUE Module able to be soft activated?

    I was wanting to ask if the inbuilt AIM-CUE module on this ISR (1861) on the SRST/F models (non CUE) can be soft upgraded in the field to support CUE with the proper licensing?  Ours has the RAM and CF card in the units, just no integrated-service-engine shows on boot or on show diag. We were wanting to know is that a firmware limitation or hardware limitation.  Thank You

    I was wanting to ask if the inbuilt AIM-CUE module on this ISR (1861) on the SRST/F models (non CUE) can be soft upgraded in the field to support CUE with the proper licensing?  Ours has the RAM and CF card in the units, just no integrated-service-engine shows on boot or on show diag. We were wanting to know is that a firmware limitation or hardware limitation.  Thank You

  • HR module upgrade 4.6c to ECC 6.0

    Hi Experts,
    I would like to know how is SAP HR module upgrade from 4.6c to ECC 6.0 different from other modules?.
    Whether there are any specific tools needed to upgrade HR Module?.
    I was part of successful upgrades from 4.5b,4.6c to ECC 6.0 where HR module was not involved.
    Best Regards,
    Krishna

    Hi NK,
    You can go through this link:
    http://solutionbrowser.erp.sap.fmpmedia.com/Default.aspx
    Cheers,
    D_F

  • SM-SRE-710-K9 CUE module crashed after uploading mailbox license files

    Kindly find the attached file for the error I am getting after reloading the CUE module.

    Did u eventually got this running, I too have the same problem.
    I am unable to configure the SRE-300-K9, always i have to reset and go to the int ism0/0 and give no shut to bring it up but it comes up in boot loader configuration.
    I tried to install using the guide but after all installation and language selection it keeps saying as payload missing and curl code error 19 and sometimes curl code error 78.
    If u already found some solutions pls share it.

  • Upgrade Many CUE modules in the same time

    Hello,
    We have about 320 branches contain CUEwithout going to every module one by one? modules need to be upgraded from version 7.1.7 to 8.5.1. Is there a way to install all of the modules one shot without upgrading one by one (Please note that we dont have any cisco nms or managment software for such purpose).
    Appreciate your help.
    Thanks,
    Amr Sherif

    Cisco doesn't make such an application, so you would have to write it yourself, or engage a programmer that can do it for you.

  • Error in adapter module Upgrade PI7.11

    Hello,
    After upgrade from XI3.0 to PI7.11,I am trying to adapt code of an adapter module in order to use it in new version.
    I have changed the code ,there were no compilation errors and it was deployed successfully.
    But when trying to test the scenario ,I am getting following error:
    <code>ADAPTER.JAVA_EXCEPTION</code>
                   <text>javax.ejb.EJBException: (Failed in component: sap.com/ValidationModule7.11_EAR) Exception raised from invocation of public com.sap.aii.af.lib.mp.module.ModuleData com.sapcons.xi.af.validation.ValidationModuleBean711.process(com.sap.aii.af.lib.mp.module.ModuleContext,com.sap.aii.af.lib.mp.module.ModuleData) throws com.sap.aii.af.lib.mp.module.ModuleException method on bean instance com.sapcons.xi.af.validation.ValidationModuleBean711@4dee79d1 for bean sap.com/ValidationModule7.11_EARxml|ValidationModule7.11_EJB.jarxml|ValidationModuleBean711 in application sap.com/ValidationModule7.11_EAR.; nested exception is: java.lang.NullPointerException: while trying to invoke the method com.sap.engine.interfaces.messaging.api.MessageKey.getMessageId() of an object loaded from local variable 'msgKey'
    java.lang.NullPointerException: while trying to invoke the method com.sap.engine.interfaces.messaging.api.MessageKey.getMessageId() of an object loaded from local variable 'msgKey'
    I am nowhere using variable 'msgkey' in my code.
    I was using getMessageId() method and because of this error,I have changed the code such that I am not using this method at all.
    After this change ,I have deployed the module again,and the strange part is I am still getting the same error.
    Just to be sure that I have deployed the changed code,I created an altogether new module ValidationModule7.11_EAR(it was ValidationModule_EAR before) and deployed it,I am sure ,I am not using getMessageId() method at all,but I am getting the same error (as mentioned above).
    I have no idea why I am getting the same error.I can see in the error message that my new module is called which doesn't use this method.
    Can anyone please suggest apart from saving the Bean after code changes and redeploying the code,what needs to be done.
    (Rebuilding the project,etc.)
    It would be great if I can get some inputs on this strange behaviour.
    Thanks a lot.
    Best Regards,
    Shweta

    Hello Stefan,
    Thanks for your reply.
    I have created my new module with a different JNDI name.
    Also,I have verified that there is a link to the interface com.sap.aii.af.ifc.facade in application-j2ee-engine.xml .
    This was the code which I was trying to adapt:
    if((MessageContext)inputModuleData.getPrincipalData() instanceof MessageContext)
                    MessageContext messsageContext = (MessageContext)inputModuleData.getPrincipalData();
                    Message message = messsageContext.getMessage();
                    Attachment rootDocument = message.getRootDocument();
                    Object data = rootDocument.getData();
                    if(data instanceof Binary)
                        Binary bin = (Binary)data;
                        request = bin.getBytes();
                        String messageID = "1232";
                        if(dir == Direction.INBOUND)
                            amk = new AuditMessageKey(messageID, AuditDirection.INBOUND);
                        else
                            amk = new AuditMessageKey(messageID, AuditDirection.OUTBOUND);
    But I was getting errors like MessageContext not recognized and also,for the statement:
    Attachment rootDocument = message.getRootDocument();
    I was getting an error in statement :   if(data instanceof Binary) as following imports weren't recognized.
    import com.sap.aii.messaging.lang.Binary;
    import com.sap.aii.messaging.mo.*;
    So I used import com.sap.aii.af.service.cpa.BinaryData; and following code
    Object obj = null;
                   Message message = null;
                   obj = inputModuleData.getPrincipalData();
                              if(obj instanceof BinaryData)
                         message = (Message)obj;  
                        BinaryData bin = (BinaryData)obj;
                        request = bin.getData();
                         String messageID = "1232";
                          amk = new MessageKey(messageID, message.getMessageDirection());                                      
    Code was compiled correctly and deployed ,but I get this error with getMessageId() when I try to test it.You can see I am not using getMessageId() and msgkey anywhere in the code
    Thanks for your help
    Regards,
    Shweta

  • Service module upgrade

    I have a question sometimes someone knows how to upgrade the IOS of the service module ?
    With best regards

    The Release Notes of every IOS/IOS-XE contains detailed instructions on how to upgrade the firmware.  

  • AIM-CUE module

    Hi
    I have installed an AIM-CUE into my 2801 router, but there are some files which am not sure which will work with this AIM-CUE which l have installed into the router 2801. These are files that l have and l need an advise concerning these files because l have the nme and the aim files but the device that l have installed into my router 2801 is AIM-CUE. Advice me on which ones to use pls.
    Ojay
    1 cue-installer.nme.7.0.3
    2 cue-vm-installer-k9.nme.7.0.3.prt1
    3 cue-vm-k9.nme.7.0.3pkg
    4 cue-vm-licence_50mbx_ccm_7.0.3pkg
    5 cue-vm-en_US-langpack.nme.7.0.3prt1
    6 cue-vm-full-k9.nme.7.0.3.prt1
    7 cue-vm-langpack.nme.7.0.3.pkg
    8 cue-installer.nm-aim.7.0.3

    Hi Ojay,
    Here we go
    For NM-CUE, NM-CUE-EC, and AIM-CUE (cue-vm-k9.nm-aim.7.0.x.zip)
    •cue-installer.nm-aim.7.0.x
    •cue-vm-k9.nm-aim.7.0.x.pkg
    •cue-vm-full-k9.nm-aim.7.0.x.prt1
    •cue-vm-installer-k9.nm-aim.7.0.x.prt1
    •cue-vm-langpack.nm-aim.7.0.x.pkg
    http://www.cisco.com/en/US/docs/voice_ip_comm/unity_exp/rel7_0/install/boothelp.html#wp1142398
    And;
    cue-vm-en_US-langpack.nm-aim.7.0.6.prt1
    Release Date: 05/OCT/2010
    Package payload containing all US English language data and prompt files associated with the Cisco Unity Express with VoiceMail application on the AIM-CUE, NM-CUE, and NM-CUE-EC service modules.
    Size: 27537.68 KB (28198577 bytes)
    Cheers!
    Rob
    Please remember to tag your threads and help support "Teachers without Borders"
    https://supportforums.cisco.com/community/netpro/idea-center/communityhelpingcommunity

  • WLAN Module Upgrade for DV6-7030TX

    Hi,
    I'm looking at upgrading the Broadcom 4313GN WLAN module that came with my DV6-7030tx and want to replace it with an Intel Centrino Advanced-N 6230 (part number 670691-001 in the service manual).
    However, I've seen a number of posts in this forum with possible discrepancies between the part numbers listed in service manuals and the actual part.
    For example, when I search for that part (670691-001)on the HP spare parts store, it's listed as "Ralink WLAN Ralink Ripple3 RT5390F_802.11 b/g/n 1x1 PCIe HMC".
    Can anyone advise if I'm actually able to upgrade to an Intel Centrino Advanced-N 6230 as per the service manual?
    Here's a link for the exact product specs: HP Pavlion DV6-7030TX
    Thanks.
    This question was solved.
    View Solution.

    Hi,
    Clearly as an Associate Professor with over 2K of Posts your are a smart Fella/Fellie.
    However there are also some pretty smart people over at My Digital Life and BIOS-Mods.com and other BIOS related web sites who would disagree with you and also seem to have numerous examples of successful "white list removal/modification" Fixes.
    I am personally not advocating the "moding" of your HP BIOS but this "white list" issue is a hot topic on the net and as with many other examples of Hardware Manufacturers throwing down the "gauntlet" to annoyed and often ingenious customers there are not many, if any, examples of the Manufacturers winning these "ha ha you can't mod/hack me" battles.
    Ask Nintendo, Apple, Microsoft, Samsung, HTC, Huawei ets etc.etc.
    HP can not win at this and all they are doing by stopping their paid up customers from updating ONE component of their systems they are just p*&^%$ing people off. Why can we modify our HDD, RAM, Video Card etc but not our WiFi Card??????????
    It certainly annoys me that I buy a new 2012 HP Laptop that in WiFi terms is technologically behind my kids local public school. It even annoys me more when I find that I cannot update that ONE $30- $40 WiFi component because HP has placed code in the system BIOS to block any changes THEY do not want me to make. It is MY LAPTOP. I should be able to change what I want to even without consideration of any so called warranty related issues.
    In contacting HP about the Pavilion DV6 7002AX they do not even want to know about it. Their attitude is they do not officially sell it. It is sold only through retailers. Nothing to do with HP????? It has got HP all over it!!!!!
    If they do not even admit to selling the DV6 7002AX then why are they worried about me changing the "steam driven" WiFI Card they stuck me with?????
    HP can not win this, and I do not believe that the extent of the negative feelings from customers and possible future customers out here in the real world is in any way worth the few extra bucks they are making by screwing customers around.
    I will continue to look for non HP solution because HP does not offer any.
    It is nearly Christmas HP, win a few friends, grow up, and support your customers. Remove the "white lists with new BIOS updates all round.
    I wonder how long this post will take to disappear?
    still crazy after all these years

  • ASA SSM IPS module upgrade won't work

    Hello all,
    I'm trying to upgrade the IPS sig's on an ASA5520 with a SSM IPS module. I'm trying to upgrade the system to 5.1.1 to further upgrade the device with no luck.
    I followed these steps provided by Cisco.com:
    1. Log in to the ASA.
    2. Enter enable mode:
    asa# enable
    3. Configure the recovery settings for ASA-SSM:
    asa (enable)# hw-module module 1 recover configure
    NOTE: If you make an error in the recovery configuration, use the
    hw-module module 1 recover stop command to stop the system reimaging
    and then you can correct the configuration.
    4. Specify the TFTP URL for the system image:
    Image URL [tftp://0.0.0.0/]:
    Example:
    Image URL [tftp://0.0.0.0/]: tftp://10.20.30.40/IPS-SSM-K9-sys-1.1-a-5.1-1.img
    5. Specify the command and control interface of ASA-SSM:
    Port IP Address [0.0.0.0]:
    Example:
    Port IP Address [0.0.0.0]: 11.21.31.41
    6. Leave the VLAN ID at 0.
    VLAN ID [0]:
    7. Specify the default gateway of the ASA-SSM:
    Gateway IP Address [0.0.0.0]:
    Example:
    Gateway IP Address [0.0.0.0]: 11.22.33.44
    8. Execute the recovery:
    asa# hw-module module 1 recover boot
    9. Periodically check the recovery until it is complete.
    NOTE: The status reads "Recovery" during recovery and reads "Up" when
    reimaging is complete.
    AFter #8 it just goes back to the enable prompt. A 'sh module' lists the device as 'recover' and hangs FOREVER.... I tested the TFTP server which the new image resides on, and the TFTP is working fine. I don't see any attempts or downloads from the TFTP server for over an hour.
    I opened a Ciscop TAC on this and not receiving alot of help...
    Please help!!!:)
    Thanks
    Chris Serafin
    [email protected]

    The recovery using this method can takes upwards of 30 minutes, and in some cases even longer.
    How long have you left the SSM in the "recovery" state?
    There may be something wrong in the config you entered. when that happens the SSM can go into a continuous reboot cycle trying to do the recovery.
    Execute "debug module-boot" on the console of the ASA.
    The debug output will show you the ROMMON output of the SSM itself. (The SSM has it's own ROMMON. The recovery boot command sends the settings made during the recover configure command to the SSM's ROMMON).
    If the ROMMON is experiencing a problem in trying to download the tftp image you should now see that ROMMON error message.
    Some typical problems I have seen:
    1) Wrong IP given for the sensor.
    2) Wrong IP given for the gateway (the gateway must exist on the same network as the sensor) this problem usually happens when using a non-standard netmasked network.
    3) Not having the sensor's command and control port plugged into the right network. The external port of the SSM itself is where the IP is being applied. You need to ensure that the extenral port of the SSM is plugged into the right network for that IP.
    4) The tftp server is not reachable from the network where the sensor's command and control port is attached. Some users think that if the ASA itself can reach the tftp server that the SSM will also be able to. This is not always the case. It is best to use a tftp server on the same network as the IP provided to the SSM. Or to test the tftp server from another machine on the same network as the SSM.
    5) The file name is wrong. Check the captialization especially.
    6) The file is not in the default directory on the tftp server. If the file is in a subdirectory you will need to add that subdirectory to the URL:
    tftp://10.20.30.40/subdirectoryname/filename
    7) The tftp is timing out.
    There are 2 things that can cause this:
    a) The tftp server is remote, and it takes too long to download the file. The ROMMON does have limits on the number of retries and per packet timeouts (but they are not user configurable). Try using a tftp server local to the SSM.
    b) The switch that the SSM connects to has spanning-tree running and spanning-tree does not complete before the SSM ROMMON times out for the tftp attempt. The tftp attempt happens immediately upon ROMMON startup and link up. But with a switch the switch port may be in a "Listen" or "Learn" state for 40 seconds before the box can actually talk on the network. In some cases the tftp download attempts started as soon as link up, and may timeout even before the spanning-tree completes. To work around this configure "spanning-tree portfast" on the switchport. Spanning-tree will connect the port into the vlan immediately rather than 40 seconds later.
    If it was a config problem when configuring the recovery settings, then there is a "recover stop" command on the ASA.
    It will stop the reboot cycle from happening.
    Let the module come up with the old image.
    Then correct your "recover configure" settings, and try the "recover boot" again.
    Another alternative:
    Stop the recovery "recover stop"
    Let it boot into the old image.
    If it was a 5.0 version, then you can actually upgrade to 5.1 using the sensor's own CLI "upgrade" command. It is actually the preferred method.
    The "recover" from the ASA will wipe the box clean and load a fresh image.
    The "upgrade" from the sensor will convert your 5.0 config into a 5.1 config while installing 5.1.
    5.1 upgrade file:
    IPS-K9-min-5.1-1g.pkg
    http://www.cisco.com/cgi-bin/tablebuild.pl/ips5
    It can be applied through the sensor's CLI upgrade command, or pushed directly through IDM, or applied by CSM.
    The "recover" should be limited to disaster recovery. When you can't access the SSM at all, or the files on the SSM have been corrupted.
    For normal upgrades you want to use "upgrade" files done through the sensor itelf (CLI, IDM, or CSM).

  • Real Time Module, upgrading Labview 6.02 Base Development System?

    Hi,
    I have Labview 6.02 Base Development System but I need the Real Time module.
    Would it be possible to get it upgrading the Labview 6.02? Is the full development systemm needed?
    Which could be the cheapest way to get Real Time module?
    Thanks.

    You can upgrade to the latest version of LabVIEW Real-Time version 7.1 by upgrading both LabVIEW and LabVIEW Real-Time. You can all about the new features of LabVIEW Real-Time at the following link. For more information, please contact us at .
    Regards,
    Kristi H
    National Instruments
    >

  • 45003 E modules upgrade

    hi every one ,,
    i have a switch 4503 E with the following modules installed on it :-
    Mod Ports Card Type                                          Model             
    ---+-----+--------------------------------------+------------------+-----------
     1     2  Supervisor II+ 1000BaseX (GBIC)        WS-X4013+         
     2    18  1000BaseX (GBIC)                              WS-X4418-GB       
    and i need to upgrade this modules to :-
    ( i'll change module number 2 and install 2 modules of the following :
    2  X    WS-X4606-X2-E                     Catalyst 4500 E-Series 6-Port 10GbE
    my question is : do i have to change any thing else in the switch to accomplish this task ( do i have to change the Supervisor II module ) ?

    Hello, TamerAlDeeb2. 
    The WS-X4606-X2-E is supported on Supervisor Engine e 6-E, Supervisor Engine 6L-E, the Supervisor Engine 7-E, and the Supervisor Engine 7L-E. Supported chassis are Catalyst 4503-E, Catalyst 4506-E, Catalyst 4507R+E, Catalyst 4507R-E, and Catalyst 4510R+E switch chassis. 
    You can install it on any slot as long as it is not a supervisor engine slot, of course. 
    Please send me an e-mail ([email protected]), if you have additional concerns or need more support. Kind regards. 

  • NM-CE-20 Content module - upgrade procedure and ftp help

    Our netmodule has been successfully installed and working. Its currently running 4.2.3 and we would like to upgrade it the latest 5.1.9.5 rev. I cannot find a working procedure for doing this. When I attempt to ftp into the module's IP I get a error stating it can't set guest priviledges. When telneting into the module and doing a "DIR" I get: nothing. Anyone help me out? Is upgrading to the 5.x supported?
    Brian

    To see if the version you want is supported with this hardware, check the release note
    http://www.cisco.com/en/US/products/sw/conntsw/ps491/prod_release_note09186a00802664f0.html#wp107167
    Looks like the 20G module is not listed.
    However it is supported in 5.0.15
    http://www.cisco.com/en/US/products/sw/conntsw/ps491/prod_release_note09186a0080234dcc.html#wp42371
    The upgrade procedure is the same for any ACNS device.
    So, follow the procedure described at :
    http://www.cisco.com/en/US/products/sw/conntsw/ps491/products_configuration_guide_chapter09186a0080131e84.html#1041204
    Regards,
    Gilles.

  • WLAN module upgrade

    I have a laptop model HP ENVY 15t-J000 and Bluetooth mouse HP Z6000. My laptop don't have a Bluetooth adapter. I want to use wireless mouse, but my wlan module don't support Bluetooth. Can I change currently wlan adapter RTL8188EE to Ralink RT3290LE 802.11b/g/n 1x1 WiFi and Bluetooth 4.0 Combo.?

    Yes here is your Service Manual: Your service manual Ralink RT3290LE 802.11b/g/n 1×1 WiFi and Bluetooth 4.0 Combo Adapter for use on all computer models 690020-001 See page 45. While I am pretty sure your model does not have a restrictive whitelist in the BIOS, and you can install any wi-fi card of the correct physical dimensions, the one you want to install is available as an HP Part and the versions with an HP Part number are readily available and no more expensive so that is what you should get: http://www.amazon.com/PCI-Express-Replacement-689215-001-690020-001-699834-201/dp/B00TN6FNMM/ref=sr_1_1?ie=UTF8&qid=1437314650&sr=8-1&keywords=690020-001&pebp=1437314652289&perid=0XP14SXMB4C14XKK44PG This is a simple upgrade since your model has an easy access panel on the bottom to get at the wireless card. If this is "the Answer" please click "Accept as Solution" to help others find it. 

  • GT72 MXM module upgrade - GTX970m

    Hello again;
    Can anybody from MSI confirm if this upgrade will work inside the GT70 2PC Dominator Pro (MS-1763).  My main concern is if the included thermal assembly module will fit.
    Thanks
    Jamie

    I totally understand you concern over what modifications need to be made, and how the upgrade will affect system stability.
    I recommend updating your system BIOS to MSI latest version first.
    http://www.msi.com/support/nb/GT70-2PC-Dominator.html#down-bios&Win7 64
    Follow MSI instructions on this page to the T!  It does say that you should update to version .10V before version .118!  This will prevent you bricking your notebook.  MSI updated their BIOS updating procedure in the .10V update.  If you fail to have this updated procedure, and attempt to flash a newer version, upon reboot your laptop will be bricked and will be required to be sent into MSI.
    Again, FOLLOW THEIR INSTRUCTIONS.  There is a PDF guide on how to flash the BIOS at the bottom of the page.  Its easy enough, but just follow it.
    As to your question if the GT72 upgrade kit would work.  Yes, the card will work, no the heatsink will not work.  The heatsink is made for a GT72, logic here says that no it will not work as the laptops have different chassis layouts. 
    If you want to avoid the dremel ....
    http://www.ebay.com/itm/MSI-Heatsink-Nvidia-GTX-970m-GTX-980m-MSI-GT780-GT70-MS-1761-MS-1762-MS-1763-/321688321258?pt=LH_DefaultDomain_3&hash=item4ae61e3cea
    This is a GT60/GT70 MSI 970m/980m fully compatible heatsink.  This heatsink works in any GT60/70, GX660, GX60, GT683, GT780/783, as they all share the exact same chassis layout and have not changed over the past few years.  Buying this stupid expensive heatsink would alleviate the need for any modding/dremeling of your current heatsink.  Of course the seller knows this heatsink if sought after, and therefore has a ridiculously inflated price.  But this is 100% plug and play. 
    As far as which driver is stable, not sure what you mean.  All of the drivers that support a 970m are stable and compatible.  You should not ever have any issues that any other laptop with a 970m doesn't have or any sort of compatibility issues with any games, again, unless its a common problem with all 970m GPUs. 
    Goodluck and have fun with the upgrade!

Maybe you are looking for