Is this script legal to recover the OEM Product-Key?

Is known as ShowKey.vbs, but I want to know if it is legal to use:
Set WshShell = CreateObject("WScript.Shell")
Key = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\"
DigitalID = WshShell.RegRead(key & "DigitalProductId")
ProductName = "Product Name: " & WshShell.RegRead(Key & "ProductName") & vbNewLine
ProductID = "Product ID: " & WshShell.RegRead(Key & "ProductID") & vbNewLine
ProductKey = "Installed Key: " & ConvertToKey(DigitalID)
ProductID = ProductName & ProductID & ProductKey
If vbYes = MsgBox(ProductId & vblf & vblf & "Save to a file?", vbYesNo + vbQuestion, "Windows Key Information") then
   Save ProductID
End if
Function ConvertToKey(Key)
    Const KeyOffset = 52
    isWin8 = (Key(66) \ 6) And 1
    Key(66) = (Key(66) And &HF7) Or ((isWin8 And 2) * 4)
    i = 24
    Chars = "BCDFGHJKMPQRTVWXY2346789"
    Do
        Cur = 0
        X = 14
        Do
            Cur = Cur * 256
            Cur = Key(X + KeyOffset) + Cur
            Key(X + KeyOffset) = (Cur \ 24)
            Cur = Cur Mod 24
            X = X -1
        Loop While X >= 0
        i = i -1
        KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput
        Last = Cur
    Loop While i >= 0
    If (isWin8 = 1) Then
        keypart1 = Mid(KeyOutput, 2, Last)
        insert = "N"
        KeyOutput = Replace(KeyOutput, keypart1, keypart1 & insert, 2, 1, 0)
        If Last = 0 Then KeyOutput = insert & KeyOutput
    End If
    a = Mid(KeyOutput, 1, 5)
    b = Mid(KeyOutput, 6, 5)
    c = Mid(KeyOutput, 11, 5)
    d = Mid(KeyOutput, 16, 5)
    e = Mid(KeyOutput, 21, 5)
    ConvertToKey = a & "-" & b & "-" & c & "-" & d & "-" & e
End Function
Function Save(Data)
    Const ForWRITING = 2
    Const asASCII = 0
    Dim fso, f, fName, ts
    fName = "Windows Key.txt"
    Set fso = CreateObject("Scripting.FileSystemObject")
    fso.CreateTextFile fName
    Set f = fso.GetFile(fName)
    Set f = f.OpenAsTextStream(ForWRITING, asASCII)
    f.Writeline Data
    f.Close
End Function

Hi!
From what I can understand, this is in a bit of a "gray zone", showing the key isn't illegal, but if you plan on using it again, when doing a re-install of the system it isn't allowed, or use it on another computer for that matter,
In these cases, you should use the recovery media that is shipped with your computer or download it from the manufacturer.
The OEM
recovery media should match the product version originally preinstalled on the system; no other image may be used to restore the system to its original
state.
I would contact MS and see what they are saying, depending
on what you need the key for of course:
https://support.microsoft.com/en-us/kb/326246?wa=wsignin1.0
Best regards
Andreas Molin
Andreas Molin | Site: www.guidestomicrosoft.com | Twitter: andreas_molin

Similar Messages

  • Recover the OEM Windows Key

    Hi there, A couple of months ago my Toshiba laptop fell and the HDD got damaged, so I had to replace it  I would like to activate a legitimate copy of W8 again, but I don't have the OEM activation key for that. Is there any way I can get it? :/ Thank you in advance.

     
    Satellite C45-ASP4311FL (PSCD2P-014LM2)
    Downloads here.
    The product key for Windows 8 (not 8.1) is burned into the motherboard. So Windows 8 will self-activate when installed.
    But you would need to install essentially all of the many drivers and utilities at the site above for the laptop to work as designed. And the order of installation matters.
    I don't have the time or inclination to mess around with that. Better to restore the hard disk to its original out-of-the-box contents using Toshiba recovery media. All the drivers and utilities are properly installed.
    If you failed to create recovery media, obtain it from Toshiba. Scroll down to Get Recovery Media here
    See the instructions in the section Restoring from recovery media, which begins on p. 56 of the User's Guide.
       Satellite/Satellite Pro C40/C50/C70 - A Series User’s Guide
    After you have Windows 8 installed, follow these instructions carefully to upgrade to Windows 8.1.
       How to Update from Windows 8 to Windows 8.1

  • This script is not checking the existing of the new created item

    Dear Friends
    I have This script is not checking the existing of the new created item I am using this script in side WHEN-BUTTON-PRESSED trigger
    I am using oracle Forms [32 Bit] Version 6.0.8.11.3 (Production)
    My script as the following :
    BEGIN
    BEGIN
    SELECT ITEM_CODE INTO :GLOBAL.DUMMY
    FROM IM_INVENTORY
    WHERE ITEM_CLASS = TO_NUMBER(RTRIM(LTRIM(:IM_NEW_ITEMS.ITEM_CLASS)))
    AND ITEM_TYPE = TO_NUMBER(RTRIM(LTRIM(:IM_NEW_ITEMS.ITEM_TYPE)))
    AND ITEM_LENGTH = :IM_NEW_ITEMS.ITEM_LENGTH
    AND ITEM_WIDTH = :IM_NEW_ITEMS.ITEM_WIDTH
    AND ITEM_HIGHT1 = :IM_NEW_ITEMS.ITEM_HIGHT1
    AND ITEM_HIGHT2 = :IM_NEW_ITEMS.ITEM_HIGHT2
    AND COLOR_CODE = TO_NUMBER(RTRIM(LTRIM(:IM_NEW_ITEMS.COLOR_CODE)))
    AND SHAPE_CODE = TO_NUMBER(RTRIM(LTRIM(:IM_NEW_ITEMS.SHAPE_CODE)));
    -- get_err_message(87);
    SHOW_MESSAGE('This Item Already Exist !!!');
    RAISE FORM_TRIGGER_FAILURE;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    show_message('here');
    INSERT INTO IM_INVENTORY
    (ITEM_CODE,ITEM_NAME_A,ITEM_NAME_E,STOCK_ITEM,ITEM_CLASS,ITEM_TYPE,SUPP_CODE,ITEM_LENGTH,ITEM_WIDTH,
    ITEM_HIGHT1,ITEM_HIGHT2,COLOR_CODE,SHAPE_CODE,ITEM_SIZE_TYPE,VOLUME,CON_FACTOR,ITEM_PRICE1,
    ITEM_DISCOUNT,MIN_QTY,MAX_QTY,COSTING_METHOD,ITEM_COST,STANDARD_COST,WEIGHT,ITEM_PRICE2,ITEM_PRICE3,
    OPENING_COST,LAST_PUR_COST,QTY_FOR_PRICE2,QTY_FOR_PRICE3,ITEM_PRICE_METHOD,USER_ID,USER_DATE)
    VALUES(:IM_NEW_ITEMS.ITEM_CODE,:GLOBAL.LOC_VAR_A,:GLOBAL.LOC_VAR_E,'1',:IM_NEW_ITEMS.ITEM_CLASS,:IM_NEW_ITEMS.ITEM_TYPE,'0',
    :IM_NEW_ITEMS.ITEM_LENGTH,:IM_NEW_ITEMS.ITEM_WIDTH,:IM_NEW_ITEMS.ITEM_HIGHT1,:IM_NEW_ITEMS.ITEM_HIGHT2,
    NVL(:IM_NEW_ITEMS.COLOR_CODE,0),NVL(:IM_NEW_ITEMS.SHAPE_CODE,0),1,NVL(:IM_NEW_ITEMS.VOLUME,0),1,:GLOBAL.ITEM_PRICE1,0.00,0.00,0.00,'1',0.00,0.00,
    0.00,:GLOBAL.ITEM_PRICE1,:GLOBAL.ITEM_PRICE1,0.000,0.000,0.000,0.000,1,:IM_NEW_ITEMS.USER_ID,:IM_NEW_ITEMS.USER_DATE);
    standard.commit; -- NEW COMMITED
    clear_message; -- NEW COMMITED
         WHEN FORM_TRIGGER_FAILURE THEN
         SHOW_MESSAGE('Error : '||SQLERRM);
    RAISE FORM_TRIGGER_FAILURE ;
    WHEN OTHERS THEN
    SHOW_MESSAGE('Error : '||SQLERRM);
    RAISE FORM_TRIGGER_FAILURE ;
    END;
    END;
    Waiting for your valuable answer .
    Best regards
    Jamil Alshaibani

    Hi,
    I have written the script also with constants values but still it is not going to
    SHOW_MESSAGE('This Item Already Exist !!!');
    and the script is written as the following :
    BEGIN
    SELECT 1 INTO :GLOBAL.DUMMY
    FROM IM_INVENTORY
    WHERE ITEM_CLASS ='110'
    AND ITEM_TYPE ='110105'
    AND ITEM_LENGTH = 1
    AND ITEM_WIDTH = 1
    AND ITEM_HIGHT1 = 1
    AND ITEM_HIGHT2 = 0
    AND COLOR_CODE = '3001'
    AND SHAPE_CODE = '201' ;
    SHOW_MESSAGE('1- This Item Already Exist !!!');
    RAISE FORM_TRIGGER_FAILURE;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    show_message('here');
    INSERT INTO IM_INVENTORY
    (ITEM_CODE,ITEM_NAME_A,ITEM_NAME_E,STOCK_ITEM,ITEM_CLASS,ITEM_TYPE,SUPP_CODE,ITEM_LENGTH,ITEM_WIDTH,
    ITEM_HIGHT1,ITEM_HIGHT2,COLOR_CODE,SHAPE_CODE,ITEM_SIZE_TYPE,VOLUME,CON_FACTOR,ITEM_PRICE1,
    ITEM_DISCOUNT,MIN_QTY,MAX_QTY,COSTING_METHOD,ITEM_COST,STANDARD_COST,WEIGHT,ITEM_PRICE2,ITEM_PRICE3,
    OPENING_COST,LAST_PUR_COST,QTY_FOR_PRICE2,QTY_FOR_PRICE3,ITEM_PRICE_METHOD,USER_ID,USER_DATE)
    VALUES(:IM_NEW_ITEMS.ITEM_CODE,:GLOBAL.LOC_VAR_A,:GLOBAL.LOC_VAR_E,'1',:IM_NEW_ITEMS.ITEM_CLASS,:IM_NEW_ITEMS.ITEM_TYPE,'0',
    :IM_NEW_ITEMS.ITEM_LENGTH,:IM_NEW_ITEMS.ITEM_WIDTH,:IM_NEW_ITEMS.ITEM_HIGHT1,:IM_NEW_ITEMS.ITEM_HIGHT2,
    NVL(:IM_NEW_ITEMS.COLOR_CODE,0),NVL(:IM_NEW_ITEMS.SHAPE_CODE,0),1,NVL(:IM_NEW_ITEMS.VOLUME,0),1,:GLOBAL.ITEM_PRICE1,0.00,0.00,0.00,'1',0.00,0.00,
    0.00,:GLOBAL.ITEM_PRICE1,:GLOBAL.ITEM_PRICE1,0.000,0.000,0.000,0.000,1,:IM_NEW_ITEMS.USER_ID,:IM_NEW_ITEMS.USER_DATE);
    standard.commit; -- NEW COMMITED
    clear_message; -- NEW COMMITED
         WHEN FORM_TRIGGER_FAILURE THEN
         SHOW_MESSAGE('Error : '||SQLERRM);
    RAISE FORM_TRIGGER_FAILURE ;
    WHEN OTHERS THEN
    SHOW_MESSAGE('Error : '||SQLERRM);
    RAISE FORM_TRIGGER_FAILURE ;
    END;
    Best regards
    Jamil

  • ERROR ITMS-9000: "This bundle is invalid. The value for key CFBundleVersion...

    Hi
    I've tried to submit to the AppStore my new revision V27 (1.0.5) instead of V28 (1.0.2) for Ipad 1 compatibility but i get this error :
    ERROR ITMS-9000: "This bundle is invalid. The value for key CFBundleVersion [3.2.4.6.88575] in the Info.plist file must contain a higher version than that of the previously uploaded version [3.3.1.3.8
    How could i change the CFBundleVersion ????
    Thanks

    DPS gold support can help you. Please login to your DPS dashboard https://digitalpublishing.acrobat.com/SignIn.html and you'll find the contact information on the bottom of the page

  • In the middle of setting up windows but I don't have the right product key

    Is there a way to exit out of installing windows and get back to the mac screen?
    I have emailed support and people that I need to contact to get a new product key but it may take a few days and I don't want to leave my Mac with the windows product key screen on the whole time.
    (sorry I just got a mac and don't know a whole lot about them)

    Here's a similar problem -- and a solution:
    https://discussions.apple.com/message/11180626#11180626
    Basically, shut it down and restart.
    There may be more elegent solutions, but this should work.
    Good luck

  • I Need the Windows Product Key for my Laptop

    I had to use my recovery disks and Microsoft was not able to validate the software online.  When I called Microsoft support, I was told I needed the Product Key.  When I looked under the bottom of my laptop, one of the numbers/letters is worn and hard to read.  I was told to contact HP.  When I attempted to do this on the website, I got a message that HP no longer services this laptop.  I don't need service.  I just need information.  All of the HP product information was nicely sealed and secured.  I don't understand why the same was not done for the Windows product key.  Thanks. 

    Check everything to make sure all is working OK.  I do not think it is necessary to reload the OS if everything is working.  There are other ways to get it activated.
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • Where is the 25 product key?

    where is the 25 product key? from the hp printer?

    Hello alienka,
    What exactly are you looking for? The serial number, or something similar?  What do you need the number for, as that may help narrow down exactly what information you need?
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Is it legal to replace the OEM Windows system?

    Hi guru,
    Let's say, my company bought a computer, which is pre-installed a Windows, for example, Windows 8.1, can I replace the Windows 8.1 with a Windows 7 (I downloaded a Windows 7 ISO from internet).
    Q1. Can I use the OEM key to activate the Windows 7?
    Q2. Is it legal to do so?
    This topic first appeared in the Spiceworks Community

    Hi guru,
    Let's say, my company bought a computer, which is pre-installed a Windows, for example, Windows 8.1, can I replace the Windows 8.1 with a Windows 7 (I downloaded a Windows 7 ISO from internet).
    Q1. Can I use the OEM key to activate the Windows 7?
    Q2. Is it legal to do so?
    This topic first appeared in the Spiceworks Community

  • Why does this script behavior change with the phase of the moon ?

    Can anyone from adobe corp or non-adobe volunteers tell me where to look in their docs to find out why this script change its behavior or how to use the debugger to figure out the same. I read the guide and the whole section on debugger and break points etc well.
    try{
    this.getField('Button4').strokeColor = color.red   ;
    app.setTimeOut( "this.getField('Button4').strokeColor = color.green ;" , 500 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.blue  ;" , 1000 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.red   ;" , 1500 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.green ;" , 2000 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.blue  ;" , 2500 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.red   ;" , 3000 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.green ;" , 3500 );
    app.setTimeOut( "this.getField('Button4').strokeColor = color.blue  ;" , 4000 );
    catch(e){}
    Sometimes the above script cycle thru all the colors in proper order and other time it get stuck.
    I have linked it to a button so its part of the button javascript.
    Is there a way to craft setTimeOut calls that it becomes a reliable delay ?
    How to craft it such that the file does not change and does not have to be saved ? This is wanted in addition but not the essential issue at the moment.
    Thanks,
    Rainbow

    MAXcount=20
    // Create a simple color animation on a field called “Color” that changes every second.
    function DoIt() {
      var f = this.getField("Button4");
      var nColor = (timeout.count++ % 10 / 10);
      // Various shades of red.
      var aColor = new Array("RGB", nColor, 0, 0);
      f.fillColor = aColor;
      console.println( 'change' + ' ' + nColor + '; count=' + timeout.count );
      if (timeout.count >= MAXcount)
        app.clearInterval ( timeout );
    console.show();
    console.clear();
    console.println('Start');
    // save return value as a variable
    timeout = app.setInterval("DoIt()", 1000);
    // Add a property to our timeout object so that DoIt() can keep a count going.
    timeout.count = 0;
    console.println('End of code');
    // And observe the results. I expect your new timer events are conflicting with each other. Note that in the above code the change is performed within the called function and not as new line of code.
    I ran it but did not follow your last comment and acrobat disk icon prompts for saving the file. Can anyone remove this "latter problem" ? Can it be solved by any means ?

  • Can I install Linux and then use the original Windows 8 OEM product key for a virtual machine on the same computer?

    I have ordered a new laptop and expect to receive it in 2-3 weeks.  The laptop comes with an OEM version of Windows 8 installed.  I wish
    to install Linux as the host operating system and create a virtual machine running Windows 8.  Can I legally use the product key from the OEM installation to activate a virtual machine that will only be used on the laptop that had the original OEM installation? 
    If so, what is the procedure to activate the copy installed on the virtual machine?
    This question has been addressed for Windows 7, but my searches did not reveal this question posed for Windows 8.

    Technically, no.  The OEM is licensed only for the physical hardware on the system.  It isn't licensed for virtual hardware.
    You may find you're unable to activate your OEM license in the VM.  A lot of OEM Windows look for specific hardware to verify they're being installed on the correct hardware.
    Although here: http://www.microsoft.com/oem/en/Pages/support-faq.aspx#fbid=Zh0SiBdas5I
    Q. Can I install OEM on a virtual machine (VMware)?
    A. You may install OEM in a virtual environment as long as you have a separate license for each instance of the software. It is fine to use the OEM version as long as it is properly licensed. To be clear, a separate version of software must be installed
    for both the “standard” and “virtual” installations.
    You still may not be able to activate if there is a hardware block.
    The best place to ask this is to Microsoft licensing, any response you get here, including mine, won't hold up since it's not an official answer.
    Q. Can I install OEM on a virtual machine (VMware)?
    A. You may install OEM in a virtual environment as long as you have a separate license for each instance of the software. It is fine to use the OEM version
    as long as it is properly licensed. To be clear, a separate version of software must be installed for both the “standard” and “virtual” installations.
    edit: removed the duplicate Q&A

  • Have Windows OEM Product Key -but key is not accepted when Installing New Windows 8.1 Disk

    I was able to secure the Product Key for what I thought was a Windows 8.1 OS on my Toshiba notebook.  I believe my notebook ORIGINALLY had an OEM version of 8.0 (was pre-loaded when I bought the notebook) but at some point I updated the OS to 8.1.  I
    was able to verify that I was currently using 8.1 via the Bios set-up utility.  After securing the product key, I contacted Microsoft and they agreed to send me 32 and 64 bit versions of Window 8.1 free of charge (so as long as I covered the shipping.)
    When I went to install the  8.1 disk, I received a message stating that the product key didn't work.  I can't help but wonder IF perhaps because my PC originally came with 8.0 that it's product key won't work with 8.1?  When Microsoft asked
    WHICH version I had on my PC, I had advised that I was using 8.1. They never asked what was the ORIGINAL OS?
    Any ideas?

    thanks for replies.  I suppose it would be helpful for me to explain why I needed the product key and the new Microsoft Windows 8.1 discs in the first place.  This was never a matter of merely trying to activate the OS.  Last week- my
    notebook went in to standby mode- a very normal process when I would step away from the notebook for a decent amount of time.  When I tried touched the power button to release it from stand by, I received a message that the OS was not able to start up
    due to TWO (very specific) files that were either missing or had been corrupted.  The message recommended re-installing the OS in order to re-insalll or otherwise correct the file errors.  I spent a good 3-4 hours researching this on a number of
    Microsoft/ IT sites, and it appeared this was a very common error -stemming from "boot disk error" -or "errors with hard drive/ partitions".  I then began my trek to a) locate the product key (of which I was able to secure from the BIOS) and b) have Microsoft
    send me the Windows 8.1 discs.  Hope this helps and thanks again.

  • Windows 8.1 install won't accept OEM product key

    I downloaded the Windows 8.1 RTM ISO from TechNet today and wanted to test it on a Thinkpad W530 I have here that has a Windows 8 Pro OEM licence.
    When I mounted the ISO and ran the setup it's prompting for a product key. I'm confused because my understanding is the product key is stored in the UEFI bios and I was expecting the 8.1 setup to detect it. During the original Windows 8 installation it never
    prompted for the product key and activated without issue.
    I've checked my product keys on TechNet and I have 3 unclaimed keys for 8.1 that I assume would work but It'd be preferable for me to retain my OEM licence.
    I used Magic Jellybean to obtain the OEM key but the 8.1 setup won't accept it and returns "That key can't be used to activate this edition of Windows. Please try a different key." 
    Any ideas?

    Hi,
    OEM activation is performed by associating the operating system to the firmware of the computer. This process occurs before the computer is sent to the customer so that the software is already activated and no additional actions are required by the user.
    OEM activation remains valid as long as the customer uses the OEM-provided image on the computer.
    So, if you want to clean install Windows 8.1, you need to input the Windows 8.1 install key to accomplish the Windows installation, after that you can try to activate your system by network or Phone. Meanwhile, I want to know did you got any Windows 8.1
    product key when you download Windows 8.1 from TechNet? If so, you can try to use them when you install Windows 8.1.
    Roger Lu
    TechNet Community Support

  • New motherboard can i reuse my OEM product key

    is it possible to use the windows 7 product key from my PC that came with the old motherboard on a new motherboard that i have right now and then use my upgrade key that i used earlier on the other motherboard to upgrade to windows 8 again with the same
    key? or would i have to buy a new windows 7 key and then use the upgrade key to get 8 again or.. would i just have to buy a whole new windows 8 key... i don't exactly make the largest amount of money i just got a new motherboard and CPU for my birthday i have
    the same harddrive same everything else except the mobo and cpu  

    Hi,
    I agree with britishdhez.
    In addition, normally the OEM Windows license is tied to the motherboard. It could not work with new motherboard.
    Meanwhile, you can post to Windows 7 Genuine Advantage forum to get more insights.
    http://social.microsoft.com/Forums/en-US/home?forum=genuinewindows7
    Or, you’d better to contact the laptop manufacturer directly to consult the issue. In this way, your issue can be fixed efficiently.
    Hope it helps.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

  • Can I reinstall Windows 7 on Boot Camp with the same product key?

    I have run into some issues with my Windows partition, so I want to reinstall Windows 7. I have a genuine copy of Windows 7 Ultimate Edition.
    What I wish to do is to completely remove the Boot Camp partition, and then create a new one and install Windows 7 over it. However, I have only 1 product license key. When I reinstall Windows 7, it's going to ask for the product key, whih is obviously going to be denied because I have used it.
    Is there any way I can acquire another key for this purpose? I am willing to pay a small fee, but I am definitely not willing to pay the full amount for a new Windows 7 copy.
    Furthermore, and a little off-topic: Does anyone know if there are any compatability issues with the Windows 8 dev edition and Boot Camp? Can I use the support software for Windows 7? Will it be able to take advantage of the hardware? Will I get sound and internet? Will I be able to scroll with my trackpad?
    Thanks.
    [EDIT] I forgot to mention that the main reason I have to create a new partition instead of just Custom Installing over the previous one, is because I require a larger partition size.

    Thanks for your help!
    Not to be a pain, but I just want to clarify some things.
    The hatter wrote:
    The retail version can be reinstalled as much as you want, even to a new computer (just not two at same time)
    Yes it will activate just fine on reinstall. Not an issue.
    Let's assume I do not have issues about reallocating disk space, and just want to re-do my whole partition. Here's what I would do. Please tell me if it would work fine, or if I would hit a snag somewhere:
    Have original retail W7 disk at hand (the one I previously used for my first install).
    Remove existing partition using Boot Camp Assistant.
    Re-install using the said disk.
    W7 should activate without a problem, even though I've used the license before.
    Do I have to do anything on Windows before re-installing it to "deactivate" the copy (or something along those lines) before I can re-activate successfully on my new install?
    And what is System Builder?
    Thanks for all your help!

  • Need Office 2007 installer for OEM product key

    I bought a ThinkPad T500 with Office2007 Pro pre-installed.  Fine.  I have a product key
    that looks like nnnnn-OEM-nnnnnnn-nnnnn.
    I did a clean install of Windows 7, and now I want to e-install the same Office 2007 Pro that
    I had, and use my product key with it.  Ideally, I'd like to download it.
    Any help is greatly appreciated.

    I don't think you will find a download for it & the product key looks like xxxxx-xxxxx-xxxxx-xxxxx-xxxxx the one with oem in it is S/N #
    Thinkpad R61 7733-1GU
    Thinkpad X61T 7762-54U
    Thinkpad X60T 6363-4GU
    Did a member help you today? Thank them with a Kudo!
    If a post answers your question, please mark it as an "Accepted Solution"!
    Regards,
    GMAC

Maybe you are looking for

  • Aperture and DNG.  Anyone else seeing this?

    I shoot a lot of RAW images and some of them on a camera that is not currently supported by Aperture (Panasonic DMC FZ8). When I convert those RAW images to DNG, Aperture displays them perfectly in the import preview. When I import them to a project,

  • Orphan table header at bottom of page when page breaks a table across multiple pages

    Hi all, I think similar questions have been asked before but I have not found an answer. Here's the scenario: I have several dynamic tables in a dynamic form.  The layout is flowed, and everything can grow and shrink as needed.  That all works. Howev

  • Error in installing KMC

    20/12/2004 Hi, While installing KMC SP3 on EP6 SP9 running on SAP J2EE 6.40 Was SP9, we get the following error after running SAPINST "SAPInst could not find any SAP J2EE instances that match the Portal Platform requirements. The installation stops.

  • Modify x-axis display of an excel graph

    Hi, I'm want to use the excel report structure in LabVIEW.  I want to format the graph so that only the start and finish values appear on the graph in excel.  There doesn't appear to be a VI to do this. I also checked LabVIEW 8.5\examples\office\MSGr

  • Jsp on iplanet 6.0 sp7 error: unable to load jsp class

    I am having trouble to install astraweb on iplanet with following error [06/Apr/2005:08:46:38] info (21397): WebApp service: uri = /astraweb/ contextPath = /astraweb servletPath = /index.jsp pathInfo = null servletName = jsp [06/Apr/2005:08:46:38] in