How can I get my serial number while I'm rebooting?

I'm trying to reboot my MacBook Pro because it had many problems and things i didn't need but when I try to install OS X Mavericks with my apple id (which is the final step into rebooting your mac) it says "OS X Mavericks has not been purchased" when it has been purchased because I used it on my Mac before I decided to reboot.
Besides that I'm trying to chat with the apple support group to fix the problem becuase I can't finish rebooting but i need my serial number but I can't get it while rebooting. The only option I have when clicking the apple icon is
Startup Disk
Restart
Shut down
Can anyone explain how I can my seial number?

When you are booted into the Recovery HD (This is where you see the option to Install OS X, Run Disk Utility, etc)
If you look on top, you will see a Utilities menu. Click on that and select Terminal.
In the Terminal, type in the following code and then hit enter.
system_profiler SPHardwareDataType

Similar Messages

  • I downloaded a Trial version of Adobe Acrobat XI.  Now the trial has runout and I've signed up for a subscription.  However, my software still needs a serial number.  How can I get a serial number for the installed software?

    I downloaded a Trial version of Adobe Acrobat XI.  Now the trial has runout and I've signed up for a subscription.  However, my software still needs a serial number.  How can I get a serial number for the installed software?

    There is no serial number and you don't need one. What you need for a subscription is to SIGN IN within Acrobat, so it knows the subscriptions you own.

  • How can I get a serial number for Illustrator CS5?

    How can I get a serial number for Illustrator CS5 when I have a complete CC subscription?
    I have a GCC Expert 24 plotter running on OS X and the direct cut plugin is only compatible with CS5 or earlier.
    I have tried asking in support chat but it never actually works, my next option is to ring or get a cracked version but i'm trying to avoid both of those options if I can.
    Thanks.

    xdmg,
    In addition to what Lutz said, unless you buy a CS5 that is still new and unused, you will need a licence transfer through Adobe,
    http://helpx.adobe.com/x-productkb/policy-pricing/transfer-product-license.html
    and the application must be deactivated on any machine it has been installed on.

  • How can I get a serial number on my photoshop cs6 free trial

    How can I get a serial number on my photoshop cs6 free trial

    The trial doesn't need a serial number, because it is just a trial.
    When you purchase the software, then you will receive a serial number.

  • I won Lightroom 1.0 a few years ago at an Adobe clinic in Fremont. I have since misplaced the original disk and cannot get the program to open. It wants a serial number and I don't have one. How can I get the serial number so I can use the software?

    I won Lightroom 1.0 as a door prize a few years ago at an Adobe clinic in Fremont. I have since misplaced the original disk and cannot get the program to open. It wants a serial number and I don't have one. How can I get the serial number so I can use the software?

    Thanks for replying, Jim. I wasn't planning to use it for raw images. I shoot film, black and white, and have many negatives I want to print. I am unfamiliar with the upgrades in Lightroom. I wasn't unhappy with the version I have. It was useful for my purposes.
    Because it was a few years ago, I don't remember if I registered the product. I was able to login to my account. But could not find a path to communicate with Adobe. I will keep trying.
    Ken

  • How can I get the serial number for Premiere 11?

    In october 2012 I´ve bought a bundle pack with Photoshop Elements 11 and Premiere 11. After a hard disk crash i was about to reinstall them both but my wife has trown the envelope in the garbage... = No Serial number available!!
    I´ve registered the serial number for Photoshop Element 11 on Adobe, but not the key for Premiere (they are on the same dvd).
    How can I get the serial number for Premiere 11?

    I do not think there is any way for anyone here to help you (we are just other users) so you are going to have to contact Adobe
    Forum for Download & Install & Setup problems
    http://forums.adobe.com/community/download_install_setup
    Chat http://www.adobe.com/support/download-install/supportinfo/
    -or http://www.adobe.com/support/chat/ivrchat.html
    And tell your wife to be more careful about throwing things away

  • Did i buy Adobe Photoshop & Adobe premiere elments but uTrshed  the box before instalation how can i get the serial number?

    did i buy Adobe Photoshop & Adobe premiere elments but uTrshed the box before instalation how can i get the serial number?

    I suggest that you Contact Customer Care - click on the Still need help? button to chat with an agent.

  • I just bought Adobe Photoshop Elements 13, I have the redemption code, how can I get my serial number?

    I just bought Adobe Photoshop Elements 13, I have the redemption code, how can I get the serial number, you guys made so difficult.

    Redemption Code http://helpx.adobe.com/x-productkb/global/redemption-code-help.html
    -and https://forums.adobe.com/thread/1572504
    Photoshop Elements is not part of the Cloud, I will move this to that forum
    Photoshop Elements Forum http://forums.adobe.com/community/photoshop_elements
    If you still need help...
    Select a topic, then click I STILL NEED HELP to activate Photoshop Elements Online chat
    -http://helpx.adobe.com/contact.html?product=photoshop-elements or
    http://helpx.adobe.com/photoshop-elements/kb/troubleshoot-installation-photoshop-elements- premiere.html

  • How can I get the SERIAL NUMBER after an INSERT

    I am working on an application using Jdk1.2 connecting to an Oracle 8i
    Database. The JDBC driver that I am using is Oracle's thin driver.
    In the DB, I have a table that has a primary key as a sequence number.
    Upon inserting a single row into this table, how can I get this serial
    number that is generated by the Database.
    Previously I was using INFORMIX database and welogic's JDBC drivers and this
    is how I get the serial number.
    PreparedStatement ps = ...
    ps.setObject(......);
    ps.executeUpdate();
    int snumber =
    (weblogic.jdbc.informix4.Statement) ps.getSerialNumer()
    Similarly I have tried to use
    (oracle.jdbc.driver.OracleStatement) ps.getSerialNumber()
    But this method does not exist in the JDBC thin drivers.
    Is there some other way to get this serial number.
    Thanks,
    Suresh
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by syalaman:
    I am working on an application using Jdk1.2 connecting to an Oracle 8i
    Database. The JDBC driver that I am using is Oracle's thin driver.
    In the DB, I have a table that has a primary key as a sequence number.
    Upon inserting a single row into this table, how can I get this serial
    number that is generated by the Database.
    Previously I was using INFORMIX database and welogic's JDBC drivers and this
    is how I get the serial number.
    PreparedStatement ps = ...
    ps.setObject(......);
    ps.executeUpdate();
    int snumber =
    (weblogic.jdbc.informix4.Statement) ps.getSerialNumer()
    Similarly I have tried to use
    (oracle.jdbc.driver.OracleStatement) ps.getSerialNumber()
    But this method does not exist in the JDBC thin drivers.
    Is there some other way to get this serial number.
    Thanks,
    Suresh
    <HR></BLOCKQUOTE>
    ========================================
    ORACLE don't support serial number as Informix, but you can create sequence table
    and every time get the next value from this table.
    null

  • How can i get my serial number again?

    Hello,
    I have bought my adobe pruduct (premiere elements 12) ca two years ago and got a serial number.
    Now I have a new computer and want to install the product again, but I just can't find the code anywhere. When i go to 'my prodcts' it says, no registrated products, even if I have bought the pruduct. I have also checked my emails but cant find the code there..
    Please Help Me !
    best regards,
    Boas

    Hey Jeff,
    how is it possible to find the serialcode with Belarc Advisor? Do i have to
    search 'serial number'?
    Thanks
    Gesendet mit meinem Asus Ultrabook
    2015-05-01 0:27 GMT+02:00 Jeff A Wright <[email protected]>:
        Hey Nerds, How can i get my serial number again?
    Jeff A Wright
    <https://forums.adobe.com/people/JeffAWright?et=watches.email.outcome>
    marked Ned Murphy
    <https://forums.adobe.com/people/Ned+Murphy?et=watches.email.outcome>'s
    reply on Hey Nerds, How can i get my serial number again?
    <https://forums.adobe.com/thread/1829454?et=watches.email.outcome> as
    helpful. View the full reply
    <https://forums.adobe.com/message/7486560?et=watches.email.outcome#7486560>

  • How can I get the serial number for registration and instalation?

    Hello ,How can I get the serial number for registration and instalation?

    contact your local sales representative.
    You don't need a serial number to install LabVIEW.
    Registration is optional.
    Activation is needed after the evaluation period.
    Install it without number and it will work for a limited time (30days?) in evaluation mode, giving you plenty of time to decide if you want to buy it.
    Check the license manager to see the activation status of everything installed.
    LabVIEW Champion . Do more with less code and in less time .

  • HT3402 if the box is lost, how can I get my serial number?

    if the box is lost, how can I get my serial number?

    You mean the Aperture serial number?
    If you have a second installation of Aperture, you can see the serial number in the "About" panel from the main menu bar: Aperture > About Aperture.
    Else you will have to contact Apple with a proof of purchase for a replacement serial number, see the following support page:
    Pro Application Replacement Serial Numbers
    Regards
    Léonie

  • How can I get my serial number from my iphone 4s?

    I forgot my lock code and now my phone is disabled.  How can I get the serial number if I cant get to the main screen or open the phone?  I have an iphone 4s

    Not sure why you need the serial # if you phone is locked.
    Plug it into iTunes, and you can get the serial #, and also unlock your phone.

  • How can I get the serial Number of...

    How can I get the serial Number of Table whether or the hardware and the serial Number Windows?

    There most be a way, becouse if you will got to this game site:
    http://en.dinorpg.com/ and try to register more then 3 times, you will get
    an error that you can only have 3 acount on one computer. Even if you will
    reinstall your windows version you still get the same error. If they can do
    it so there most be a way.
    2009/8/20 Greg Lafrance <[email protected]>
    You can't access such info from Flex/AIR apps. There's just no way.
    >
    If this post answered your question or helped, please mark it as such.
    >

  • Lost my ipod nano.  How can i get the Serial Number from apple?

    Hi everyone, I recently Lost my ipod nano at work. How can i recover my serial number. I did register the ipod throgh itunes. Is there a way I can get my serial number incase someone at my work finds it and returns it so i can give security my serial number to prove that it is my ipod? thanks

    Hello franciscor,
    Sadly, there isn't much else Apple can do for you in this situation. However, I can tell you that there are a few other methods that can be used to retrieve your iPod's serial number other than from off the unit itself. Check out this Apple support document for more information. Hope it helps.
    [iPod: How to find the serial number|http://support.apple.com/kb/HT1459]
    B-rock

Maybe you are looking for

  • IChat AV Problems

    hello there, I am having problems connecting video chat. I have a new MacBook and I have been able to connect AV with another MacBook user with no problems. But when I try to connect to an iBook and a G5 I get the error that the other did not respond

  • Calling Function in SQL Server through DBLINK

    Hello I need to call a function that exists in other database (*SQL Server*) through DBLINK Is It possible? If yes, please give me the syntax Thanks

  • Acrobat 9.0 crashes when attempting to launch

    I just loaded Acrobat 9.0, ran the updater and believe I am at ver 9.3x. When I attempt to launch Acrobat, it crashes each and every time. I am using Apple OS 10.6.2 on a MacPro with 8GB of ram. The user type is a managed user. Any ideas?

  • IDS 5.0 SP2 + Solaris 8 password problem

    Iplanet version : iDS 5.0 SP2 + Solaris 8 Password: user must change password after reset : yes user may change password : yes allow changes in 0 days keep password history : yes remeber 6 password Password expires after 90 days send warning 7 days b

  • Data transfer from Windows to Mac

    Hi My first post so be gentle!! Just about to take delivery of my new 27" Mac after converting from the dark side! I currently have all of my data on a NTFS external hard drive (about 100GB) and want to transfer it over to my new Mac. Can someone poi