Need to know how to move a downloaded lightroom to a diff labtop

My brother has a terrorist for a cat who has decided puncturing a bottle of water and frying my labtop was a great idea. *the cat lived...*
I need to know if I can pull it off the hard drive and move it to the new labtop. I downloaded the software after buying it right off the site, and now I do not know what the serials or anything were as it was all website prompted. Will it ask me for these things? How do I go about getting my lightroom on the new labtop?
Any help is going to be appreciated - I am truly floundering as I have two shoots sitting in que in my program.

I definitely registered the program with the serial and stuff. Where do I find that that so I can make sure its all there before I move it. I really hate to not have the numbers and everything ready after I try moving it and hence lose all my photographs.

Similar Messages

  • I have just purchased a new computor. I had Lightroom 5.7 on the old computor and need to know how to go about downloading the program to my new computor. Thanks for any help you can provide.

    I have just purchased a new computor. I had Lightroom 5.7 on the old computor and need to know how to go about downloading the program to my new computor. Thanks for any help you can provide.

    Lightroom - all versions
    Windows
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Windows
    Mac
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Macintosh

  • Just need to know how to move contents of a folder PLEASE :)

    Hi all Need to know something?.
    I want to move the contents of a folder to another.
    I am using this code to move a file to another but how do I move the whole contents to another.
    public void moveBack() {
        try {
          selectedFileName = (String) OrdersUploadFileNameHashtable.get(
              (String) jOrdersUploadList1.getSelectedValue());
          ShortFileName = (String) jOrdersUploadList1.getSelectedValue();
          if (!jOrdersUploadList1.getSelectedValue().equals(null)) {
            File w = new File(EpodConstants.ORDERS_TO_UPLOAD_DIR, selectedFileName);
            File f = new File(EpodConstants.ORDERS_PENDING_DIR, selectedFileName);
            if (w.renameTo(f))
              System.out.println("ok");
            else {
              JOptionPane.showMessageDialog(null,
                                            "No Order Selected",
                                            "You must Select a Order to Move",
                                            JOptionPane.INFORMATION_MESSAGE);
        }

    here's my solution:
          * Copy a file. The destination file name can be different from the source file name. Rules:
         * <ul>
         * <li>If destination is an existing directory, <i>source</i> is copied to this directory
         * <li>If destination is an existing file, this file is overwritten.
         * <li>If destination is a file name with leading path, leading path is created.
         * <li>If destination is just a file name, path of <i>source</i> is used as destination.
         * <li>If destination ends with a File.separatorChar, it is created as the destination directory.
         * </ul>
          * @param source Name of file (incl. path) to copy.
          * @param destination Name of destination file to copy to.
         * @throws IOException
         * @see <a href="http://java.sun.com/docs/books/performance/1st_edition/html/JPIOPerformance.fm.html">I/O Performance</a>
        public static void copyFile(String source, String destination) throws IOException {
            if (source != null && destination != null) {
                File sourceFile = new File(source);
                if (sourceFile.exists() && sourceFile.isFile()) { //no directory?
                    File destFile = new File(destination);
                    if (destFile.exists()) {
                        if (destFile.isDirectory()) { //1. existing destination directory
                            destFile = new File(destination + File.separatorChar + sourceFile.getName());
                        } else { //2. existing destination file
                            //ignore, overwrite existing destination file
                    } else { //destination does not exist
                        int index = destination.lastIndexOf(File.separator);
                        if (index > -1) { //3. file has leading directory path or is directory
                            if (index == (destination.length() - 1)) { //destination is directory?
                                File destDir = new File(destination);
                                destDir.mkdirs();
                                destFile = new File(destDir + sourceFile.getName());
                            } else { //destination is directory + file
                                String destDir = destination.substring(0, index + 1);
                                File destDirFile = new File(destDir);
                                if (!destDirFile.exists()) {
                                    destDirFile.mkdirs(); //create destination directory tree
                        } else { //4. file has no leading directory path
                            destFile = new File(sourceFile.getParent() + File.separatorChar + destination);
                    BufferedInputStream in = null;
                    BufferedOutputStream out = null;
                    try {
                        in = new BufferedInputStream(new FileInputStream(sourceFile));
                        out = new BufferedOutputStream(new FileOutputStream(destFile));
                        int c;
                        while ((c = in.read()) != -1) { //read next byte of data until end of stream is reached
                            out.write(c);
                        out.flush();
                    } finally {
                        if (in != null) { in.close(); }
                        if (out != null) { out.close(); }
                }//else: source file does not exist or is a directory
            }//else: no input values available
        }//copyFile()
          * Copy all files of a directory to a destination directory. If the destination file does not exist, it
         * is created. If copy of one file throws an exception, copy of remaining files continue, so that at least
         * all files without exceptions get copied.
          * @param sourceDir Source directory to copy all files from.
          * @param targetDir Destination directory to copy all files to.
         * @throws IOException
        public static void copyFiles(String sourceDir, String targetDir) throws IOException {
            IOException exception = null;
            if (sourceDir != null && targetDir != null) {
                File sourceFile = new File(sourceDir);
                if (sourceFile.exists() && sourceFile.isDirectory()) {
                    File targetFile = new File(targetDir);
                    if (!targetFile.exists()) {
                        targetFile.mkdirs();
                    //for all files of source dir do:
                    String[] filesToCopy = sourceFile.list();
                    int count = filesToCopy.length;
                    for (int i = 0; i < count; i++) { //for each source file do
                        String fileName = filesToCopy;
    File file = new File(sourceDir + File.separatorChar + fileName);
    if (file.isFile()) {
    try {
    copyFile(sourceDir + File.separatorChar + fileName, targetDir);
    } catch (IOException ioe) {
    exception = ioe;
    } else { //file is directory
    try {
    copyFiles(sourceDir + File.separatorChar + fileName, targetDir + File.separatorChar + fileName);
    } catch (IOException ioe) {
    exception = ioe;
    }//next file
    }//else: source directory does not exist
    }//else: input values not available
    if (exception != null) {
    throw exception;
    }//copyFiles()

  • I've just setup iCloud on an I mac and macbook pro both operating 10.9 and i need to know how to move/sync the many bookmarks in Safari from my i mac to the laptop. Thanks

    I've just setup icloud on a imac and macbook pro both using 10.9 and I'd like to know how to add the many Safari bookmarks I have on the imac to the laptop.  Please explain slowly as I'm old.  Thanks

    Turn on Bookmark sync in iCloud preferences on both machines. (Both must be signed into the same iCloud account)
    System Preferences>iCloud>Safari

  • HT3782 I need to know how to get my downloads to show up again in my download window on my MacBook Pro

    I recently cleared all my downloads from my download window, and now when I download something it will not show up in the download window.  Can anyone help me or tell me what I need to do to get this to work again? 
    Thanks!
    ann227

    Mac App Store: Hiding and unhiding purchases
    http://support.apple.com/kb/HT4928

  • My mac laptop crashed I need to know how to transfer my ipod's music/videos etc to my new IMac without erasing all my music/pic/videos.  please help me

    My macbook crashed the other day and i've been searching and searching for some help but nothing has come up... so anyway i need to get my music/movies/T.V shows/pics off the ipod and onto the new computer, but the problem is, is that it says i have to delete the contents of my ipod to sync with other computer.  I have purchased songs and a ton of movies but the rest has been from my friends and whatnot.  I need to know how to move the music/shows/movies to the new computer without using the old one.  is there such a thing?
    If you can help me out that would be awesome!
    thanks

    you can try this http://www.getsharepod.com/

  • I need to know how to down load movies, that I have on DVD, on to my hp computer then down load it to my ipad

    I need to know how to down load movies,from my DVDs, onto my hp computer and then down load them onto my iPad

    I read the thread question differently than you did I think.  I did not think the DVD in question was a commercial DVD.  However, you have much more experience in this discussion board than I do.  You probably have seen this question many times and assumed (apparently correctly) that it was a commercial DVD.
    I was answering the question based on it being a DVD created within a work/home environment that is needed to be put on the iPad.  I have been toying around with that exact process in the past week.  Work training videos etc, that I have created, put on DVD then downloaded to my iPad for travel and display.
    My bad!

  • I need to know how to delete the most recent version of Firefox. I JUST downloaded it tonight and my computer doesn't have that little edit bar to work with so I can download the proper Adobe player and my internet has been screwed up ever since I downlo

    I need to know how to delete the most recent version of Firefox. I JUST downloaded it tonight and my computer doesn't have that little edit bar to work with so I can download the proper Adobe player and my internet has been screwed up ever since I downloaded the new version of Firefox. I just want the old version of it back since I apparently can't download the Adobe stuff that is necessary to keep my computer safe from Hackers. It sure would have been nice to know there was an issue with the new Firefox Update BEFORE I uploaded it. I have Vista which is usually an issue with both Adobe and Firefox. I don't seem to be able to run much of Adobe at all on my computer because of the Vista.
    == This happened ==
    Every time Firefox opened

    I have also noticed all my settings won't stay set, example....I removed the check mark from "third party cookies", the when I close Firefox and reopen the check mark is back, also my tool bar has screwed up....can't reset, been having trouble the up grade.

  • I received LR 5 for Christmas but have not downloaded it yet on my computer. I have had LR 3 for about 4 years.  I am due to buy a new computer soon but need to know how many licenses/downloads I will get before downloading LR 5 on my current computer.  I

    I received LR 5 for Christmas but have not downloaded it yet on my computer. I have had LR 3 for about 4 years.  I am due to buy a new computer soon but need to know how many licenses/downloads I will get before downloading LR 5 on my current computer.  I may also purchase a laptop in the next year so that would require 3 licenses altogether (current iMac, future iMac, future macbook).

    You have one license.
    You can download and install it on an infinite number of computers, as long as it is only installed on two of your computers at any one time, and in use on only one computer at any given time.
    So in your case, current iMac, that's would mean its installed on one computer, no problem. Future iMac and future MacBook ... so if you uninstall from current iMac and install on Future iMac and future MacBook, it's now installed on two computers at a time, no problem, as long as you're not using Lightroom on both simultaneously. And if after that, you got two new computers and uninstalled Lightroom from the previous two, you're still good, it's only installed on two computers at any one time.

  • I have photoshop CC and lightroom on my computer for 9.99/mo ...i just purchased a new computer to replace my existing computer and need to know how to download photoshop CC and lightroom onto my new computer using my current account so i don't have to pa

    i have photoshop CC and lightroom on my computer for 9.99/mo ...i just purchased a new computer to replace my existing computer and need to know how to download photoshop CC and lightroom onto my new computer using my current account so i don't have to pay again

    http://www.microsoft.com/mac/support
    http://answers.microsoft.com/en-us/mac/forum/macword?auth=1
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/microsoft-wor d-for-mac-2011-will-not-open-error/ecc42616-6f49-40bb-b8f5-e21c711ea359

  • Need to know how to update my iphone 4 to ios5 have downloaded the update already

    I have tried to update my iphone with itunes but when it gets to the end of the down load the message I get is server session timed out
    so iave downloaded the the update in safari and need to know how to update from there

    What itunes is asking is would you like to import the files and settings of your ipod to your iphone? It'll import things like contacts, calendar, mail, apps with app data.  If you want your phone set up just like your ipod then use that option.  Otherwise pick "set up as a new device" and it'll allow you to keep the two seperate and you will be able to sync them both to your itunes independently of each other.

  • I have Adobe Pro online monthly subscription. I need to know how to fill in and sign forms already downloaded as PDF's

    I have Adobe Pro online monthly subscription. I need to know how to fill in and sign forms already downloaded as PDF's

    Hi Schoolcoach1,
    Please see the following Help documents:
    Acrobat Help | Filling in PDF forms
    Acrobat Help | Signing PDFs with Adobe EchoSign Electronic Signature
    Please let us know if you have additional questions.
    Best,
    Sara

  • I do not know how to get the music that I buy on itunes, on my mac, onto an ipod. I have already authorized my computer and "downloaded" my music, but that did not do anything. Please I really need to know how to do this on my own but I am stuck.Thank you

    I do not know how to get the music that I buy on itunes, on my mac, onto an ipod. I have already authorized my computer and "downloaded" my music, but that did not do anything, or provid the results that I was expecting, at least. Please, I really need to know how to do this on my own but I do not know what to do.Thank you in advance to anyone that is answering this question that I know most everyone but me knows how to accomplish. thanks!!!

    In iTunes go to the Help menu in the upper menu bar.  Then click on iTunes Help. Then on Sync your iPod, iPhone or iPad and follow the instructions.

  • I just watched a Netflix movie using my iPad 2. Now I need to know how to return the movie using my iPad 2 and deleting the movie from my queue?

    I just watched a movie using my iPad 2. Now I need to know how to return and delete the movie from my Netflix queue and account using the iPad 2?

    Perhaps this question would be better answered here:
    http://www.netflix.com/Help

  • Please help...I was downloading my pics from the SD card. I then I highlighted 5 pics and selected erase, once I selected erase 20 other pics was also erase. I need to know how can those erase pics be recovered? Please Help!

    Please help...I was downloading my pics from the SD card. I then I highlighted 5 pics and selected erase, once I selected erase 20 other pics was also erase. I need to know how can those erase pics be recovered? Please Help!

    You will need data recovery software. See this post:
                                                                                       Re: I accidentally lost 3 weeks of photos, how do I recover them?                                            
    And please send feedback to Apple: This is a bug. Only the imported photos should have been deleted, not all photos on the card. You can use this form: Apple - iPhoto - Feedback

Maybe you are looking for

  • Apple Mobile Device Service won't install, "rolling back action"..

    I reformatted my Windows Vista Home Premium (Service Pack 2 32-bit) and reinstalled iTunes. For some reason, my iPod Touch 3G wouldn't sync so I decided to uninstall then reinstall everything. When I reinstalled, however, AMDS was missing, and during

  • Microphone sound recording,saving,playing flv file is saved but not working

    Please help me,           While recording the flv is saved inside applications/stream/samples/audio.flv. But it is not working properly. Mycode stop();          var count:Number          = 0;       var timestamp:Date    = new Date();       var nc:Net

  • Can't change ringtone on Pre

    Anyone seen this isssue - phone wont allow any other ringtone. When I choose a new ringtone and close preferences, it defaults back to Pre ringtone. How do I fix this? I have turned phone off couple of times with no result. Post relates to: None This

  • VMWare Player 5.0 doesn't start

    I have updated VMWare to version 5.0 and since then I cannot make it work. I have followed the instructions in the wiki. The symlinks are created, the kernel modules patched and built, vmware service is started, but when I start the graphical interfa

  • Emails not reaching recipients

    Wonder if anyone can help or has the same problem, some emails from my main account and my sub accounts are not reaching their desired recipients?  There appears to be no rhyme or reason why they may not be reaching them and not all of them go missin