Can't find Program CD & need to reload

I purchased Adobe Photoshop Elements 3.0 when it was first available.  I only use it for picture storage on my computer.  I recently purchased a new computer and cannot locate the program CD.  How can I get my program loaded onto the new computer?

Hi stephaeber
Simply download the current trial version of PSE10.
The Editor expires after 30 days but the Organizer is yours to keep with Adobe's compliments.
http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=en_us

Similar Messages

  • I have 2010 macbook white 13 inch and need a replacement battery - where can i find the specs needed for the replacement?

    I have 2010 macbook white 13 inch and need a replacement battery - where can i find the specs needed for the replacement?

    The model 6,1 Late 2009 and the model 7,1 Mid 2010 use an A1331 battery. You can replace it yourself or have Apple do it for you for $129. If you need it quickly make sure you order it from a U. S. seller. Orders from China can take two or three weeks.
    http://www.ebay.com/sch/i.html?_nkw=macbook++battery+a1331&_sacat=0&_odkw=macboo k++battery+a1342&_sop=12&_osacat=0
    Here's installation instructions. You'll need a Tri Wing Y1 screwdriver in addition to the usual #00 Phillips screwdriver.
    http://www.ifixit.com/Guide/Installing-MacBook-Unibody-Model-A1342-Battery/1667/ 1

  • Can't find program: vncpipehelper.exe

    Hello everyone and happy new year,
    I used MDT to silently install RealVNC server 5.1 to win 7 installation. It went fine and could connect to machine until I joined the pc to domain. When I try now to connect to it I get ‘Connection refused (10061). The service is running but the RealVNC
    server icon is not in taskbar. When I go to programs and click on ‘VNC server’ it doesn’t do anything.
    In event viewer I get “UiProcess: Can’t find program: vncpipehelper.exe. The system cannot find the file specified.
    Could have this file been deleted when I joined the domain?
    Thanks,
    Archie

    Hi Archie,
    Connection refused (10061): No connection can be made because the destination computer actively refuses it. This error typically results from trying to connect to a service that is inactive on the foreign host, that is, one that does not have a server program
    running.
    vncpipehelper.exe belongs to product VNC® and was developed by company RealVNC Ltd. This file has description VNC® Server.
    As I known, common causes of this problem are:
    1.That the service is not running
    2.That the service is not running on the port you contacted
    3.That the internal IP of the VNC Server has changed, invalidating the port-forward rule in the router
    Another cause of this error can be: when the machine is very slow, the UI process exits with a MsgBox if it can't connect back to the server within one second.  This happens without any connection attempt to VNC Server from VNC Viewer.  This issue
    is fixed in VNC 5.0.3.
    To download the latest version, please go to
    www.realvnc.com/download/vnc/latest/
    Please Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Hopefully you could resolve your issue soon.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

  • Downloaded adobe premiere pro cs6 on computer but can't find program

    So today I've downloaded Premiere Pro CS6 3 times on my computer. All 3 times I can't find the program on the computer. My Creative Cloud is showing that it's installed, and if I check the "Uninstall" Folder, it's showing that's it's there too. I've done a search on the computer and it's no where to be found. Any help will be greatly appreciated. I have a Windows 7.

    I'm having the same problem as pinpointdenise and I'm also using Windows 7.
    It says it has downloaded but is nowhere to be found on my system. There's no folder, no trace of it.
    Yet if I go to 'uninstall', I can uninstall it. I've tried uninstalling and the re-installing with no luck, and even restarting my system each time.
    Even from the CC dashboard, the icon does not launch it like it does for all of the other programs.
    Anyone have any ideas as to why and how I can get Premiere to work?

  • I installed creative cloud, can't find program on new computer

    Just joined the mac family - after having pcs for years. i installed the creative cloud - downloaded photoshop and lightroom. i can't find it on my computer!! No icons....not like a pc where you go to programs and see everything. where are they?

    Mwbchaffin applications under Mac OS are installed to your Applications folder.  You can locate your installed applications from there.  I would also recommend reviewing Launch CC apps after install - http://helpx.adobe.com/creative-cloud/help/launch-creative-cloud-apps.html.

  • Can not find program

    Hi,
    If I want to view a PDF file on a other mac in our network I get the error "Can not find the program".  The program "Preview" is on my mac and locally I can view PDF files. Whats worng?

    Hi,
    Subscreen 4440 is called from PBO of Screen 4001 as:
    CALL SUBSCREEN SUBSCREEN_HEADER
         INCLUDING SYST-REPID TAXI_HEADER_SUBSCREEN.
    In order to know where exactly its called from VA03 ...put breakpoint at this call subscreen and execute.
    Regards ,
    Neha

  • Purchased iphone and its still registered under previous owner and don't/can't find out the needed info. how can I activate with my info?

    I purchased and Apple Iphone 4S 8g from a girl and it is still linked to her boyfriends Apple ID. He is in basic training and can not be contacted to find out the needed information to unhook the phone from his Find my Iphone. How can I go around needing that info to activate the phone under me so it can be used? I have already tried the Forgot passcode for your iphone and successfully restored the phone but it didnt fix the needing Apple ID of previos owner problem.

    You need to send the person who set the lock these instructions and get that person to follow them. If neither the person who set the lock nor the device's original owner can be reached, it's useless to you.
    Apple won't remove the lock for anyone other than the device's original owner. The activation lock is an anti-theft measure.
    (117468)

  • FindClass can't find a class. need  HELP.

    In my C++ code,
    JavaVMOption options[2];
    JavaVMInitArgs vmArgs;
    options[0].optionString=(char*)"-Djava.class.path=/javahome/V1.3/lib/dt.jar:/javahome/V1.3/lib/tools.jar:/javahome/V1.3/jre/lib/rt.jar:/javahome/V1.3/jre/lib/i18n.jar:/myapps/lib/myLib.jar";
    options[1].optionString = (char *) "-Djava.compiler=NONE";
    vmArgs.version=JNI_VERSION_1_2;
    vmArgs.options=options;
    vmArgs.nOptions=2;
    vmArgs.ignoreUnrecognized=JNI_FALSE;
    JNI_CreateJavaVM( &jvm, (void**)&ev, &vmArgs ));
    if(env->FindClass(my_apple_class)==NULL)
    fprintf(stderr, "Can't find my_apple_class !\n");
    else
    fprintf(stderr,"Found my_apple_class! \n");
    my_apple_class is in /myapps/lib/myLib.jar
    I am getting "Can't find my_apple_class!".
    Would anyone please explain to me why ?
    Thanks,
    --- Won k.

    I am getting "Can't find my_apple_class!".
    Would anyone please explain to me why ?The simple answer is because that it does not exist in the classpath.
    Since you neglected to tell us what the fully qualified class name is of the class that you are trying to load, as well as the value of the my_apple_class variable, it is impossible to say what the root of the problem is.

  • I have just got my iPad I have created Apple ID and it is asking me to verify my account at my Apple ID address but I can't find where I need to do this please help

    I have just got my iPad and have created my Apple ID and it is asking me to verify my account and that it has been sent to my Apple ID address but I cannot find where I need to be to do this please help

    I have my Apple ID but they sent verify to my personal email account which I went on the link but like I said when I try to use my iTunes or App Store it states I have not verified my apple id and I don't know what else to do

  • Can't find programs... CS4 Master Collection

    I have posted the responces from Tech but it seems you have to have an IT Degree for this software to work.
    Notes from Customer
    Thursday, October 8, 2009 9:29:56 PM PDT
    After installing the CS4 Master Collection, I am unable to find or use several programs; Adobe After Effects CS4, Adobe Encore CS4,
    Adobe Media Encoder CS4, Adobe Premiere Pro CS4 & Adobe Soundbooth CS4.
    I have a Dual processors (AMD Athlon MP 2800+ (2.12 GHz each)) Motherboard is Tyan s2462 Thunder K7, & 3 GB RAM.
    Operating System: Windows XP Professional
    Video display card / driver version: Nvidia GeForce 6200
    Has it ever worked? If so, what's changed? (provide comments in description field): No
    Same results with different file?: Not Applicable
    Same results with different computer?: Not Applicable
    Recent System Hardware or Software change?: No
    Notes to Customer
    Friday, October 9, 2009 2:13:42 AM PDT
    Hello K,
    Thank you for contacting Adobe Technical Support.
    I am responding in reference to your web-case dated 10/08/2009 . We
    would like to thank you for showing interest in Adobe Product. I
    understand the concern that you are facing with  Adobe CS4 Master
    Collection on launching .. I apologize for the inconvenience and I
    assure you that we will work together to resolve the issue.
    As you have mentioned after  installing the CS4 Master Collection, you
    are  unable to find or use several programs; Adobe After Effects CS4,
    Adobe Encore CS4,
    Adobe Media Encoder CS4, Adobe Premiere Pro CS4 <(>&<)> Adobe Soundbooth
    CS4.
    Try  Uninstalling and Reinstalling CS4 Master Collection.
    Find and read installation logs for Adobe Creative Suite 4 product. The
    link for the same is :
    http://go.adobe.com/kb/ts_kb400593_en-us
    Send us the Installation Log File so that we can narrow down your issue
    and specifically point out where the problem is .
    I hope this information is helpful to you. Get back to us as soon as
    possible.
    For future assistance you can always visit Adobe user to user Forums by
    this link : http://forums.adobe.com, where
    you can submit your queries and also you can searched for your issues on
    Adobe Knowledgebase on this link :
    http://www.adobe.com/cfusion/search/index.cfm?cat=support
    I hope this information is helpful, Please get back to us if this
    resolve your issue so that we can close the case
    and in case you face any issues or need any clarification you can
    contact us we will be more than happy to help you.
    For future reference use TS Case :181220137  at  Web Support Portal :
    http://www.adobe.com/go/supportportal.
    Warm Regards,
    CS
    Adobe Technical Support
    Notes from Customer
    Friday, October 9, 2009 5:59:38 AM PDT
    I did reinstall CS4 Master Collection. I first downloaded the version and after it didn't install everything I decided to purchased
    the DVD's and do a physical installation. I got the same results, missing programs. I have uninstalled the first downloaded version
    CS4 Master Collection before reinstalling the physical version. I am sending the log via the FTP since it is 64MB
    Notes to Customer
    Wednesday, October 14, 2009 2:47:55 AM PDT
    Hello K,
    Thank you for contacting Adobe Technical Support.
    I am responding in reference to your web-case dated 10/09/2009  . We
    would like to thank you for showing interest in Adobe Product. I
    understand the concern that you are facing with  Adobe CS4 Master
    Collection  while installaing.. I apologize for the inconvenience and I
    assure you that we will work together to resolve the issue.
    Going through the log files you have sent , I suggest you to follow
    these troubleshooting steps:
    1. Run the CS4 Clean Script for windows. The link for the same is :
    http://www.adobe.com/support/contact/cs4clean.html. Download and run the
    CS4 clean script for windows.
    2 .Run Adobe Creative Suite 4 or Point Product in a new user account.
    Create a new user account that has the same permissions as the account
    that you use when the problem occurs. If the problem doesn't recur, then
    the original user account may be damaged. For instructions on creating a
    new user account, see "To add a new user to the computer" in Windows
    Help or contact your system administrator.
    3. Repair and defragment hard disks (Windows XP)
    System errors can occur if hard disks contain damaged sectors or
    fragmented files. Repair and defragment hard disks, either by using the
    Error-checking tool and Disk Defragmenter utility included with Windows
    or by using a third-party disk utility (for example, Symantec Norton
    Utilities). You should run such utilities on each hard disk or
    partition. More information about the Error-checking tool and Disk
    Defragmenter appears below; for more information about a third-party
    disk utility, refer to the documentation for the utility.
    The Error-checking tool repairs bad sectors, lost allocation units and
    file fragments, cross-linked files, and invalid file names. To access
    the Error-checking tool, choose Start > My Computer, right-click the
    desired hard disk, and choose Properties from the menu. In the Local
    Disk Properties dialog box, click the Tools tab, and then click Check
    Now in the Error-checking area.
    Note: To prevent Disk Defragmenter from moving files to bad sectors of a
    disk, run the Error-checking tool before running Disk Defragmenter.
    Disk Defragmenter rearranges the files and free space on your computer
    so that files are stored in contiguous units and free space is
    consolidated in one contiguous block. To access the Disk Defragmenter
    utility, choose Start > All Programs > Accessories > System Tools > Disk
    Defragmenter.
    If  these troubleshooting steps don't resolve your issue then consult
    this kb doc for more details:
    Troubleshoot installation problems with Adobe Creative Suite 4 or Point
    Products on Windows XP
    http://go.adobe.com/kb/ts_kb404083_en-us.
    For future assistance you can always visit Adobe user to user Forums by
    this link : http://forums.adobe.com, where
    you can submit your queries and also you can searched for your issues on
    Adobe Knowledgebase on this link :
    http://www.adobe.com/cfusion/search/index.cfm?cat=support
    I hope this information is helpful, Please get back to us if this
    resolve your issue so that we can close the case
    and in case you face any issues or need any clarification you can
    contact us we will be more than happy to help you.
    For future reference use TS Case :181220137  at  Web Support Portal :
    http://www.adobe.com/go/supportportal.
    Warm Regards,
    CS.
    Adobe Technical Support
    Notes from Customer
    Thursday, October 15, 2009 4:54:40 PM PDT
    I went to a Business Fair tonight and saw a couple other designer friends and I mentioned my issue and they said that my software wo
    n't work because of the AMD processors. (Missing a chip set, CS worked on AMD processors, up until version 3) This is really depress
    ing! I would have to purchase a new PC in order for the rest of my software to work. This is so not cool! I can't swing a new PC rig
    ht now, business has been so slow almost non-existent.
    Notes to Customer
    Thursday, October 15, 2009 9:38:18 PM PDT
    Thank you for your reply K.
    This is to inform you that you meet the system requirements needed to
    run CS4 Master Collection.
    You can check out the same by visting the following link:
    http://go.adobe.com/kb/ts_kb406240_en-us.
    Master Collection
    2GHz or faster processor for DV;3.4GHz for HDV; dual 2.8GHz for HD
    Important: An SSE2-enabled processor is required for AMD systems.
    Microsoft Windows XP with Service Pack 2 (Service Pack 3 recommended) or
    Windows Vista Home Premium, Business, Ultimate, or Enterprise with
    Service Pack 1; (certified for 32-bit Windows XP and Windows Vista)
    Important: Adobe Photoshop Extended natively supports 64-bit Windows
    Vista, and Acrobat Pro natively supports 64-bit Windows XP and Windows
    Vista. Adobe Premiere Pro, After Effects, Soundbooth, Encore, and Adobe
    OnLocation are certified on 64-bit Windows Vista. Visit Apple.com for
    information about QuickTime compatibility with 64-bit editions of
    Windows.
    MS Hot Fix KB-930627: http://support.microsoft.com/kb/930627 is required
    for Microsoft Windows XP Home, Professional, or Tablet PC Edition with
    Service Pack 2 (64-bit); Windows Server 2003 (with Service Pack 2 for
    64-bit); or Windows Vista Home Basic, Home Premium, Business, Ultimate,
    or Enterprise without Service Pack 1 (64-bit)
    2GB of RAM (more RAM recommended when running multiple components)
    24.3GB of available hard-disk space for installation. Additional free
    space is required during installation (cannot install on flash-based
    storage devices.)
    1,280x900 display with OpenGL 2.0-compatible graphics card
    Graphics support for Shader Model 3.0
    Dedicated 7200 RPM hard drive for DV and HDV editing; striped disk array
    storage (RAID 0) for HD; SCSI disk subsystem preferred
    For SD/HD workflows, an Adobe-certified card for capture and export to
    tape. For additional information visit the Adobe Master Collection
    System Requirements.
    OHCI-compatible IEEE 1394 port for DV and HDV capture, export to tape,
    and transmit to DV device
    DVD-ROM drive (DVD+-R burner required for DVD creation)
    Blu-ray burner required for Blu-ray disc creation
    Microsoft Windows Driver Model- or ASIO-compatible sound card
    QuickTime 7.4.5 required for QuickTime and multimedia features
    Broadband Internet connection required for online services
    For the most up-to-date to system requirements select the Adobe Creative
    Suite 4 product on the Adobe Products page.
    Try and follow the same troubleshooting steps I have given you earlier.
    I am sure your issue would be resolved.
    Troubleshoot installation problems with Adobe Creative Suite 4 or Point
    Products on Windows XP
    http://go.adobe.com/kb/ts_kb404083_en-us.
    For future assistance you can always visit Adobe user to user Forums by
    this link : http://forums.adobe.com, where
    you can submit your queries and also you can searched for your issues on
    Adobe Knowledgebase on this link :
    http://www.adobe.com/cfusion/search/index.cfm?cat=support
    I hope this information is helpful, Please get back to us if this
    resolve your issue so that we can close the case
    and in case you face any issues or need any clarification you can
    contact us we will be more than happy to help you.
    For future reference use TS Case :181220137  at  Web Support Portal :
    http://www.adobe.com/go/supportportal.
    Warm Regards,
    CS.
    Adobe Technical Support

    Direct Download Links for Adobe Software
    And make a backup...
    Mylenium

  • Can't find program after downloading

    I just installed Firefox browser a few days ago. Downloaded one music file today - worked fine, went right to my Windows Media player. All I did was click 'download" next to the song. A window popped up in the top corner of my browser showing the setup.exe file but I didn't have to click on it or anything. Just went to my Windows Media Player and it was there. There I went to Google Earth and downloaded that. I made sure when I was downloading to "unclick" where it said to use their "Chrome" browser, etc., accepted the terms & then hit "download". I notice that I didn't get a choice to "save" or "run" the file like you do with Internet Explorer. The only choice it gave was "run" or "cancel". So I clicked run. When it was done I went to my "Downloads" and clicked on the GoogleEarth.setup.exe file and again it just said "Run". It showed it was downloading (got that "green" line), then it said it was downloaded and "Thanks". However, I could not find it in my Programs, not even when I did a search. I then went to Control Panel/Uninstall Programs and it was there. It shows that I have it, but even when I try to find it under "RUN" I get the Windows Message that the file can't be found. What's wrong?
    I have Windows 7 . I'm not sure which "Plug Ins" I have. Can this be the problem? What Plug ins should I have? Where do I find the ones I have? As I said I just installed Firefox 2 days ago, so it should be current.

    slykid 98,
    First off, do you have a Fifth Generation iPod? Only Fifth Gens can play the games from the iTunes Store (not Nanos, or any other type of iPod).
    If you do have a Fifth Generation iPod, then is it upgraded to at least 1.2 firmware? (the latest is 1.2.1; it's recommended to install that, since it's the latest, as opposed to 1.2).
    To see what version of firmware you have on your iPod, you can look at it through the "Summary" page in iTunes, or, go to "Settings > About" on your iPod.
    -Kylene

  • Can't find program to burn DVDs

    I used to burn and copy DVDs, XP OS. Now I cannot find the program to do that.
    Hope I explain myself ok
    Thank You
    not too techie minded

    Hey,
    What program you mean exactly?
    Nero or what else?
    For burning and copying disks I can recommend the freeware tools CD Burner XP. Its really small and fast tool, never had any problems with it.
    Check this!!!

  • Where is the "tools" option in the new firefox version. I can't find it and need to clear my cache

    I was told by a webmaster that I need to "clear my cache" to make their website work right again. I have instructions to go to the "tools" option, but the new version of firefox doesn't have "tools" that I can find. Can someone please help. thanks

    Press either Alt or F10 and the old menus will temporarily be displayed.

  • Where can I find programming and packaging guidelines?

    I work on an open source project of mine. It's not ready yet.
    Since I never created a real-world application before, I need some guidelines about general system integration.
    Where should I put the config files?
    What should be their syntax?
    What should be included in the tarball I will create and what should be the folder structure?
    Where should I put the files of the application once it's finished? There are many possible locations in the filesystem.
    You see, I need some guidance, please.
    Any help appreciated.
    Thanks in advance!

    You can have a look at some established projects that are using similar tools - where do they put the application files etc.
    There are things like XDG_CONFIG_HOME, XDG_DATA_HOME etc. http://standards.freedesktop.org/basedi … atest.html

  • Need to find program, desperately need help.

    A few months ago, I had a problem. My PC wouldn't recognize my external hard drive. On a forum, I found a link to a program written by an individual which would recognize drives that the system wouldn't recognize. This program could be used for recovering files, but was especially used to recover picture files.
    Let me explain a bit. In two weeks, I lost three computers. First, I reloaded XP on my Thinkpad. When I tried to reload my data from my external hard drive, the hard drive wasn't recognized by my Thinkpad. Somewhere in a forum post, I found a link to this wonderful program which allowed me to restore my data.
    Next, my mother-in-law's PC died (first PC lost). Crashed hard drive, no backup. With this same program, I was able to recover her data. Next, my desktop hard drive failed (second PC lost). No real problem. It was a 2005 PC, and I had everything backed up to my external hard drive, and thus to my Thinkpad.
    Then my Thinkpad died (third PC lost). Bad motherboard. But all my data was on that PC!! I have resurrected a desktop from the carcass of my mother-in-law's PC by installing an older hard drive, but my data is still trapped on the external hard drive. And I don't know where the program was I used to restore it last time.
    Does this program sound familiar to anyone? It was simple to run and worked very well. I believe I had info about it - on my Thinkpad. Any help would be appreciated. I believe it had a very simple name such as "test disk" or something similar. Help!! Thanks!

    Thank you all!! Yes, I'm looking for TestDisk. Got all my data back! Yeah!!

Maybe you are looking for

  • HP Officejet 4630 Printer....how do change from the default setting when printing from the web?

    HP Officejet 4630.....Windows 8, 64-bit When printing from the web I am not able to change the print size. 1. Click File on Menu bar 2. Click Print open dialog box 3. Click Properties open printing shortcuts Everything in Printing Shortcuts have a lo

  • Corruption in a 2D after stopping a VI

    I hope my problem is fairly simple, as I want to do two small things. 1.  I want to write an array to a comma separated value text file when exiting a file, and this works.  The problem is when I do this, my array gets corrupted, and data is scramble

  • Error Message "Text Element definition is not valid"

    Hi , on trying to display workflow in pftc_dis or spdd , I am getting the eror "Text element definition is not valid". On debugging further , I found that the method cl_swf_cnt_factory=>create_swd_task_container does not return the workflow container

  • A possible *bug* in java jcombobox

    Hi all, I think i found a possible bug in java jcombobox .. i am sure some of you must have already experienced it.. supposedly you put a jcombobox in a jpanel returned the panel from a method to a calling method.. and that method adds it to another

  • Only on tempfile used during sql sorts

    environment : Entreprise 92010/W2K My temp tablespace (locally managed and temporary) has 3 tempfile, each with autoextend and maxsize limit. When i create an index on a big table, my 3 tempfile are used. But when a big sort occurs during a sql state