is it possible to install CC on one of my other mac/PC with the same subscription?

is it possible to install CC on one of my other mac/PC with the same subscription?

Hello

Thank you Lara, who was the answer that I wanted.

Respect of

Gustav

Tags: Adobe

Similar Questions

  • Photoshop can be installed in two different computers with the same subscription? and if so, a computer can be a Mac and other Windows-based?

    One of my hobbies is photography, from time to time I need to improve a picture for my personal use, I do not have something comercial. At home, I have a Mac computer, in my office, I have a Windows-based computer, can I have my moved license from one computer to another, I will never work in two computers at the same time, but now you pay for an annual subscription, I was wondering if it is possible, I don't want to pay for two licenses for the very little work I do in Photoshop your answers will be appreciated.

    Thank you

    Wilson

    Hello

    You can install the software on two computers. These two computers can be Windows, Mac OS, or everyone.

    If you install on a third computer, you will be asked to turn off this feature on the other two computers. You can then re-enable one of the two previous computers and use Cloud Creative apps on it.

    Thank you best regards &,.

    MoHA

  • one-to-many selfjoin, delete records with the same rank or a substitution

    Sorry for my poor choice of the title of the discussion, feel free to suggest me a more relevant


    I rewrote for clarity and as a result of the FAQ post.


    Version of DB


    I use Oracle10g Enterprise 10.2.0.1.0 64-bit


    Tables involved

    CREATE TABLE wrhwr (
    wr_id INTEGER PRIMARY KEY,
    
    eq_id VARCHAR2(50) NULL,
    date_completed DATE NULL,
    status VARCHAR2(20) NOT NULL,
    pmp_id VARCHAR2(20) NOT NULL,
    description VARCHAR2(20) NULL);
    
    


    Examples of data


    INSERT into wrhwr  VALUES (1,'MI-EXT-0001',date'2013-07-16','Com','VER-EXC','Revisione')
    INSERT into wrhwr VALUES  (2,'MI-EXT-0001',date'2013-07-01','Com','VER-EXC','Verifica')
    INSERT into wrhwr  VALUES (3,'MI-EXT-0001',date'2013-06-15','Com','VER-EXC','Revisione')
    INSERT into wrhwr  VALUES (4,'MI-EXT-0001',date'2013-06-25','Com','VER-EXC','Verifica')
    INSERT into wrhwr  VALUES (5,'MI-EXT-0001',date'2013-04-14','Com','VER-EXC','Revisione')
    INSERT into wrhwr  VALUES (6,'MI-EXT-0001',date'2013-04-30','Com','VER-EXC','Verifica')
    INSERT into wrhwr  VALUES (7,'MI-EXT-0001',date'2013-03-14','Com','VER-EXC','Collaudo')
    
    


    Query used

    SELECT *
      FROM (SELECT eq_id,
                   date_completed,
                   RANK ()
                   OVER (PARTITION BY eq_id
                         ORDER BY date_completed DESC NULLS LAST)
                      rn
              FROM wrhwr
             WHERE     status != 'S'
                   AND pmp_id LIKE 'VER-EX%'
                   AND description LIKE '%Verifica%') table1,
           (SELECT eq_id,
                   date_completed,       
                   RANK ()
                   OVER (PARTITION BY eq_id
                         ORDER BY date_completed DESC NULLS LAST)
                      rn
              FROM wrhwr
             WHERE     status != 'S'
                   AND pmp_id LIKE 'VER-EX%'
                   AND description LIKE '%Revisione%') table2,
           (SELECT eq_id,
                   date_completed,            
                   RANK ()
                   OVER (PARTITION BY eq_id
                         ORDER BY date_completed DESC NULLS LAST)
                      rn
              FROM wrhwr
             WHERE     status != 'S'
                   AND pmp_id LIKE 'VER-EX%'
                   AND description LIKE '%Collaudo%') table3
     WHERE     table1.eq_id = table3.eq_id
           AND table2.eq_id = table3.eq_id
           AND table1.eq_id = table2.eq_id
    
    

    The above query is intended to selfjoin wrhwr table 3 times in order to have for each line:

    • eq_id;
    • date of the completion of a verification type work request for this eq_id (aka table1);
    • date completion of a line (aka table2) type wr for this eq_id;
    • date of completion of a type wr Collaudo (aka table3) for this eq_id;

    A separate eq_id:

    • can have different completion of many requests for work (wrhwr records) with dates or date of completion (date_completed NULL column).
    • in a date range can have all types of wrhwr ('verification', 'Line', 'Problem'), or some of them (e.g. audit, line but not Collaudo, Collaudo but not verification and line, etc.);
    • must not repeat the substrings in the description;
    • (eq_id, date_completed) are not unique but (eq_id, date_completed, description, pmp_id) must be unique;

    Expected results

    Using data from the example above, I expect this output:

    eq_id, table1.date_completed, table2.date_completed, table3.date_completed

    MI-ext-001,2013-07-01,2013-07-16,2013-03-14 <- to this eq_id table3 doesn't have 3 lines but only 1. I would like to repeat the value most in the rankings in table 3 for each line of output

    MI-ext-001,2013-07-01,2013-06-15,2013-03-14 <-I don't want this line of table1 and table2 with both 3 lines match must be in terms of grade (1st, 1st) (2nd, 2nd) (3rd, 3rd)

    MI-ext-001,2013-06-25,2013-06-15,2013-03-14 <-2nd table1 joined the 2nd row from table2

    MI-ext-001,2013-04-30,2013-04-14, 2013-03-14 <-1 table1, table2 rank rank 1, 1st rank table3

    In the syntax of vector style, tuple expected output should be:

    IX = ranking of the i - th of tableX

    (i1, i2, i3) IF EXISTS a rank i - th line in each table

    ON THE OTHER

    (i1, b, b)

    where b is the first available lower ranking of the table2, or NULL if there isn't any line of lower rank.

    Clues?

    With the query, I am unable to delete the lines "spurius.

    I think a solution based on analytical functions such as LAG() and LEAD(), using ROLLUP() or CUBE(), using nested queries, but I would find a solution elegant, simple, fast, and easy to maintain.


    Thank you

    Hello

    Sorry, it's still not quite clear what you are asking.

    This becomes the desired resutls of the sample data you posted:

    WITH got_r_type AS

    (

    SELECT eq_id, date_completed

    CASE

    Description WHEN LIKE '% Collaudo %' THEN 'C '.

    Description WHEN AS 'Line %' THEN 'R '.

    Description WHEN AS 'Verification %' THEN 'V '.

    END AS r_type

    OF wrhwr

    Situation WHERE! = s "

    AND pmp_id LIKE '% WORM - EX'

    )

    got_r_num AS

    (

    SELECT eq_id, date_completed, r_type

    , ROW_NUMBER () OVER (PARTITION BY eq_id, r_type)

    ORDER BY date_completed DESC NULLS LAST

    ) AS r_num

    OF got_r_type

    WHERE r_type IS NOT NULL

    )

    SELECT eq_id

    LAST_VALUE (MIN (CASE WHEN r_type THEN date_completed END = ' V')

    IGNORES NULL VALUES

    ) OVER (PARTITION BY eq_id

    ORDER BY r_num

    ) AS audit

    LAST_VALUE (MIN (CASE WHEN r_type = 'R' THEN date_completed END)

    IGNORES NULL VALUES

    ) OVER (PARTITION BY eq_id

    ORDER BY r_num

    ) AS line

    LAST_VALUE (MIN (CASE WHEN r_type = 'C' THEN date_completed END)

    IGNORES NULL VALUES

    ) OVER (PARTITION BY eq_id

    ORDER BY r_num

    ) AS collauda

    OF got_r_num

    GROUP BY eq_id

    r_num

    ORDER BY eq_id

    r_num

    ;

    I guess the description can have (at most) only substrings target, in other words, you can't have a line like this:

    INSERT into (1,'MI-EXT-0001',date'2013-07-16','Com','VER-EXC','Revisione VALUES wrhwr and audit");

    In addition, you said the combination (eq_id, date_comepleted) is not unique, that it is y no example of this in your sample data.  What results would you if, in addition to this line (who did the validation):

    INSERT into wrhwr VALUES (7,'MI-EXT-0001',date'2013-03-14','Com','VER-EXC','Collaudo');

    the following line is also?

    INSERT into wrhwr VALUES (97,'MI-EXT-0001',date'2013-03-14','Com','VER-EXCFUBAR','Collaudo');

    .

    You could do a self-join instead of GROUP BY, but I suspect it will be much less effective.  You can use FULL OUTER JOIN, since you do not know what r_types was that r_nums.

  • Windows 7 Home Premium - what is - this OA in the license tag? Is it possible to install the OS [Home premium] 64-bit with the same key?

    1 What is OA in the license tag
    2. is it possible to install the OS [Home premium] 64-bit with the same key.

    Hi adil13,

    Adding to reply TrekDozer,

    1 original Equipment Manufacturer (OEM) Activation is also known under the name of OA. It's basically OEM activation of basic input/output system (BIOS) - which means that they have already activated and you don't need to enter the key and activate yourself.

    2. you will only be able to activate a copy of Windows 7 with the number of product key used for 64-bit or 32-bit version at the same time, not both. It will allow only a copy installed with him to be activated. If you try to do it on both versions 32/64-bit, you will probably get the message that your product key is already in use or The Windows 7 product key you typed is invalid for activation .

    I hope this helps!

    Kind regards
    Gokul - Microsoft Support

  • is it possible to install and operate windows edition to 7 Home premium with only 960 MB of ram on a Dell Inspiron 531 s?

    Is it possible to install and operate windows edition to 7 Home premium with only 960 MB of ram on a Dell Inspiron 531 s?

    Aries is perhaps not the biggest problem.  WIn7 needs 256 MB of ram to run aero. You can run it in basic, but with 960 ram it will be slow.  If you use it just for browsing and e-mail, it might be tolerable.

  • I want to buy the Photoshop now, but I'm pretending to change my computer very soon. If I buy the software now and install in my current computer, when I buy a new one, I can't install the new with the same license free of charge?

    I want to buy the Photoshop now, but I'm pretending to change my computer very soon. If I buy the software now and install in my computer run, when I buy a new one, I can't install the new with the same license free of charge?

    Did you want to say «which intends "instead of"pretend"?»  Assuming you did, the short answer is Yes.

    If you purchase a perpetual license for Photoshop CS6, you want to deactivate the software on your old system before installing it on your new system.

    If your goal is to reach the creative cloud, all you have to do is disconnect on the old system and the newspaper in the new system during the new installation of creative cloud with your Adobe ID

    I don't know where you intend to purchase your license, but I suggest on sources other than Adobe themselves.  There are a lot of fakers / scammers out there.

    -Christmas

  • Is it possible to use two different computers with the same adobe - ID and the same adobe license?

    Is it possible to use two different computers with the same adobe - ID and the same adobe license?

    Hi Morten,

    Yes, you can have your subscription or your license installed on two different computers with the same adobe id, however use one at a time.

    Please let us know if you have any questions, more about it.

  • Windows Vista 64-bit version purchased, can 32 bits be installed with the same key?

    Configure a computer for a friend using the version 64-bit of Windows Vista, not knowing its processor's crashing issues with 64 bit... would it not possible to rebuild and get a copy of 32-bit by using the same key via download or something? (I'll killdisk his computer so I'm sure it will not be saved, but I'm not sure.)

    Thanks for the replies!

    * original title - 64-bit version of Windows Vista purchased, has not work.__Can I install 32 bit with the same key? (Another was deleted, so it's is more approved I think). *

    Hello

    1. you have a 64-bit processor on your computer?
    2 have you installed the correct drivers 64 bit?

    When you bought Windows Vista, if it came with two versions of the operating system, a 32-bit installation DVD and an installation DVD 64 bits, then you would be able to use the
    same product key. Even if the 32-bit version should work with a 64-bit version of Windows, chances are the 64-bit version will perform better, because it was designed for a
    64-bit version of Windows.

    Kind regards
    Afzal Taher - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I want to install a second hard drive in my laptop (mSata SSD), so do I create a system dual boot with the same license Windows on each disc.

    Original title: Dual Boot Laptop

    I want to install a second hard drive in my laptop (mSata SSD), I have two programs to install that "do not receive the", so I can create a system dual boot with the same license Windows on each disc. I can run only one at a time, and it's the same pc/laptop.

    No, you can't, a second facility would be like installing on a second computer, you will need to purchase a second license.

  • Can I also install Windows 7 on my other pc and we the same product key?

    I have a genuine copy of windows 7 and install it on my pc, I can also install it on my other pc and we the same product key. My other pc needs a clean install and has its own product key on his windows 7 can I use this key after installation, any help would be great

    Original title: installation of Windows 7

    No, the key that can be used with 32-bit or 64-bit Windows 7 is exclusively for use with the disc 1. You cannot use install both. 1 license, 1 installation, so choose wisely. If you want to install Windows 7 32 or 64 bit on another partition or another computer, you must purchase an additional license.

    INSTALLATION AND USE RIGHTS.

    a. one copy per computer. You can install one copy of the software on a single computer. This computer is "licensed computer.

    b. a computer license. You can use the software on up to two processors of the computer under license at some point. Except as provided in these license terms, you cannot use the software on any other computer.

    c. number of users. Except as provided in these license terms, only one user may use the software at a time.

    d. other Versions. The software may include several versions, such as 32-bit and 64-bit. You may install and use only one version at a time.

    Where can I still get Windows 7?

    Full version-

    Microsoft Windows 7 Home Premium

    Full version-

    Microsoft Windows 7 Ultimate

    Full version-

    Microsoft Windows 7 Professional

    Version upgrade-

    Microsoft Windows 7 Professional upgrade

    Version upgrade-

    Microsoft Windows 7 Ultimate Upgrade

    Version upgrade-

    Microsoft Windows 7 Home Premium Upgrade

    Family Pack:

    Microsoft Windows 7 Home Premium Upgrade Family Pack (3 users)

  • I have windows7 64 bit on a computer acer laptop, but I want to change my OS to 32-bit. Is it possible with the same product key?

    Windows 7 64 bit to 32 bit

    I have windows7 64-bit with the computer acer laptop, but I want to change to 32 bit can it is possible with the same product key?

    If you have a retail version of Windows 7, then it is more than likely came with discs both 64-bit and 32-bit. In this case, boot from the 32-bit disk and do a clean install.

    If the 64-bit version has been pre-installed, then you need to contact Acer to see if they have a 32-bit recovery disc.

  • Is it possible to actively use photoshop on 3 computers with the same license?

    Is it possible to actively use photoshop on 3 computers with the same license?

    At the same time, no. If you use creative cloud, you can have it installed on 3 computers, but you can be signed in two at a time, and those who should not be used at the same time.

  • Creative programs will install but will not open with the same error message

    Hello thank you guys for any help you can provide.

    I installed creative cloud and install a few programs. None of the programs opens and I get the same error message for each of them.

    Adobe first Pro CC 2014 cannot be opened because of a problem.

    Check with the developer to ensure that Adobe first Pro CC 2014 works with this version of Mac OS X. You may need to reinstall the application. Don't forget to install the updates that are available for the application and OS X.

    Click report to display more detailed information and send a report to Apple.


    All creative programs say they are up-to-date. They have not been registered as I could not opened a still. I'm running one ate 2014 MBP with a 2.8 i7 processor, 16 GB of ram and an SSD 1 TB with 600 GB of free space.


    I uninstalled the programs and have reinstalled with the same result. I also followed solutions to other problems for programs starting or loading, without success. Any help to solve this problem or the direction of a former validated solution would be greatly appreciated.


    Thank you



    Do as he says - click on the button and provide the detailed information.

    Mylenium

  • I have 2 bookmarks with the same name but different stuff in them. I want to remove one, but pass the contemts remaining bookmark

    I have 2 bookmarks with the same name but different stuff in them. I want to remove one, but pass the contemts remaining bookmark

    This is the first mention you made records. See this - https://support.mozilla.org/en-US/kb/Sorting%20bookmarks#w_rearranging-manually - and move individual bookmarks from one folder to the other folder. You may need to press the Alt key to display the Menu bar and the View menu item.

  • WIN OR LOSE ON THE 'GAME OF CHECKERS' YOU CAN'T PLAY ANOTHER GAME WITH THE SAME PERSON. IT IT IS POSSIBLE TO DO?

    PLEASE ANSWER MY QUESTION?  IS IT POSSIBLE TO PLAY ANOTHER GAME OF CHECKERS WITH THE SAME PERSON AFTER YOU HAVE PLAYED AGAINST THEM ONCE?

    Hi charles andrasko,.
     
    If you're talking about Internet ladies, yes you can.
     
    When a game is over, you can replay the same person, or you can play someone else by clicking the game menu, and then clicking on find a new opponent.
     
    Reference:
     
    Ladies of the Internet: how to play

    Kind regards

    Shinmila H - Microsoft Support

    Visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for

  • Satellite 2250XCDS does not recognize compressed serial port

    I have a 12 x 12 connected to the serial port (COM1) Tablet and it does not detect or recognize this tablet. The Tablet is plugged. The Tablet light is on. The light changes from red to green when I run the stylus above isn't the tablet that is at is

  • Pavilion 15-p250ur: Driver for HP Pavilion - 15-p250ur

    ДОБРЫЙ ДЕНЬ! 2 недели ищу дравер для WiFi устройства PCI\VEN_14E4 & DEV_4365 & SUBSYS_2230103C & REV_01 и не могу найти! ПОМОГИТЕ ПОЖАЛУЙСТА! Драйвер для Win8 не устанавливается и выдает ошибку.

  • Lenovo Splitscreen messed my monitor - Ideapad Y560

    Hello. I have a Lenovo Ideapad y560 and completely messed up my monitor. The material is very well, but I played around it's a little bit and you click a custom split screen option and now I can only see a weird pattern now (didn't have a second moni

  • H730P with more than 8 drives

    We have a range of R730xd servers with 2 x controllers RAID H730P, each with a 8 x 6 GB/s SSD attached. Servers are sold as servers '12 + 12' drive, and the chassis has bays for 4 more disks per controller. When I read the H730P specification, I see

  • UPS 1920W alarm #149 [CF]

    Buongiorno, chiedo sorry my ho posted by precedentemente una request analoga ma, all'atto di allegare delle immagini, ho inviato he post (in inglese) senza averlo terminato... Come when nell'oggetto ups acquitato insieme ad server avente service tag