Installing Xsan 1.0 on a new tiger system - Help - Urgent

Here's my situation
I purchased a version 1.0 copy of Xsan.
I am trying to install it on a new dual 2.7 G5 with tiger installed.
It says I cannot do this because the version of xsan and tiger are not compatible.
Is there a way to do this, or am I screwed?
Thanks in advance for your help
DBK

Ok, first what's the version of Tiger? and who sold you a 1.0 version knowing that you were running Tiger? You will need the 1.2 version and then you'll need the 1.3 upgrade from apple.
Please take your time to plan the build of your Xsan and the deployment as well.
Poor planning with this type of software and hardware will come back to bite you!!!

Similar Messages

  • I currently use photoshop elements 10 on my laptop. My laptop has crashed and i need to install the exsisting software on my new laptop. please help?

    I currently use photoshop elements 10 on my laptop and my laptop crashed. I need to install the existing software on my new laptop. please help!

    Yes you can directly use the upgrade version.
    You can visit this page Photoshop Elements (PSE) knowledge base. for further assistance.
    Regards
    Kishan

  • HT1329 i have re-installed I-tunes and have a new operating system (Win 7 Pro). I now cannot sync as I-tunes says my I-Pod is already connected to a library and wants to erase my music on the I-Pod. What do i do to get around this problem?

    I have re-installed I-tunes and have a new operating system (Win 7 Pro).
    I now cannot sync as I-tunes says my I-Pod is already connected to a library and wants to erase my music on the I-Pod. What do I do to get around this problem?

    An iPod is designed to be synced with only one computer/iTunes library at a time. If you try to sync the iPod with a new/different iTunes library, iTunes on the new/different computer will replace the contents currently on the iPod with whatever is currently stored in its own library.
    If the music and content on your iPod is not in iTunes or in a backup somewhere you can use the information in this user tip from another forum member turingtest2 to help you copy this content from the Nano back to the PC and into iTunes.
    https://discussions.apple.com/docs/DOC-3991
    B-rock

  • Convert C++ prog into Java( I m new in java)help urgent

    hi all,
    i am very new in java. i have code of C++.i have to convert it in to Java.please help me on urgent basis.plz provide me solution.
    I am looking for positive response.code is below:
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #include <sys/stat.h>
    #include <fstream.h>
    #include <iostream.h>
    //#include <sha.h> //24112003
    //#include<wincrypt.h>
    char ntc(unsigned char n){
    if (n<26) return 'A'+n;
    if (n<52) return 'a'-26+n;
    if (n<62) return '0'-52+n;
    if (n==62) return '+';
    if (n==63)return '/';
    unsigned char ctn(char c){
    if (c=='/') return 63;
    if (c=='+') return 62;
    if ((c>='A')&&(c<='Z')) return c-'A';
    if ((c>='a')&&(c<='z')) return c-'a'+26;
    if ((c>='0')&&(c<='9')) return c-'0'+52;
    if (c=='~') return 80;
    return 100;
    int b64decode(char from,char to,int length){
    unsigned char c,d,e,f;
    char A,B,C;
    int i;
    int add;
    char *tot=to;
    for (i=0;i+3<length;){
    add=0;
    A=B=C=0;
    c=d=e=f=100;
    while ((c==100)&&(i<length)) c=ctn(from[i++]);
    while ((d==100)&&(i<length)) d=ctn(from[i++]);
    while ((e==100)&&(i<length)) e=ctn(from[i++]);
    while ((f==100)&&(i<length)) f=ctn(from[i++]);
    //if (f==100) return -1; /* Not valid end */
    if (c<64) {
    A+=c*4;
    if (d<64) {
    A+=d/16;
    B+=d*16;
    if (e<64) {
    B+=e/4;
    C+=e*64;
    if (f<64) {
    C+=f;
    to[2]=C;
    add+=1;
    to[1]=B;
    add+=1;
    to[0]=A;
    add+=1;
    to+=add;
    if (f==80) return to-tot; /* end because '=' encountered */
    return to-tot;
    int b64get_encode_buffer_size(int l,int q){
    int ret;
    ret = (l/3)*4;
    if (l%3!=0) ret +=4;
    if (q!=0){
    ret += (ret/(q*4));
    /* if (ret%(q/4)!=0) ret ++; */ /* Add space for trailing \n */
    return ret;
    int b64strip_encoded_buffer(char *buf,int length){
    int i;
    int ret=0;
    for (i=0;i<length;i++) if (ctn(buf)!=100) buf[ret++] = buf [i];
    return ret;
    int b64encode(char from,char to,int length,int quads){
    // 3 8bit numbers become four characters
    int i =0;
    char *tot=to;
    int qc=0; // Quadcount
    unsigned char c;
    unsigned char d;
    while(i<length){
    c=from[i];
    *to++=ntc(c/4);
    c=c*64;
    i++;
    if (i>=length) {
    *to++=ntc(c/4);
    *to++='~';
    *to++='~';
    break;
    d=from[i];
    *to++=ntc(c/4+d/16);
    d=d*16;
    i++;
    if (i>=length) {
    *to++=ntc(d/4);
    *to++='~';
    break;
    c=from[i];
    *to++=ntc(d/4+c/64);
    c=c*4;
    i++;
    *to++=ntc(c/4);
    qc++; /* qz will never be zero, quads = 0 means no linebreaks */
    if (qc==quads){
    *to++='\n';
    qc=0;
    /* if ((quads!=0)&&(qc!=0)) to++='\n'; / /* Insert last linebreak */
    return to-tot;
    char* mEncryptPassword(char* mPassword)
    char mEncryptedPassword[200]; // To hold encrypted password.
    //char* mEncryptedPassword = new char[200];
    char mPrimEncryptedPassword[200];
    char * temp = new char[200];
    //unsigned char* md; // 19122003
    //md = new unsigned char[100]; // 19122003
    memset(mEncryptedPassword, '\0', sizeof(mEncryptedPassword));
    memset(mPrimEncryptedPassword, '\0', sizeof(mPrimEncryptedPassword));
    strcpy(mPrimEncryptedPassword, mPassword);
    //strcpy(mPrimEncryptedPassword, (char*) SHA1((unsigned char*) mPassword, strlen(mPassword), NULL));
    //strcpy(mEncryptedPassword, (char*) SHA((unsigned char*) mPassword, strlen(mPassword), md)); // 19122003
    //strcpy(mEncryptedPassword, (char*) SHA((unsigned char*) mPassword, strlen(mPassword), md)); //19122003
    b64encode(mPrimEncryptedPassword, mEncryptedPassword, strlen(mPrimEncryptedPassword), 0);
    // If successfully encrypts..
    if (mEncryptedPassword != NULL)
    //char * temp = new char[strlen(mEncryptedPassword)+1];
    strcpy(temp,mEncryptedPassword);
    // strcpy(mRetVal,mEncryptedPassword);
    return (char*)temp;
    //return (mEncryptedPassword);
    //return (char*) md; // 19122003
    else
    return ("Error");
    char* mDecryptPassword(char* mPassword)
    char mDecryptedPassword[200]; // To hold decrypted password.
    char mPrimDecryptedPassword[200];
    char * temp = new char[200];
    // 02032007
    memset(mDecryptedPassword, '\0', sizeof(mDecryptedPassword));
    memset(mPrimDecryptedPassword, '\0', 200);
    strcpy(mPrimDecryptedPassword, mPassword);
    b64decode(mPrimDecryptedPassword, mDecryptedPassword, strlen(mPrimDecryptedPassword));
    // If successfully decrypts..
    if (mDecryptedPassword != NULL)
    //char * temp = new char[strlen(mEncryptedPassword)+1];
    strcpy(temp,mDecryptedPassword);
    // strcpy(mRetVal,mDecryptedPassword);
    return (char*)temp;
    //return (mEncryptedPassword);
    //return (char*) md; // 19122003
    else
    return ("Error");
    void main(int argc, char* argv[])
    cout << mEncryptPassword(argv[1])<<endl<<flush;
    cout << mDecryptPassword(mEncryptPassword(argv[1]))<<endl<<flush;
    Anubhav

    endasil wrote:
    I just thought of how ridiculous this would sound in any other profession:
    Surgeons:
    plz plz help I have patient dying need to insert new kidney into 90yr old patient plz someone come do itLawyers:
    Help client guilty need good defense (I m new in law)help urgentHow come we get stuck with the lazy low-lifes?Because there's no legal requirement that a software developer must be licensed

  • New Phone System Help

    I've been trying to get information on what to get for a new phone system, but both Cisco, and Cisco partners are being unhelpful. I guess they don't want my money. Anyways...
    I'm looking at a UC560.
    Does this come with CME?
    Here's my scenario:
    Cisco 2821 Advanced IP IOS 124-24.T3.
    100 staff
    30-45 phones. (Our staff share phones)
    Currently 5 different lines, possibly going to high as 10.
    1Gb backbone switched network using Catalyst 2960.
    We want to be able to use Cisco Mobile 8.1 on our iPhones.
    Any suggestions?
    It's so hard finding information for these things, even when I do contact a partner!

    Hi Nick
    In the interests of being a Cisco partner that does try to assist , here's a few pointers:
    1. A UC560 does indeed run CME. It's a bundle of IOS, CME, CUE (voicemail), 8 PoE ports and also analog / digital interfaces depending on the model chosen. The UC560 can support up to 104 handsets / users. 
    2. On this note, your 2821 can also run CME (simply with the purchase of the CME Software and some additional modules) and can support up to 48 handsets.
    Both the UC560 and 2821 can support a variety of interfaces to connect to external lines incuding analog (FXS, FXO and E&M) and digital (ISDN PRI and BRI). No issue with supporting 10 incoming calls on either platform.
    Net result, you'll need to decide whether you want to run CME (and possibly Unity Express) on you current 2821, or purchase a new UC560. My gut feeling (without doing the maths) is that it will probably be cheaper to go with the UC560 as you'll may need additional DRAM /flash on the 2821, you'll need a new software license, Unity Express module, DSPs etc.
    CME 8.6 supports the iPhone software client, so you will need to ensure that you get the correct software image on your 2821 / UC560 depending on which way you go.
    The 2960 is a suitable platform for running this size of network. There are various models available with PoE, gigabit uplinks etc. It has no layer 3 switching support, so you'll need another device to route between your VLANs which can either be an additional layer 3 switch (3560 or higher) or the CME router itself. Be careful of running high layer 3 traffic through a CME box. I've seen calls dropped when one of my esteemed colleagues started copying multi gigabit VMware images around when the CME Router was doing the layer 3.
    HTH. If you need any more details, post back here.
    Barry

  • Problem when installing Teaming 2.0 on an new SLES11 system

    hello,
    I've just installed SLES11 on a new computer and after that, I've done a basic installation for Teaming 2.0 .
    Evrything seems to be fine during installation process but it's impossible to connect with an HTTP 404 error message and The requested resource () is not available.
    I've stopped teaming, cleaned the catalina.out file and even before attempting any connection here is the significant content :
    INFO: JK: ajp13 listening on /0.0.0.0:8009
    Sep 30, 2009 4:16:00 PM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/14 config=null
    Sep 30, 2009 4:16:00 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 10338 ms
    Exception in thread "Quartz Scheduler [Sitescape]" Sep 30, 2009 4:16:56 PM org.apache.catalina.loader.WebappClassLoader loadClass
    INFO: Illegal access: this web application instance has been stopped already. Could not load org.quartz.utils.ExceptionHelper. The eventual following stack trace is caused by an error thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access, and has no functional impact.
    java.lang.IllegalStateException
    at org.apache.catalina.loader.WebappClassLoader.loadC lass(WebappClassLoader.java:1273)
    at org.apache.catalina.loader.WebappClassLoader.loadC lass(WebappClassLoader.java:1233)
    at java.lang.ClassLoader.loadClassInternal(ClassLoade r.java:320)
    at org.quartz.SchedulerException.getUnderlyingExcepti on(SchedulerException.java:169)
    at org.quartz.SchedulerException.toString(SchedulerEx ception.java:265)
    at java.lang.String.valueOf(String.java:2826)
    at java.lang.StringBuffer.append(StringBuffer.java:21 9)
    at org.springframework.core.NestedExceptionUtils.buil dMessage(NestedExceptionUtils.java:47)
    at org.springframework.core.NestedRuntimeException.ge tMessage(NestedRuntimeException.java:67)
    at java.lang.Throwable.getLocalizedMessage(Throwable. java:267)
    at java.lang.Throwable.toString(Throwable.java:343)
    at java.lang.String.valueOf(String.java:2826)
    at java.io.PrintStream.println(PrintStream.java:771)
    at org.apache.tomcat.util.log.SystemLogHandler.printl n(SystemLogHandler.java:242)
    at java.lang.Throwable.printStackTrace(Throwable.java :461)
    at java.lang.ThreadGroup.uncaughtException(ThreadGrou p.java:974)
    at java.lang.ThreadGroup.uncaughtException(ThreadGrou p.java:965)
    at java.lang.Thread.dispatchUncaughtException(Thread. java:1831)
    Some idea on this Quark Scheduler exception ?
    Regards
    Daniel

    Sorry but the first problem while launching is not the one described before.
    Here is the first one in catalina.out :
    FROM_HEADER=
    LANG=POSIX}
    2009-10-01 06:43:40,753 WARN [main] [org.hibernate.impl.SessionFactoryObjectFactory] - InitialContext did not implement EventContext
    2009-10-01 06:43:41,963 INFO [main] [org.kablink.teaming.license.LicenseManager] - Loading license
    2009-10-01 06:43:42,916 INFO [main] [com.novell.teaming.docconverter.impl.TextStellentC onverter] - DOCCONVERTER: Loading config/docconverter.cfg
    2009-10-01 06:43:43,897 ERROR [main] [org.springframework.web.context.ContextLoader] - Context initialization failed
    org.springframework.beans.factory.BeanCreationExce ption: Error creating bean with name 'defaultEmailFormatter' defined in ServletContext resource [/WEB-INF/context/applicationContext.xml]: Cannot resolve reference to bean 'smtpService' whil
    e setting bean property 'smtpService'; nested exception is org.springframework.beans.factory.BeanCreationExce ption: Erro
    r creating bean with name 'smtpService' defined in ServletContext resource [/WEB-INF/context/applicationContext.xml]: In
    vocation of init method failed; nested exception is java.lang.RuntimeException: java.net.SocketException: Permission denied
    It's perhaps easier to resolve.
    Daniel

  • When I go to install the update - it says I don't have permissions to access some of the items, so cannot install. Ihave a MACBook Pro (new). Please help.

    See above. When updating the newest version of Firefox - I go to drag the logo into my applications folder and it says "the operation cannot be completed, because you don't have permission to access some of the items". and it will not let the process continue. Can I fix this, so I can install the update?
    I have a MAC Version 10.6.4 (it's practically brand new!)

    * Download a new copy of the Firefox program: http://www.mozilla.com/firefox/all.html
    * Trash the current Firefox application to do a clean (re)install.
    * Install the new version that you have downloaded.
    Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks and other personal data.

  • Trouble installing After Effects cs6 on my new Yosemite system.

    I then attempted to install all the software from my old computer. Installed Entire cs6 suite, after effects is greyed out.
    When i tried to open, i received an error " You can’t use this version of the application “Adobe After Effects CS6” with this version of OS X. You have “Adobe After Effects CS6” 11.0. "
    I then read online that there was fix by updating to After Effects to 11.4. Due to the fact that i cant open program to update from within i downloaded update and tried to install via the installer. I acts like it it will start even giving a timeline of how long it will take then closes and says update failed.
    It then says you can look at error log, when i do it says  " Adobe After Effects CS6 (11.0.4) update Update is not applicable. Error Code: U44M2P28 ".
    Anyone knows how i can fix this issue and get after effects working? Thanks in advance

    There have been a few people having problems getting updates and a few different solutions. It all depends on what's messed up on your machine.
    It could be as simple as fixing permissions: fixing permissions problem that impedes start of Adobe applications
    Somewhat advanced, but it worked for somebody: Unable to upgrade to 11.0.1 for AE CS6
    You may have to defeat a daemon... Newly installed After Effects CS6 won't launch.
    One solution for a different OS and AE version, but might solve it: Mavericks and AE 12.0/12.1/12.2

  • Problems installing a platform in Linux Mandrake... HELP URGENT!!

    Hi all.
    I am new to ATG 5.6 (as developer) and can't get it started. Need help
    ASAP!
    Environment:
    Mandrake Linux 8.1 (2.4.8-26)
    ATG 5.6
    When running ./startDynamo (sh script):
    java.lang.NullPointerException
    at atg.applauncher.AppLauncher.getMainClass(AppLauncher.java:421)
    at atg.applauncher.AppLauncher.getMainMethod(AppLauncher.java:438)
    at atg.applauncher.AppLauncher.launch(AppLauncher.java:596)
    at atg.applauncher.dynamo.DynamoServerLauncher.main
    (DynamoServerLauncher.java :149)
    error happens at line 103 of <D5dir>/home/bin/dynamoEnv.sh
    What's wrong??
    Infinite Thx in advance
    Bernardo

    You need to start it with something akin to:
    bin/startDynamo <servername> -l -m <Components>
    ie.
    bin/startDynamo appa0 -l -m DCS DPS DSS B2CCommerce CustSvc
    Expect to have do some work to get it up. Also, this is all in the
    Gettin Started manuals...

  • New Tiger 10.4.3 install problems on G3

    I have been a windows person up to now (sorry). I bought an old Blue & White G3 from a salvage store because I wanted to learn to use a Mac. No disks or manuals, and I didn't need any of the software on the machine. PowerMac G3 Series Model 1.1, w/ PowerPC 750 processor and 768 meg ram (I installed an extra 512) and Firewire built in.
    I bought a retail copy of Tiger 10.4.3 and installed it. I then screwed it up playing around with its settings. I reinstalled it. I then screwed it up again attempting to install a 3rd party processor (PowerLogix) and reinstalling Tiger with it (not realizing Tiger doesn't like this). I stopped messing with it.
    I'm now trying to get back into it. I put the old processor back in. I've tried to install Tiger a couple of times; the last one erasing and installing new. It gets to 52-53% installed as far as writing files is concerned and then times out and says install failed or tells me to restart, which basically starts me over. I've retried in each case with no luck.
    On looking at the error log and trying to repair the disk, the verify tells me that "keys are out of order" and "the volume needs to be repaired". When I attempt to repair, I get a message about "rebuilding the catalog B-Tree", the repair fails, and I get a "missing thread rec id=105" message, and then a "invalid extent entry, volume check failed" and finally something about something equaling 32658745236145 (a big number) when it should equal 0.
    I've tried this 5-6 times now and I'm at the end of what little knowledge I have about Mac's. I've not pulled the extra ram yet, but that's next.
    Any other suggestions?
    All help is appreciated.
    Thank you.
    PowerMac G3   Mac OS X (10.4.3)  
    PowerMac G3   Mac OS X (10.4.3)  

    Update:
    Pulling the new memory chips helped.
    This time the install got to installing the "Additional Essentials" before blowing up. There was a BomFilerror 5: I/O Error and I received a "Re-Start the System" message.
    I re-started again, ran First Aid on the disk, Verification gave me an "Invalid Volume Free Block Count" message and the Repair worked.
    It's now installing again, and has gotten as far as installing the various Languages.
    Do I have to start from scratch each time it blows up (if it blows up again)?
    Does this sound like a potential bad memory issue?
    Thanks in advance.
    PowerMac G3   Mac OS X (10.4.3)  

  • Once again... Installing xsan 1.4.2 on 10.5. HOW?!

    So long story short, has ANYONE gotten 1.4.2 to install on a clean 10.5 install?
    I have tried hacking the pkg, hacking the SystemVersion.plist, installing all the files by sudo in terminal. NOTHING WORKS!
    Installing tiger first is not an option since we are on Intel xserves now.
    I will consider ANY solutions.
    I have seen this page:
    http://support.apple.com/kb/TA24380
    On there is says:
    Standalone Installer
    A standalone installer is available from Apple Downloads.
    But it seems no one has been able to find this.
    Help guys.

    I recently clean installed our Intel MDC with 10.5.8 and xsan 1.4.2. This is how I did it.
    Clean install Leopard server and update to 10.5.8 v1.1
    When setting up the install, do not select xsan metadata controller as it will ask you for the disk, just create a standalone server.
    When your server is finished install xsan 1.4 from your disk, then update to 1.4.2. I have never seen a standalone installer for xsan 1.4.2. I always install 1.4 and then update.
    The other option is to install xsan 2.1.1 which I have found much more stable than 1.4.2
    Hope this helps

  • Before I install snow leopard, I tried to move tiger into the external harddrive. My mac says it can't do because it is the OS X. So I installed snow leopard without removing tiger. After that, my computer often freezes. How can I remove tiger?

    Before I install snow leopard, I tried to move tiger into the external harddrive. My mac says it can't do because it is the OS X. So I installed snow leopard without removing tiger. After that, my computer often freezes. How can I remove tiger? Or How can I prevent my mac from freezing?

    McHagihara wrote:
    Before I install snow leopard, I tried to move tiger into the external harddrive. My mac says it can't do because it is the OS X. So I installed snow leopard without removing tiger. After that, my computer often freezes. How can I remove tiger? Or How can I prevent my mac from freezing?
    When you installed Snow Leopard, Tiger was replaced, leaving your programs and files intact.
    What is causing your freezing problem is unknown, you can take Kappy's advice and remove everything, but you lose your files and free iLife programs that came with Tiger/new machine.
    The 10.6.3 disk you "upgraded" with has the full 10.6.3 on it, but no free iLife suit, so a erase and install will remove what you already have installed.
    You can try to locate your problem without the erase and install method by running through this list of fixes.
    Step by Step to fix your Mac
    But before you do anything, backup your personal data off the machine to a extenal drive and disconnect.
    Most commonly used backup methods
    Because if you have to follow Kappy's advice and wipe and install 10.6 fresh, it will cure your problem in nearly 99% of cases, but you have to rebuild everything. All programs and files.
    How to erase and install Snow Leopard 10.6
    If this is all too much for you, then STOP and call a local PC/Mac service or competant friend to assist you.
    Yuo might need to install more RAM into the machine to make 10.6 run better as well.

  • I am trying to download iTunes on my new desktop computer (Windows 7, 64 bit).  It starts installing, and then stops with the message- "The System Administrator has set policies to prevent this installation."  I am the sole user- please help.

    I am trying to download iTunes on my new desktop computer (Windows 7, 64 bit).  It starts installing, and then stops with the message- "The System Administrator has set policies to prevent this installation." This is a stand alone computer and I am the sole user.   Please help.

    This is a Microsoft Windows Issue.
    From a MS Support Engineer:
    "Hi,
    ·        Is the computer on a domain?
    ·        Is the issue isolated to only this software or you get the same error message with other software’s as well?
    Try the steps below and check if it helps.
    Step 1:
    Run the software setup file as an administrator and check if it helps.
    a. Right click on the setup file of the software that you are trying to install.
    b. Select “Run as administrator”.
    Step 2:
    Temporarily disable the antivirus software running on the computer and check if you are able to install the software.
    Disable antivirus software
    Warning:
    Antivirus software can help protect your computer against viruses and other security threats. In most cases, you shouldn't disable your antivirus software. If you have to temporarily disable it to install other software, you should re-enable it as soon as you're done. If you're connected to the Internet or a network while your antivirus software is disabled, your computer is vulnerable to attacks.
    Step 3:
    a. Click Start, type "Local Security Policy" (without quotes) and press enter.
    b. Click on Software Restriction Policies.
    c. In the right pane, double click on the "enforcement".
    d. Select “All users except local administrators”.
    e. Click Ok and restart the computer and check if the issue is fixed."

  • I am trying to install a registered copy of Photoshop Lightroom that I never installed on my Apple iMac with software version 10.10.  I get the message "Adobe Lightroom 1.  Cannot be installed on this disk because a newer version of this software already

    I am trying to install a registered copy of Photoshop Lightroom that I never installed on my Apple iMac with software version 10.10.
    I get the message “Adobe Lightroom 1.  Cannot be installed on this disk because a newer version of this software already exists on this disk”
    If it is here – I cannot find it anywhere, and I don’t believe that I ever installed it.
    I have ordered the upgrade to Lightroom 5.0 and figured that I should install Lightroom 1.0 first.
    How can I solve this problem

    Actually when LR 5 starts for the first time after it is installed it will have a dialog to Buy, Try or Enter a serial number. You select Enter a serial number and enter the LR 5 serial number first and then because it is an upgrade serial number it will ask for the serial number of a Previous version. You then enter the LR 1 serial number.

  • I am trying to install the cs5 upgrade on my new laptop, however, I cannot locate my cs4 program to install first.  Am I out of luck?

    I am trying to install the cs5 upgrade on my new laptop, however, I cannot locate my cs4 program to install first.  Am I out of luck?

    You do not need the older version installed in order to install the upgrade version, but you do need the serial number from CS4 to prove that you qualify for using CS5.  During the activation process for CS5, after you successfully enter the CS5 serial number you will be asked to select the qualifying version (CS4) from a list and to enter its serial number.
    If you registered CS4 when you originally installed it then you might be able to find the serial number available in your Adobe account online in the Products section.
    Find your serial number quickly

Maybe you are looking for

  • HT1665 cable to connect iPod touch to HDTV

    Is there a cable to connect my 5th Generation iPod touch to hdmi cable ? and what would be the name or brand ?

  • BASIC PREPARATION FOR INSTALLATION OF A NEW SYSTEM

    Here is some advice on the steps to take for a successful installation of Snow Leopard (or any major system update or upgrade): 1. Do not start until you have made two bootable back-ups, so that you can easily return to the situation you had before t

  • Error testing Business Rules tutorial (rules-104 Order Approval)

    Hi all, I followed step by step "rules-104" tutorial and when testing I get the following exception: Fact not found in the rule engine working memory, rule session execution failed. The rule session 4 failed because an instance of the fact order.Orde

  • Synchronous call to process web service

    Hi All, Right now in my project I have exposed some process web services to be used by front end. But these process web service are asynchronous and does not return any output unless its an exception. Is there any other approach where front end syste

  • Restart VM Import?

    Hi, When importing a Virtual Machine Template that is quite large (say an existing VM 2 Virtual Machine) into VM 3 - we provide the http URL to the source files.  If there are multiple files (say 3 files all 20gb each, plus the vonfig file) - if the