How do you copy/move the ASU Toolbox task list from one system to another

We are upgrading from 3.5 to 7.01 and have maintained the the task list in /n/asu/upgrade in our sandbox.   I would like to be able to move the task list to our other systems so I don't have to reenter the tasks again.  I know the base tasks are in an xml file but I don't know which one.  
Does anyone know how to move/copy the tasks from one system to another?

I agree with Antonio, but since we don't know if the Mail app on the Mini is the same version as the one on your new iMac, I'd err on the side of caution and allow Mail on the new iMac to set up; additionally, I'd prefer to start with a new preference file. In order to make it easier, you could take screenshots of all the account windows on the Mini. You can then use those to enter the info when setting up Mail on the new iMac.
After Mail is set up, quit Mail. Go to the location outlined by Antonio (Users-Library-Mail) and compare the folders with the folders from the old Mail app; i.e. the new Inbox folder should be empty -> remove that (drag to trash) and replace it with your old Inbox folder (same with Sent, etc). If you have old folders not found in the new location, add them.
When done, open Mail and your folders and emails should all be there.

Similar Messages

  • How do you copy all podcast information (new/deleted/downloaded) from one computer to another.

    I am changing my itunes computer and am trying to move my podcast subscriptions from the old machine to the new one.
    I want the new computer to know
    * which podcasts feeds I have subscribed to
    * which podcasts I have deleted
    * which podcasts I currently have downloaded on the old machine, so it can download them on the new machine.
    Currently I have only been able to get the feeds transferred.  The trouble with this is that this only automatically downloads the most recent entry - even of the podcasts that I am completely up to date with and have already seen that episode.  And, for the ones where I am not up to date, unless I can transfer the information, I am going to have to go through and manually delete the episodes I've already watched.  (and unfortunately it's not just a case of finding where I'm up to and deleting all previous episodes (some podcasts are out of order, some I want to relisten to) )
    Is there any way of doing this?  Old machine has iTunes 8.2, new machine has iTunes 10.2

    Thanks - I used the Layer > Duplicate command and it worked great!
    P.S. How do you drag and drop a layer? I tried dragging a layer to the other open image, but nothing happened. Do you have to hold down a specific key for this (I'm using Windows)?

  • How do you transfer your adobe creative suite cs5.5 from one laptop to another. I bought downloadable files from the Adobe website; I did not own physical cds.

    I bought a downloadable file when I bought Creative Suite CS5.5 for my laptop, which has now become slow and laggy. So I bought a new laptop and have downloaded trial versions of CS5.5 on to it, as suggested by information online, only to type in my serial number and it tells me that it's unvalid. I'm a college student and spent a lot of money to have this compliation of programs, and I do not have the money to invest into CS6 quite yet, as my needs are met with the previous version.
    Is there any way to transfer the creative suite from one computer to another, as I've tried many and have been unsuccessful.

    No, transferring between machines does not work.  You need to install using installation files.  You can download thru the following and use your serial number to activate...
    CS5.5 - http://helpx.adobe.com/creative-suite/kb/cs5-5-product-downloads.html

  • How do I copy and paste a shape (or layer) from one file to another keeping all of its attributes?

    Our department currently uses MS Paint to place varied colored boxes for callouts on top of screen figures used in our documentation. As you know, MS Paint is not a robust image editing application, and we are frustrated at its limitations (especially not having a "non-destructive" edit capability). Consequently, we are evaluating a trial version of PS to see how a workflow could be developed that would allow the department to use callout boxes "stored" in a PS file that could be applied in an easy, consistent manner to our screen figures (but also keep each callout box editable) using PS.
    Consequently, in PS using the shape tool, I created a file with our colored boxes for callouts, each on its own layer. Now I am trying to determine how you copy and paste a box (or layer) from this file to a "working" file (one containing a screen figure), while keeping all of its attributes (color, line weight, being editable, etc.). I can't seem to find an option to do this. Is there? If not, is there another workflow in PS that you can recommend for this type of procedure?

    Thanks - I used the Layer > Duplicate command and it worked great!
    P.S. How do you drag and drop a layer? I tried dragging a layer to the other open image, but nothing happened. Do you have to hold down a specific key for this (I'm using Windows)?

  • How to move the contents of an itab from one class to another...

    Hello Experts,
    How can I move the contents of an internal table for a given class to another class.
    I want to transfer the contents of my internal table lt_vbak to another class
    which is lcl_get_docflow. Below is my code:
    REPORT  zsd_orderstage
            NO STANDARD PAGE HEADING.
    * Data Dictionary Table/s                      *
    TABLES: vbak.
    * Global Structure/s                           *
    TYPES: BEGIN OF t_output,
            salesgroup    type vbak-vkgrp,
            salesorder    TYPE vbak-vbeln,
            custcode      TYPE vbak-kunnr,
            shipto        TYPE likp-kunnr,
            creation_date TYPE vbak-erdat,
            created_by    TYPE vbak-ernam,
            delorder      TYPE likp-vbeln,
            invnumber     TYPE vbrk-vbeln,
           END OF t_output.
    * Global Internal Table/s                      *
    DATA: gt_output TYPE STANDARD TABLE OF t_output.
    * SELECTION-SCREEN                             *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS:     p_kunnr TYPE vbak-kunnr OBLIGATORY.
    SELECT-OPTIONS: s_group for vbak-vkgrp,
                    s_auart FOR vbak-auart,
                    s_erdat FOR vbak-erdat  OBLIGATORY,
                    s_ernam FOR vbak-ernam.
    SELECTION-SCREEN END OF BLOCK b1.
    *       CLASS lcl_main DEFINITION
    CLASS lcl_main DEFINITION ABSTRACT.
      PUBLIC SECTION.
        TYPES: BEGIN OF t_vbak,
              vbeln TYPE vbak-vbeln,
              erdat TYPE vbak-erdat,
              ernam TYPE vbak-ernam,
              auart TYPE vbak-auart,
              kunnr TYPE vbak-kunnr,
              vkgrp type vbak-vkgrp,
             END OF t_vbak.
        TYPES: BEGIN OF t_vbfa,
                vbelv   TYPE vbfa-vbelv,
                vbeln   TYPE vbfa-vbeln,
                vbtyp_n TYPE vbfa-vbtyp_n,
               END OF t_vbfa.
        TYPES: BEGIN OF t_likp,
                vbeln TYPE likp-vbeln,
                kunnr TYPE likp-kunnr,
               END OF t_likp.
        TYPES: BEGIN OF t_vbrk,
                vbeln TYPE vbrk-vbeln,
               END OF t_vbrk.
        DATA: gt_vbfa     TYPE STANDARD TABLE OF t_vbfa,
              gt_likp     TYPE HASHED TABLE OF t_likp
                          WITH UNIQUE KEY vbeln,
              gt_vbrk     TYPE HASHED TABLE OF t_vbrk
                          WITH UNIQUE KEY vbeln,
              gt_delivery TYPE STANDARD TABLE OF t_vbfa,
              gt_invoice  TYPE STANDARD TABLE OF t_vbfa.
    ENDCLASS.                    "lcl_main DEFINITION
    *       CLASS lcl_get_so DEFINITION
    CLASS lcl_get_so DEFINITION INHERITING FROM lcl_main.
      PUBLIC SECTION.
        DATA: lt_vbak TYPE STANDARD TABLE OF t_vbak.
        METHODS: get_sales_orders
                    RETURNING
                       value(re_vbak) TYPE t_vbak.
    ENDCLASS.                    "lcl_get_so DEFINITION
    *       CLASS lcl_get_so IMPLEMENTATION
    CLASS lcl_get_so IMPLEMENTATION.
      METHOD get_sales_orders.
        SELECT vbeln erdat ernam auart kunnr vkgrp
          FROM vbak
          INTO TABLE lt_vbak
         WHERE erdat IN s_erdat
           AND ernam IN s_ernam
           AND auart IN s_auart
           AND kunnr = p_kunnr.
      ENDMETHOD.                    "get_sales_orders
    ENDCLASS.                    "lcl_get_so IMPLEMENTATION
    *       CLASS lcl_get_docflow DEFINITION
    CLASS lcl_get_docflow DEFINITION INHERITING FROM lcl_main.
      PUBLIC SECTION.
        DATA: lt_vbfa TYPE STANDARD TABLE OF t_vbfa.
        METHODS: get_subsequent_docs
                    IMPORTING
                       value(im_vbak) TYPE t_vbak
                    EXPORTING
                       ex_vbfa TYPE t_vbfa.
    ENDCLASS.                    "get_docflow  INHERITING FRO
    *       CLASS lcl_get_docflow IMPLEMENTATION
    CLASS lcl_get_docflow IMPLEMENTATION.
      METHOD get_subsequent_docs.
      ENDMETHOD.                    "get_subsequent_docs
    ENDCLASS.                    "get_docflow IMPLEMENTATION
    * Global Internal Table/s                      *
    START-OF-SELECTION.
      DATA: o_get_so      TYPE REF TO lcl_get_so,
            o_get_docflow TYPE REF TO lcl_get_docflow.
      CREATE OBJECT: o_get_so,
                     o_get_docflow.
      CALL METHOD o_get_so->get_sales_orders.
    What I want is to pass the records of lt_vbak to method get_subsequent_docs. How do I do this guys?Thank you and take care!

    .

  • How do I copy e-mail and e-mail settings from one Mac to another?

    I am fairly new to Mac and have been using a Mac mini for a few months. I have just purchased an iMac i7 and have used the migration tool to move apps and files over. However it didn't do anything with my e-mail accounts. I have several accounts setup on the Mini that I need moved over. I can't import because e-mail is not setup in the i7. Every time I open Mail on the i7 it wants me to setup an account. Is there anyway to bring the e-mail accounts and data over to the i7 without setting up Mail on the i7 first?

    I agree with Antonio, but since we don't know if the Mail app on the Mini is the same version as the one on your new iMac, I'd err on the side of caution and allow Mail on the new iMac to set up; additionally, I'd prefer to start with a new preference file. In order to make it easier, you could take screenshots of all the account windows on the Mini. You can then use those to enter the info when setting up Mail on the new iMac.
    After Mail is set up, quit Mail. Go to the location outlined by Antonio (Users-Library-Mail) and compare the folders with the folders from the old Mail app; i.e. the new Inbox folder should be empty -> remove that (drag to trash) and replace it with your old Inbox folder (same with Sent, etc). If you have old folders not found in the new location, add them.
    When done, open Mail and your folders and emails should all be there.

  • How to make Copy and Paste buttons to transfer data from one form to another

    Hi, a complete newbie here.  I’m looking to create a Button 1 that can Copy data from a filled out adobe form, mainly the text fields and checked radio buttons, and then have another Button 2 that can Paste the copied data to another form, containing the exact same text fields and radio buttons.
    Example:
    1. Click "Copy" in Form 1
    2. Click "Paste" in Form 2
    3. Fills data from Form 1 to Form 2
    Any idea how to do this?

    Users will need to uncheck Enable Global Object Security Policy, found in the JavaScript section of the Preferences to do it. That's unlikely to be the case since the opposite is the default.
    Take a look at the section of the JavaScript SDK "Querying an Acrobat form field value in another open form" for details on how to do it.
    http://livedocs.adobe.com/acrobat_sdk/10/Acrobat10_HTMLHelp/JS_Dev_AcrobatForms.76.41.html

  • In iPhoto, how do you manually move the order of a photo within an album?

    In iPhoto, how do you manually move the order of a photo within an album?

    Within an Album? Drag and drop.
    You can't do this in an Event.
    Regards
    TD

  • How do I copy the same app folder layouts from one device to another? We have a several iphones and ipads.

    how do I copy the same app folder layout from one device to another. We have several apple devices.
    It's a challenge when syncing a device for the first time to go through all the apps and apply them back to the same folders as on your other iphone.
    I've seen suggestions of taking pictures of the correct layout, then manually applying it to the new device. Big time waister.
    What's the work around?
    Thank you

    I'm afraid there is no short workaround. One thing that you could do if you were REALLY desperate is reset your device to factory settings and then restore it from your other device's backup, but that is rather risky and you probably don't want to take your chances just for folder layouts. I would just do it manually.

  • How do you edit out the date and time stamp from a photo

    How do you edit out the date and time stamp from a photo

    You can blur it out with retouch
    The built-in "Retouch" brush in "Edit" mode should suffice, if the background is mostly uniform, and if you set the size of the brush to slightly wider than the bar width of the letters. For example, in this picture I removed the year from the date (in the lower right corner) by using the "retouch" brush and following the contours of the letters. (the screen shot is from iPhoto '11, but iPhoto 9 should give similar results).
    Regards
    Léonie

  • How do I copy a list from one site to another that has a column that appends changes to existing text?

    I want to move a list from one SharePoint site to another, within the same collection. I have created a template and included the content but the column that is selected to append changes to existing text, has not copied in all cases, although it has for
    some items.
    I have a limited knowledge so won't be able to implement any solutions that require the use of code.

    Hi,
    According to your post, my understanding is that you wanted to copy a list from one site to another that has a column that appends changes to existing text.
    I recommend to use the custom workflow activity  Copy List Item Extended Activityto
    copy list items and files cross site.
    You can do this with codeless SharePoint Designer workflows as long as you can install the
    Codeplex Custom SharePoint Designer Workflow Activities. 
    These activities are also built-in to SPD2010.
    To install the custom activities, please follow the steps as below:
    Download the solution file form
    Useful Sharepoint Designer Custom Workflow Activities
    Copy the wps file to the Disk C.
    Open the SharePoint 2010 Management Shell.
    Run the command: add spsolution c:\ dp.sharepoint.workflow.wsp
    Open the Center Administration, click System Setting->Manage Farm Solution-> dp.sharepoint.workflow.wsp->Deploy to one or more Web Application.
    Open the SharePoint designer, add action from Custom Actions.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Can you copy multiple audio (text to speech) files from one slide onto a new slide at once?

    Can you copy multiple audio (text to speech) files from one slide onto a new slide at once? OR do you have to copy and paste each line of text to speech and insert into new slide?

    Hi there
    I believe that you end up with a single file that you can use. Once you get that created, it's an audio file in the library. You may then add the audio file to another slide or object by looking in the Library after choosing to add audio.
    Cheers... Rick

  • How to move files from  one  system  to another in plsql

    Hi all,
    I want to move file from one system to another using plsql procedure .
    Kindly let me know what package i have to use for doing this .
    Thanks,
    P Prakash
    Edited by: prakash on Jul 27, 2011 2:20 AM
    Edited by: prakash on Jul 27, 2011 2:59 AM

    BluShadow wrote:
    That's ok if you want to diet. ;)Ooh look, the strange punctuation is back. Can it be true that the forum software has caught up with the '80s?
    I almost feel like connecting to the internet using a 9600 baud modem to celebrate.
    http://upload.wikimedia.org/wikipedia/commons/5/5d/TeleGuide-terminal.jpg
    Colon dash right bracket.
    (Old habits die hard)

  • How can I move my iPad's iTunes backup from one user to another?

    Is it possible to move my iPad's iTunes backup from one user to another, so as to change which user the iPad is syncing to without deleting any app data? Currently the iPad is synced to one user on my iMac, and I would like to transfer it so that it will sync with a different user on the same iMac (using iTunes, of course). I'd like to replace content from the old user's iTunes library with my user (eg. music, movies), but I don't want to loose app data in the process if I can avoid it.
    I have tried to use the pathway /Library/Application Support/MobileSync/Backup but my iMac doesn't seem to have a MoblieSync folder. I wouldn't know what to do with the backup anyway though.
    Can anyone help me or is this request too complicated, difficult, or impossible? Thanks for your help!

    The Apple Document covers this. See the footnotes of my google docs
    I've done this, it is easy, but takes time and patience.
    On the existing mac with OSX and Configurator:
    ========================================
    - run disk utility and verify your disks are ok, a must
    - make note of the user logged in when using configurator  such as "bob"
    - connect a new or newly reformatted USB formatted for Apple
    - run time machine and backup to the USB
    - Take the mac off the network,
    - Buy a new mac
    - setup the mac with a new logon account like Paul or  "bob2"   do not use BOB !!
    - finish the new purchase setup, get to your desktop
    - now run the migraiton assistant  moving bob from the USB to the new mac
    - reboot, logon as bob, launch configurator and connect just one ipad.  Test
    https://docs.google.com/document/d/1SMBgyzONxcx6_FswgkW9XYLpA4oCt_2y1uw9ceMZ9F4/ edit?usp=sharing

  • How do I transfer my play lists from one pc to another? I can't find import on the new version.

    How do I transfer my play lists from one pc to another? I can't find import on the new version.

    Holtey wrote:
    Not an option.
    Onlly have turn on home sharing or get artwork
    Do ou have the iTunes menus showing across the top of the iTunes window?
    ctrl B

Maybe you are looking for

  • Newly installed Mail app has just gone WILD!!!

    Everything was fine in Mail until I created a new accounts for my new MobileMe email address. Now I have these problems: 1. I can no longer send mail from the .mac aliases, only from the main account. My password, even though identical to the main pa

  • Non-booting MacBook Pro, ?? on startup screen, more....

    I swapped out a hard drive on my MacBook Pro (unibody, 2.26, 4GB RAM) and was going to wipe the drive and reinstall OS 10.5. I selected the Install Disk from 'startup disk' in system preferences and restarted. I heard 2 closely-spaced chimes, then no

  • Iphoto start up problems

    When I try to open iphoto5, I get the following message:the photo library was created with a unreleased version of iphoto,please quit and upgrade to version2 or 4????? no idea why this is happening happened before upgrade to tiger. not shure where to

  • Docker best Practices (Get IP of linked container)

    I've recently started looking into docker, and I like what I see. The whole stuff is not too complex and it is easy to get something running. There is one thing that I just couldn't figure out yet. What is the best way to get the IP address of a link

  • Very dark picture when exporting to .flv

    I´m getting a very dark picture when exporting flashvideo from FCP (VP6, 1000kpbs). Is there any settings when exporting I can do to avoid this?