How to get Exchange 2010 Product Keys from an existing installed servers

hi All,
we are facing some kind of critical issues. we had 3 MB servers . the two servers are in DAG all our productions DB's running in DAG. the DAG servers are crashed due to hardware issues. one server is acting as archival server. all servers are running exchange
2010 sp3. 
now we are trying to rebuild new servers to restore DB's. the new servers is prompting the product key to be entered. unfortunately we don't have product keys of exchange 2010. since we are gold partner we have partner network portal. when i tried to get
the product key from portal am able to see only 2013 keys. we called up Microsoft and explained but no use. they said we have to use exchange 2013. but we cant simply go ahead and migrate. 
but the only option is we have exchange 2010 installed servers they all act as CAS/HUB server with the same licence. please let me know how do i retrieve exchange 2010 product keys from an existing servers. Please advise me its very critical.
can we get the product keys through some kind of scripts?
Thanks, Venkatesh. "Hardwork Never Fails"

Hi,
For this issue, I recommend you contact Microsoft customer service to consult this question. Thanks for your understanding.
Best regards,
Belinda
Belinda Ma
TechNet Community Support

Similar Messages

  • How to get Exchange 2010 database size c#

    I'm trying to get smallest Exchange database in my Exchange 2010 server using remote session.
    I successfully connect to my exchange server and get database with properties. Some of them with value, but Properties "DatabaseSize" with Null value for each of them.
    Did some body be able to get database size value?
    For me important to use URI to connect Exchange DAG.
    Part of my code below:
    static void Main(string[] args)
    string exchangePowershellRPSURI = "http://my.domain/powershell?serializationLevel=Full";
    PSCredential credentials = (PSCredential)null;
    //Provides the connection information that is needed to connect to a remote runspace
    // Prepare the connection
    WSManConnectionInfo connInfo = new WSManConnectionInfo((new Uri(exchangePowershellRPSURI)),
    "http://schemas.microsoft.com/powershell/Microsoft.Exchange", credentials);
    connInfo.AuthenticationMechanism = AuthenticationMechanism.Kerberos;
    connInfo.SkipCACheck = true;
    connInfo.SkipCNCheck = true;
    connInfo.SkipRevocationCheck = true;
    // Create the runspace where the command will be executed
    Runspace runspace = RunspaceFactory.CreateRunspace(connInfo);
    // Add the command to the runspace's pipeline
    runspace.Open();
    //Represents the base functionality of a pipeline that can be used to invoke commands
    Pipeline pipeline = runspace.CreatePipeline();
    Command getMDB = new Command("Get-MailboxDatabase");
    getMDB.Parameters.Add("Identity", "*");
    getMDB.Parameters.Add("Status", null);
    pipeline.Commands.Add(getMDB);
    Collection<PSObject> select = pipeline.Invoke();
    if (select.Count > 0)
    foreach(PSObject obj in select)
    var db = obj.Properties["DatabaseSize"].Value;
    string name = obj.Properties["Name"].Value.ToString();
    Console.WriteLine("Database Name: {0} Size: {1}", name, db);
    else
    Console.WriteLine("Failed to create email account");
    runspace.Dispose();
    Console.ReadLine();

    I found solution of my problem by myself. I just changed in string
    getMDB.Parameters.Add("Status", null);
    "null" to "true" like this:
    getMDB.Parameters.Add("Status", true);
    Now everything work fine for me.

  • How to get value of some key from Registry Edit in a Java class?

    Hi,
    I want to write a program which needs to access the value for HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment\1.6.0\MSI' paths 'INSTALLDIR' key's value.
    Does anybody have pointers on this?
    Thanks In Advance,
    Kalyani.....

    hi,
    this is the code i am employing and i want to know why i am failing:
    import com.ice.jni.registry.Registry;
    import com.ice.jni.registry.RegistryException;
    import com.ice.jni.registry.RegistryKey;
    import com.ice.jni.registry.RegStringValue;
    import com.ice.jni.registry.RegistryValue;
    * @author ayesha
    public class ReadingRegistryValueFromRegistry {
         private static String TOP_KEY_NAME="HKEY_LOCAL_MACHINE";
         private static String KEY_NAME="SOFTWARE\\JavaSoft\\Java Development Kit\\1.5.0_08 ";
         private static String ARG_KEY="JavaHome";
         * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
    System.out.println(getGMDBPathFromRegistry()+"111111111111111111111111111111111111111111111111111111111");
         private static String getGMDBPathFromRegistry(){
              String gmDBPath=null;
              RegistryKey topKey=null;
              String topKeyName=TOP_KEY_NAME;
              //System.out.println(topKeyName+"33333333333333333333topkeyname");
              String keyName=KEY_NAME;
              //System.out.println(keyName+"5555555555555555555555555555555keyName");
              String argKey=ARG_KEY;
              //System.out.println(argKey+"66666666666666666666666666666666666666666666666666666666argKey");
              topKey=Registry.getTopLevelKey(topKeyName);
              System.out.println(topKey+"somethingsomething");
              if(topKey==null){
                   return gmDBPath;
              RegistryKey subKey=Registry.openSubkey(topKey,keyName,RegistryKey.ACCESS_READ);
              try{
              System.out.println(subKey.toString()+"value i got in here");
              catch(Exception e){
                   System.out.println(e.getCause().toString());
              if(subKey==null){
                   return gmDBPath;
              try{
                   gmDBPath=subKey.getStringValue(argKey);
              catch(RegistryException ex){
                   return gmDBPath;
              return gmDBPath;
    I want to read from the registry entry the value of java.
    Any suggestions are eagerly awaited.
    ayesha.

  • How to retrive Exchange product key from the Installed Exchange Servers

    How do I retrieve the Product key from an existing installed exchange servers.

    Right. Think of the security implications if you could just grab the key from the software itself.
    Do any software products allow that?
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • How to get Driver and url names from a connection pool

    Hi,
    How to get the DriverName and URL from an existing pool, If I know the name of
    connection pool ? Is it possible to know the name of related pool , if I know
    the name of datasource?
    Thx
    Manish

    hi
    there are 2 ways:
    url must be: jdbc:weblogic:pool[:connectionPoolID]
    or
    jdbc:weblogic:jts[:connectionPoolID] (if you want to use jts with your JDBC connection.)
    see http://e-docs.bea.com/wls/docs60//javadocs/weblogic/jdbc/pool/Driver.html
    However, I think it is safer to configure and use DataSource to get connection.
    Nicolas
    "kumar" <[email protected]> wrote:
    >
    Hi,
    How to get the DriverName and URL from an existing pool, If I know the name
    of
    connection pool ? Is it possible to know the name of related pool , if I
    know
    the name of datasource?
    Thx
    Manish

  • How to install Vista using product key from bottom of Satellite P200?

    Hello all,
    I recently had to replace my HDD as my P200 had a fatal error, corrupting all data on the old HDD. I have no recovery discs at all, (None were supplied), and wondered how i am supposed to re-install Vista using my product key from the bottom of the laptop? Can anybody give any kind of assistance please?
    As i have been reading other related threads i get the impression that i need to approach Toshiba and buy a recovery CD, at my expense. Is this correct?
    Thanks
    Lee

    Hi
    As far as I know the serial key which is placed at the bottom of the unit would not work with other Vista versions! the key belongs to the OEM Vista version preinstalled by Toshiba.
    As mentioned by Jeka, you will need to order an recovery disk or will need to use an clean Vista CD with an own serial key purchased previously.
    Greets

  • Win 8 product key and a pre-installed Lenovo Ideapad Yoga 13, how to get it?

    Hello
    I live in Finland and I have read previously that these Windows 8 product keys are now linked somehow with motherboard´s BIOS systems, so we actually don´t need to know our product codes anymore.
    Well, in some cases we do need to know them.
    My Windows asked me once if I want to install a new version to get some new features, the same procedure can be launched by going to your Control panel, selecting System and selecting the top option where it says you could update to a new version to unlock new features.
    This requires a 25-digit Windows 8 product key. Which we Yoga 13 owners do not have, as it is somewhere in the BIOS, hidden from us.
    How can I give my product key to this field if I do not know it?
    1. Called to Microsoft
    I tried contacting Microsoft Finland about this, but their automatic phone service stated it was none of their concern as it is a pre-installed system, and therefore I need to contact Lenovo straight. I tried to get a person to talk to, but I got none. Always an automatic service. I called to their switch (is this the right word?) to ask if I could get a person to talk to, but the number she forwarded me to always got to an automatic robot, again.
    2. Lenovo Customer support
    Well, Lenovo directs customers to this forum from their customer service web page, so I hope some Lenovo employee can finally answer this question, please. I value customer service, and getting an answer from another forum using customer is not really customer service when they suggest using some 3rd party software to maybe get your windows 8 key with a method that may not be the most fancy way if asked from Microsoft. Lenovo Finland in Espoo (near Helsinki, contacts here: http://www.fonecta.fi/yritykset/Espoo/792365/Lenovo+Finland) has a phone number that hangs up every time you try to call it, I tried 4 times. This is getting awkward, you know.
    Thank you,
    - Tapio

    When they ask for that key, they are expecting an upgrade key to something like Windows 8 Pro or addition of a Media Center Key. They don't expect you to use the same Key you are already using. It won't work.
    Anyhow, take a look at this:
    http://forums.lenovo.com/t5/Windows-8-and-8-1-Knowledge-Base/How-to-find-the-product-key-on-a-preins...

  • How to retrieve Microsoft Office Product Key  for Mac

    Hi there, Hopefully someone might have a suggestion on how to retrieve the Microsoft Office Product Key for Office 2010 on Mac.
    Scenario:  Last month, Apple advised me my iMac hard drive may be faulty and would need replacing.  That was done, I restored my iMac from Timeline backup and everything is dandy except I need the Product Key for Office to access any of my documents.  I purchased the product online in my old job, that email address is now no longer valid and I have lost access to the email that the product key was emailed to me in.  I am unable to retrieve the product key from Microsoft without buying a new copy.
    I do have Office uploaded on my Macbook Air from the same download/product key, so I have access to the program on the laptop but not the iMac.  Hopefully I can get the product key from the laptop somehow.
    Any guidance or suggestions would be appreciated.  Thanks :-)

    As Office is not an Apple product, I strongly recommend asking in the Microsoft Office:Mac forums here:
    Office for Mac forums
    Everyone there is a Mac user AND an Office user, something you can't say about Apple's forums. You will get the fastest help there and I think you will find the contributors more than helpful.

  • Possible to obtain Windows 7 product key from Lenovo for downgrade from Windows 8.1?

    Hi all. I have searched all over these forums and haven't found the answer to my question, so I figured I'd just ask it.  
    I purchased an Ideapad Y580 with Windows 8 pre-installed.  Hated it from the get go. Upgraded to Windows 8.1, and still don't like.  But, now, I am having a ton of bug-y issues. Although I've managed to fix most, they have become increasingly annoying. The latest is that upon upgrading to Windows 8.1, my USB ports stopped working...except they sometimes work, some of the time, but never all of the time. Drivers are up to date, and every diagnostic test I have run passes. Surfing the net, it sounds like this is a common issue with windows 8.1.
    I was speaking with my firm's IT company and was told that they have had the exact same issues with numerous clients. (As an aside, they universally place lenovo products in their client's hands). It has gotten so bad that they do not provide windows 8/8.1 on any of the machines they prepare for their clients. 
    Last week, I was speaking to the IT company's local rep who was performing some server maintenance for us, and he indicated that if you purchased a laptop pre-installed with windows 8 and didn't like it, you could obtain a windows 7 product key from the manufacturer and downgrade to windows 7. Is that accurate? if so, how do I make that happen? 

    Too be honest I suggest you do not downgrade unless you have to use software in your company that does not work on Windows 7.
    Get started reading Windows 8 guides, and you will notice Windows 8 is a lot better after you have read all the guides:
    http://lmgtfy.com/?q=windows+8+get+started+guide
    Jonas
    Microsoft MVP: Windows Consumer Expert
    Yoga Tablet 2 10 || ThinkPad X1 Carbon (20A7007MPH) || ThinkPad Helix (3698-6EU) || IdeaCentre B540
    Twitter: @jonashendrickx

  • Microstoft Office 2010 product key error

    I located the Office 2010 product key sticker on the side of my computer. It came pre-installed. When I type in the Product Key, I get an error message saying it is "Not a Valid Product Key". I have double checked that I am not typing the code in incorrectly and I cannot find multiple copies of Office 2010 installed.
    This question was solved.
    View Solution.

    LetsGoPerds wrote:
    I located the Office 2010 product key sticker on the side of my computer. ....
    Hi,
    No, that is NOT Office product key, it's Windows product key. Your machine has pre-installed TRIAL version. If you wish to continue to use it you have to buy e keycard. I really hate this practice from vendors and ALWAYS uninstall trial software on my computers. Please check the following link to buy product keycard.
        http://office.microsoft.com/en-us/buy/product-key-​card-FX101850744.aspx
    You can pay much cheaper for Home & Student version and a lot cheaper with a student id card.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP server

    In 9iAS 9.0.2 Oracle HTTP Server (OHS) is pre-configured to assign requests to the Home OC4J instance via the URL-prefix "/j2ee"/
    For example, the TEST servlet under OC4J would be passed through OHS using:
    http://urmachine:urApachePort/j2ee/TEST
    whereas in the standlone OC4J version, this URL works:
    http://urmachine:urOC4JPort/TEST
    How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP Server?

    It is getting the url prefix from mod_oc4j.conf
    under /ora9ias/Apache/Apache/conf
    You can read more on this at
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/web.902/a92173/confmods.htm#1008977
    -Prasad

  • How to get password as string back from encrypted password byte array.

    Hi All,
    I am storing encrypted password and enc key in the database.(Code included encryptPassword method for encryption and validatePassword method for validating of password). Problem is that for some reason i need to show user's password to the user as a string as he/she entered. But i am not able to convert the encrypted password from D/B to original String.
    Tell me if any body know how to get the string password back from the encrypted password byte array after seeing my existing encryption code.
    //********* Code
    private Vector encryptPassword(byte[] arrPwd)
    try
    // parameter arrPwd is the password as entered by the user and to be encrypted.
    byte[] encPwd = null;
    byte[] key = null;
    /* Generate a key pair */
    KeyPairGenerator keyGen = KeyPairGenerator.getInstance("DSA", "SUN");
    SecureRandom random = SecureRandom.getInstance("SHA1PRNG", "SUN");
    keyGen.initialize(1024, random);
    KeyPair pair = keyGen.generateKeyPair();
    PrivateKey priv = pair.getPrivate();
    PublicKey pub = pair.getPublic();
    /* Create a Signature object and initialize it with the private key */
    Signature dsa = Signature.getInstance("SHA1withDSA", "SUN");
    dsa.initSign(priv);
    /* Update and sign the data */
    dsa.update(arrPwd, 0, 12);
    /* Now that all the data to be signed has been read in, generate a signature for it */
    encPwd = dsa.sign();
    /* Now realSig has the signed password*/
    key = pub.getEncoded();
    Vector vtrPwd = new Vector(2);
    vtrPwd.add(encPwd);
    vtrPwd.add(key);
    return vtrPwd;
    catch (Exception e)
    private boolean validatePassword(byte[] arrPwd,byte[] encPwd,byte[] key) throws RemoteException
    try
    // arrPwd is the byte array of password entered by user.
    // encPwd is the encrypted password retreived from D/B
    // key is the array of key through which the password was encrypted and stored.
    X509EncodedKeySpec KeySpec = new X509EncodedKeySpec(key);
    KeyFactory keyFactory = KeyFactory.getInstance("DSA", "SUN");
    PublicKey pubKey = keyFactory.generatePublic(KeySpec);
    /* Encrypt the user-entered password using the key*/
    Signature sig = Signature.getInstance("SHA1withDSA", "SUN");
    sig.initVerify(pubKey);
    /* Update and sign the password*/
    sig.update(arrPwd, 0, 12);
    return sig.verify(encPwd);
    catch (Exception e)
    Help upto any extent would be appreciated.
    Thanx
    Moti Singh

    Hi All,
    I am storing encrypted password and enc key in the
    database.(Code included encryptPassword method for
    encryption and validatePassword method for validating
    of password). Problem is that for some reason i need
    to show user's password to the user as a string as
    he/she entered. But i am not able to convert the
    encrypted password from D/B to original String.No, you are not encrypting the password in your code, you are merely signing it.
    Tell me if any body know how to get the string
    password back from the encrypted password byte array
    after seeing my existing encryption code.It is impossible to retrieve the original text out of a signature.
    You should read up on some encryption basics in order to understand the difference between signing and encrypting. Then you can find examples of how to encrypt something here: http://java.sun.com/j2se/1.4/docs/guide/security/jce/JCERefGuide.html.
    Actually there is one class specifically for keeping keys secure, KeyStore http://java.sun.com/j2se/1.4/docs/api/java/security/KeyStore.html
    - Daniel

  • Download using a product key from a purchased product from the store.

    I purchased the Adobe elements to use on my desktop. I downloaded it and it is installed however I just purchased MacBook Air and I want to install the program onto this computer. This computer does not have a disk drive. I was told that I should be able to download most programs an use the product key from the box however I do not see that option for the Adobe Elements. I downloaded the trial version in hopes of being able to convert it using my product key. Does anyone have any words of wisdom that will help me to resolve this issue?
    Thanks in advance!

    Serialnumbers of Elements 11 (PSE/PRE) are platform independent and support  upto 2 activations per serial number.
    So, if you're using the license on your desktop (win), you can still use the same serial key on your mac machine. Please install the trial version and on launch you'd get a prompt to enter your serial number or continue in trial. Please provide your serial number there and complete the wizrds by clicking next and here you go, your elements product on mac is licensed too.
    thanks

  • Can I re-install Office 2010 Product Key Card?

    I have a Office 2010 Product Key Card version. Do I need to remove it completely from one Windows 7 computer before I attempt to install it on a completely different Windows 7 computer.
    Or does that version of Office 2010 always need to stay with the first computer?
    If the latter is true, I wish that would have been spelled out in big, bold letters on the product box.
    Thanks.

    Hi,
    Yes, you can transfer Office 2010 to another PC.
    But please note that you must remove Office 2010 completely from the previous PC. You’ll also need to use telephone option in Activation Wizard to contact the activation center after you transfer Office 2010 to another PC.
    You can find your local custom support number on the link below.http://support.microsoft.com/gp/customer-service-phone-numbers/en-us
    Melon Chen
    TechNet Community Support

  • How to get "Layer Mask Hides Effects" from Photoshop Plug-in

    How to get "Layer Mask Hides Effects" from Photoshop Plug-in.

    I don't think there's enough information here to give an answer.  Is this a Plug-in that you're writing or intend to write?  If so, what type of Plug-in is it?
    If you are writing your own plug-in, the header files included in the Photoshop SDK/API have a bunch of defines for the proper codes to use.
    PITerminology.h has a large amount of keys that can be used to query for information.  PIUGetInfo is probably the function that you want to call to determine what you need to know.
    If you're looking for information about a specific layer, you will want to make a new PIActionDescriptor, call sPSActionDescriptor->Make(*PIActionDescriptor), and then call GetLayerInfo on the layer that you're querying information about.
    You can then call sPSActionDescriptor->Get<datatype> on the layer while passing in the key of the data that you want.

Maybe you are looking for