Move cloud licence to another computer for one week

I've come away from the office with my laptop but forgotten the charger so I can't use Creative cloud on it. Is there any way I could run it from my home desktop for one week only?

Hi,
Yes, you can.
On you home computer, download and install the application from creative.adobe.com website.
On launch, it will prompt that it is already activated to 2 machines. Select the option to deactivate from already activated machines and use it on home computer.
After a week, use the same workflow to get the application working on laptop.
- Manish

Similar Messages

  • Can I use home sharing to watch a rented movie on itunes on another computer

    can I use home sharing to watch a rented movie on itunes on another computer (I already have home sharing with other computers set up, but I don't see it.)?

    Please be aware of the movie rental's time limitation that you have 30 days from the time of rental to watch your movie, and once you start watching it, you have 24 hours to finish watching it. You may watch it as many times as you like during those 24 hours. It may be helpful to make sure the download completes successfully before you begin watching the movie.
    Once the download is complete you can watch it without an Internet connection. However, an Internet connection to the iTunes Store is required to authorize playback or activate the 24 hours time-limit of movie rentals. This means, only during the starting of the movie. Once you have started playing the movie rental, internet connection is not required. You can play anywhere without internet connection.
    You may need to validate the rental prior to watching so it starts the rental period timer and for that you will need an internet connection. You can probably do that by starting the rented movie while on the Airport Wifi or right before leaving home. You'll have 24 hours to watch the movie after you start it.
    For more information on movie rentals, you can visit:
    iTunes Store: Movie rental frequently asked questions (FAQ)
    http://support.apple.com/kb/HT1657
    Note: 24 hours time limit is for United States customer only, while 48 hours for other countries.

  • How do i transfer creative cloud apps to another computer

    How do i transfer creative cloud apps to another computer?

    You simply install them via Creative Cloud like on the first computer after possibly signing out on the old one, if you no longer plan on using it...
    Mylenium

  • I can't find my serial number and once I do I would like to move my Pro to another computer. Need help with both.

    I can't find my serial number and once I do I would like to move my Pro to another computer. Need help with both.

    Hi Rick ,
    Here is the link that will help you find the serial number for your product quickly .
    https://helpx.adobe.com/x-productkb/global/find-serial-number.html
    You would have to deactivate that software from your older machine first.
    Refer to the following link to deactivate your product .
    https://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html
    After it is deactivated from the older machine you can use it on your new machine just by entering the serial number of the product .
    Let us know if you need further assistance.
    Regards
    Sukrit Dhingra

  • TS1702 how do i authorize another computer for iTunes ?

    how do i authorize another computer for iTunes ?

    You can authorise your account on a computer's iTunes via Store > Authorise This Computer (you can have a maxumim 5 computers authorised at any one time) : authorising and deauthorising.

  • How do I move my account to another computer?, How do I move my account to another computer?

    How can I move my account to another computer?

    An account is just a user name and password.  You can sign into your account from any computer that has itunes.
    Are you wanting to move your itunes library?
    If so, then type "move itunes library" into the google search bar.

  • The words in the .docx (MSWord 2010) file are getting merged when the file is transferred to another computer for printing. What could be the reason?

     The words in my .docx file are getting merged when the file is transferred to another computer for printing. For eg. the sentence "rate of success ......"  is displayed as "rateof success" on the other computer. What could
    be the reason for this? How to solve this issue?  

    Have you checked that the document is using the exact same font on both machines? If the second machine doesn't have the font installed that's used in the original document on the first machine, Word will pick the closest matching font, and that may
    display slightly differently.

  • I got an iphone from three network Uk, I am planning go to have holidays abroad for one and a half month, I request to my mobile company if they can unlock my iphone to use abroad with another sim , after one week they unlock my mobile.

    I got an iphone from three network Uk, I am planning go to have holidays abroad for one and a half month, I request to my mobile company if they can unlock my iphone to use abroad with another sim , after one week they unlock my mobile.and my  basic questions , if for any reason someone stole my iphone, they can activate in other country because my iphone is unlocked with the original codes.

    Yes.

  • How to keep the field value in the forms for one week

    I have an application that when the user logs on to it , it shows all the documents that are in the current dept.
    the form has the following fields:
    document no
    sent date
    assigned to
    dep_LOV
    and a check box
    if a user clicks the check box and assignes the document to another dept by cliking the LOv then the assigned to field should be populated with the new value and the sent date should be today's date(sysdate). the requirment is that once the user assignes the documnet to certain depts (for example sales dept) the assigned to field and the sent date should show up in the form for one week and the user should be able to see that data in the form the next time she /he logs onto the application. the one week time is to make sure the documcnt has reached the assigned dept. after one week from today's date the updated assigned_to field and the document no should not display on the form. During the one week if the user logs on to the form again that particular document and the assigned to and sent to fields shoould be grayed out and shhould not be updatable. I will greatly appreciate any suggetion as of what to do to solve this problem. it is urgent. Pleade help

    -> so you are saying that I should have a block level post_query trigger and put the where clause in it?
    No. Post-query trigger runs AFTER the query has been executed, and it runs once for each row fetched. It is for other purposes, NOT for setting a where clause.
    -> Plus i want to be able to gray out the field once populated with the sales dept.I have come up with the following code:
    Your Set_item_instance_property is almost correct. And THAT line would go into the Post-Query trigger. This is what you might use:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy"> Set_item_instance_property ('docs.assigned_to',:system.trigger_record, Enabled,Property_False);</font></pre>
    Please watch your use of underscore, dashes, commas and parentheses: _ - , ( )
    The way to set your default where clause would be the following, and you should do it in the key-exeqry trigger, or someplace similar:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy"> set_block_property('DOCS', default_where,
    'NVL(sent_date,sysdate) >= sysdate-7' );
    Go_block('DOCS');
    Execute_Query;</font></pre>
    I used the NVL function so your select will show rows where sent_date is null OR sent_date has a value that is within 7 days prior to the current date.
    What is the field :docs.assigned_to used for? If you want to include ONLY rows that are assigned to a particular person, then your where clause might be:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy"> 'assigned_to = :ctrl.assigned_to and NVL(sent_date,sysdate) >= sysdate-7' </font></pre>
    and you should have a control block with the assigned_to field in it, where the user can enter a value before querying the DOCS block.

  • Tecra S3: battery fully discharged if it's off for one week

    I´ve got a Tecra S3:
    Intel® Centrino? Mobiltechnologie Intel® Pentium® M Prozessor 760
    XP Pro/ 1024 DDR2/ 80GB/ 15.0" TFT/ DVD-Super-Multi(DL)/ Wi-Fi
    Mostly I work with ac power. Only sometimes I need the battery.
    But when I use the battery, discharge it fully.
    After that the battery is charged over night.
    When my S3 is off for one week,
    my battery is fully discharged and the S3 needs ac power.
    Is that normal?
    Why is my battery fully discharged
    if the S3 is off for only one week.

    Hi
    The fact is that battery looses the energy also if the notebook is disabled.
    Im not sure about the time and how long should it takes.
    The same thing happens on my old Satellite A50.
    I thing it depends from the battery performance and how old the battery is.

  • My iPad is trying to install an update of Pages for one week and doens't get it. Every time it begins a message " it was not possible do update now" show's up. What should I do?

    My iPad is trying to install an update of Pages for one week and doens't get it. Every time it begins a message " it was not possible do update now" shows up. What should I do? I can't lauch Pages till now.

    The best discussion of resolving the issues is found in the user tip: https://discussions.apple.com/docs/DOC-6562

  • How to keep logs for one week through sm36 jobs creation

    Hi
       As i define a job through sm36. Its logs removed next day , but its logs removed through sm37 through next days. But some of the job logs does not removed for even one week. can somebody be help me to sort it out . I want to keep job logs for one week then where i have to define it. If some job is defined which remove all these logs then where we have to define that these logs will remain for one week , because some of the job logs will remain there for one week.
    Thanks in advance
    Regards
    Ravi Kant Arya
    +91 9999530385

    Hello,
    please check the variants of the report used in the job SAP_REORG_JOBS. With the report RSBTCDEL2 you can specify very detailed how long logs should be kept for which jobs (e.g. depending on the job name or job class).
    Regards
    Christian

  • Getting Blue Screen --I've Only Had the HP Mini 311 for One Week

    Do you have an HP Mini 311? I have had my HP Netbook for one week and I keep receiving the blue screen.  I installed Adobe Lightroom yesterday and I received it after the install.
    Is this common with HP Mini 311s? 
    Is it worth returning to Verizon or can I get it fixed by contacting HP support?

    Try removing your sim and insert it again and make sure that its clean as well as the sim tray. insert it securely locked in place. See if it works, quick fix. If not try to use a different sim or try your sim to a different h/s. For you to be able to isolate if its with your sim or iPhone. Tricky Tips!

  • How do I keep an archive of all email in Apple Mail on my computer for one year?

    I operate a small business, and need to keep an archive of all email on my computer for at least one year (not on the cloud, as I live on a small island and our internet service is sporadic). I prefer to manually delete all email after 12 or 13 months. It seems like Apple Mail no longer allows this?

    What type of account(s)? (POP, IMAP, Exchange)
    You can move messages from the sever ( IMAP or Exchange) to a folder under "On My Mac" to save directly to your computer.
    When you drag a message it copies. Use the Move icon to move off the server to "On My Mac" folder.
    You can select to delete any email at any time by selecting messages then click on Delete.

  • Move a file to another computer and back and keep links from breaking?

    I have a high school kid neighbor who is going to work on some pages that are on my site, but she does not have the site or access to the server.  I want to give her the page on a thumb drive to work on in Dreamweaver on her computer. The pages have links and graphics already in them that work.  After she updates the words on the page, I want to then get it back from her and put it back into my local disk version. 
    When I tried this, all the existing  links to the images were broken when I copied her page back into my local Dreamweaver site folder .  How should I move the page to her computer and back so that when I get it back the image and other links that were valid when I gave it to her are still valid?  Using the Mac's Operating system file manager isn't the answer it seems.
    Thanks
    Hank

    Hi Hank,
    one possibility would be your school kid neighbor generates by using a file manager a directory tree that is a mirror image of your tree. For example:
    So the respective links should be identical.
    Hans-G.

Maybe you are looking for

  • Limit Order Creation Causes Free Issue Block to Be Checked

    Hello, We have a vendor who we have assigned to a Plant and Customer Master.  When we use this Vendor on a Limit Purchase (Item Category B) Order and the Plant on the PO is within the same Company Code as the Vendor's Plant, the Free Issue Box is bei

  • Problem with MB1C

    Hi ,                    When i was trying to post some inventory in the system, i was getting an error that closing period is between 07/2003 and 08/2003.I went to MMPV and opened the period for 06/2007.But the system is saying that it is not valid p

  • I don't know if it's a glitch or I'm blocked.

    I know all the protocol about ''How I know when I'm blocked or deleted'' but lately, there been a bug, if it's true.  One of my contacts goes Online for a second, Do not disturb mode and then goes offline in the second.  I remember once an ex-contact

  • Dashboard reports not showing Export Links

    Hi Guys, We are implementing BI Apps 7.9.6.3 and OBIEE 11g. We have observed many reports/charts are not having the export link below. We need Export Link below every reports/charts? What needs to be changed? Any configuration is required? Regards Su

  • I can't paste nor copy using IDLE with Python 2.7. Can somebody fix the problem

    I can't paste nor copy using IDLE with Python 2.7. Can somebody fix the problem