How Can I Sync Multiple Changes at the same time?

Is there a way to configure iTunes so that I can make changes in multiple sections, and only sync or apply them when I've made all of them?
For example: I want to changes setting in Music, Apps, and Books. Today, it seems like I have to go to change settings,hit apply, and wait for the iTunes to sync for each one. What I want to do it make changes in all of them, then hit apply/sync and wait for the iTunes to sync all my changes in one swoop.
The seems very intuitive and saves the user a lot of time. Can iTunes be configured to due this?

The OP's question asked - in iTunes for Windows, if it was possible to "configure iTunes" (not the iPod) and then "Sync those changes to the iPod in one step"
Is there a way to configure iTunes so that I can make changes in multiple sections, and only sync or apply them when I've made all of them?
For the media, one can;
untick songs in the Library in order for them to be removed at the next Sync (and obviously the reverse to put them back on),
the same procedure for books,
create and modify Playlists,
remove or add photos to the chosen Photos folder (in Windows of course, not in iTunes) which then get removed or added at the next Sync,
and then connect the iPod. One can prevent an iPod from Syncing at initial connection time, so that further changes to things such as which Apps to Sync (which does need to iPod to be connected), choices of Selected Playlists only, etc. (ditto) can be made by choosing the appropriate pane. As yet, whenever I've done this, I have never had to Sync one change before switching to a different pane. The first change causes the Apply and Revert buttons to appear. I ignore them and continue to make further changes on the other panes. Then I select Apply. The Apply/Revert buttons are removed and replaced by a Sync button. So, although there is the Apply, then Sync to be done, it can hardly be described as a burden.
Are you saying Chris, that you have to apply one change at a time, followed by a sync before making any other change?

Similar Messages

  • In Elements 7.0, how can I delete multiple photos at the same time?

    In Adobe Photoshop Elements 7.0, how can I delete multiple photos at the same time?   Please be a little specific so I can follow your instructions as I'm not real smart at computers; I'm an intermediate user.  Thank you.

    Shift-click the photos or Ctrl-click them to select them, then right-click one of them and choose Delete from Catalog. They will all go together.

  • How can i print multiple sheets at the same time

    im trying to print multiple sheets out of a particular folder in numbers.  Cant i just select all and print?  When I try to the message that appears is that there is an error printing

    If I guess correctly, you are trying to print thru a printer icon installed on the Desktop.
    At last on my machine, iWork applications aren't compatible with this scheme.
    Here is a script which may be useful.
    --{code}
    --[SCRIPT print_iWork]
    Enregistrer le script en tant qu'application : print_iWork.app
    sur le bureau
    Glisser déposer des icônes de documents iWork sur celle du script pour imprimer ceux-ci.
    --=====
    Save the script as an Application : print_iWork.app
    Drag & Drop icons of iWork documents on the script's icon to print them.
    Yvan KOENIG (VALLAURIS, France)
    2011/05/08
    --=====
    on open (sel)
      local les_documents, un_doc, doc_ID, theApp, nom_du_doc
      my activateGUIscripting()
      set les_documents to sel
      repeat with un_doc in les_documents
      tell application "System Events"
      set doc_ID to type identifier of disk item (un_doc as text)
      end tell
      if doc_ID is in {"com.apple.iwork.pages.pages", "com.apple.iwork.pages.sffpages"} then
      set theApp to "Pages"
      else if doc_ID is in {"com.apple.iwork.numbers.numbers", "com.apple.iwork.numbers.sffnumbers"} then
      set theApp to "Numbers"
      else if doc_ID is in {"com.apple.iwork.keynote.key", "com.apple.iwork.keynote.sffkey"} then
      set theApp to "Keynote"
      else
      set theApp to ""
      end if
      if theApp is not "" then
      tell application theApp
      open un_doc
      set nom_du_doc to name of document 1
      end tell
      my raccourci(theApp, "p", "c")
      my raccourci(theApp, return, "")
      delay 1
      tell application theApp
      close document nom_du_doc without saving
      end tell
      end if
      end repeat
    end open
    --=====
    on activateGUIscripting()
      (* to be sure than GUI scripting will be active *)
      tell application "System Events"
      if not (UI elements enabled) then set (UI elements enabled) to true
      end tell
    end activateGUIscripting
    --=====
    ==== Uses GUIscripting ====
    This handler may be used to 'type' text, invisible characters if the third parameter is an empty string.
    It may be used to 'type' keyboard raccourcis if the third parameter describe the required modifier keys.
    I changed its name « shortcut » to « raccourci » to get rid of a name conflict in Smile.
    on raccourci(a, t, d)
      local k
      tell application a to activate
      tell application "System Events" to tell application process a
      set frontmost to true
      try
                                  t * 1
      if d is "" then
      key code t
      else if d is "c" then
      key code t using {command down}
      else if d is "a" then
      key code t using {option down}
      else if d is "k" then
      key code t using {control down}
      else if d is "s" then
      key code t using {shift down}
      else if d is in {"ac", "ca"} then
      key code t using {command down, option down}
      else if d is in {"as", "sa"} then
      key code t using {shift down, option down}
      else if d is in {"sc", "cs"} then
      key code t using {command down, shift down}
      else if d is in {"kc", "ck"} then
      key code t using {command down, control down}
      else if d is in {"ks", "sk"} then
      key code t using {shift down, control down}
      else if (d contains "c") and (d contains "s") and d contains "k" then
      key code t using {command down, shift down, control down}
      else if (d contains "c") and (d contains "s") and d contains "a" then
      key code t using {command down, shift down, option down}
      end if
      on error
      repeat with k in t
      if d is "" then
      keystroke (k as text)
      else if d is "c" then
      keystroke (k as text) using {command down}
      else if d is "a" then
      keystroke k using {option down}
      else if d is "k" then
      keystroke (k as text) using {control down}
      else if d is "s" then
      keystroke k using {shift down}
      else if d is in {"ac", "ca"} then
      keystroke (k as text) using {command down, option down}
      else if d is in {"as", "sa"} then
      keystroke (k as text) using {shift down, option down}
      else if d is in {"sc", "cs"} then
      keystroke (k as text) using {command down, shift down}
      else if d is in {"kc", "ck"} then
      keystroke (k as text) using {command down, control down}
      else if d is in {"ks", "sk"} then
      keystroke (k as text) using {shift down, control down}
      else if (d contains "c") and (d contains "s") and d contains "k" then
      keystroke (k as text) using {command down, shift down, control down}

  • How do i sync multiple ipads at the same time?

    I am a high school principal and I have just received 80 new mini iPads.  I know that there is a much better way to sync them than doing all 80 of them individually.

    I believe that you are correct. I have seen such devices in the past, but know absolutely nothing about them. You would be much better off posting your question here. I am going to ask the hosts to move your post as well.
    iPad in Business and Education

  • How do I sync multiple iPods to the same iTunes Library?

    How can I sync multiple iPods to the same iTunes Library?

    The same way you sync just one. If y want different media on each iPod then only select the items you want synced to each iPod
    iTunes: Syncing media content to iOS devices and iPod       
    Try syncing using the manual method                
      Managing content manually on iPhone, iPad, and iPod
    Also, I would go to iTunes>Preferences>Devices and check the box that says prevent iPods... for syncing automatically so that you can more easily check what you want syned

  • How can I call multiple records(40) at same time as webservice ?

    Hi All
      My scenario is some thing like calling SOAP(Webservice) to Rfc(BAPI)
      Thing is how can i call multiple records at the same time using the SOAP
       adapter i.e i need to make a request to BAPI and in the BAPI response
       based on the fields, i need to send to different records....it is Sync call
    Can any explain me how to implement this scenario ?
    Regards
    Kiran lvs

    HI,
    Please see the below link
    http://help.sap.com/saphelp_nw04/helpdata/en/42/ed364cf8593eebe10000000a1553f7/content.htm
    Regards
    Chilla..

  • How do I sync multiple iPones on the same iMac

    How do I sync multiple iPones on the same iMac

    Use another account where?  Let's say phone A is being synced to Mac A, and now you want to add phones B and C to Mac A, then they will all be syncing using the same account, the one used on Mac A.  Phones B and C can share apps and songs currently on Mac A's iTunes, but they will lose any apps, etc. that were previously put on them from other macs that use different accounts.  That's the way it works. If you want to keep the apps on B and C, then keep syncing them to their original macs.

  • How can I save multiple titles under the same DVD?

    I use HandBrake to rip DVD's into iTunes. How can I save multiple titles under the same DVD? For instance, I have a Jimi Hendrix documentary that comes with special features, such as concert performances. I would like to have the main feature and the special features saved in my iTunes under the same title, perhaps as different 'tracks' (kind of like how different songs can be saved under the same album).
    Is there a way for me to do this, or am I chasing phantoms?

    *This response is for iPhoto 11 (v9). If you're using an earlier version, please post back and let us know. Troubleshooting steps are not the same for different versions. To find out which iPhoto you have: iPhoto Menu -> About iPhoto)*
    Duplicate the photo first. (Photos -> Duplicate). This means that you will have multiple copies of the master as well as the edited version.
    If you use versions like this often and wish to have only one master then you can do this with Aperture.
    Regards
    TD

  • Label Printing Using Address Book - How can I Print multiple labels of the same name?

    Label Printing Using Address Book - How can I Print multiple labels of the same name?

    I used to be able to print multiple copies of the same picture on one page using iphoto. There was a customise button when you went through to print and it was there somewhere. I can't see it anymore - maybe since an upgrade.
    It's gone. But as a work-around, duplicate your photo (⌘D) to create as many versions as you want copies and select all at once. Then use the "Custom" print layout and set the photo size you want.
    After printing, trash the added versions.

  • How can I combine multiple deliveries of the same address to one shipment.

    Hello Friends,
    My client is sending multiple deliveires with multiple shipments to the same customer. His cost is increasingm therefore I am lookign to help him to combine all the deliveries to one shipment and one delivery.
    How can I combine multiple deliveries of the same address to one shipment.
    Please help me.
    Regards

    Of course, you can combine several deliveries into one shipment. You can set your own selection variant to select deliveries with the same ship-to party.
    You cannot combine several deliveries into one delivery. The combination of deliveres is possible only when creating deliveries in VL10*.
    Edited by: Harry Wu on Jun 21, 2010 4:30 AM

  • How can I remove multiple copies of the same song from the iTunes listing?

    How can I remove multiple copies of the same song from the iTunes listing. The program seems to be picking up the same songs from, for example, my user area and my public area in the C drive

    As above, Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library, however it is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve/merge ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • How can I print multiple copies of the same photo onto one sheet of paper?  Do I have to Duplicate the photo in iPhoto and then select them all?

    How can I print multiple copies of the same photo onto one sheet of paper?  Do I have to Duplicate the photo in iPhoto and then select them all?

    no - you simply have to select the option to print mucliples of a photo on a page
    select the photo and go to the file menu ==> print - select the printer, paper size and print size and click customize - in the tool bar click on the settings icon (the gear looking thingy) and select "multiple of the same photo per page" and the preview will reflect this option showing a full page of the selected size photos
    LN

  • TS4020 I live in a house with multiple iCloud users.  When they try to turn on "Find my computer"  they get the message that they will have to disable my "find my computer" setting in order to enable theirs.  How can they all be enabled at the same time?

    I live in a house with multiple iCloud users.  When they try to turn on "Find my computer"  they get the message that they will have to disable my "find my computer" setting in order to enable theirs.  How can they all be enabled at the same time?

    Try this support document for information on how to contact Apple and account security. Apple ID: Contacting Apple for help with Apple ID account security

  • Can you opening multiple albums at the same time in Photo (not iPhoto)?

    When converting the iPhoto library to Photo most of the albums that were in place in iPhoto converted to albums in Photo . . . .but not all. Some were retained as events mainly those that were folders within an album. In order to move them to the right album I would like to have multiple albums open at the same time (side by side) so that I can make sure not to duplicate photos or move them to the wrong spot.
    I cant see how to do this, it seems that I can need to open one album and check phots and then close to look within and other and rely on memory. There must be a more efficient and accurate way to do this?

    All of the events in iPhoto were converted to albums and are located in the Folder titled iPhoto Event in the sidebar of Photos. 
    You can't open multiple albums at the same time.  You can create a smart album that will do essentially the same thing with the following criteria:
    Album is "A"
    Album is "B".
    The smart album will display all of the photos in those two albums.

  • How do i uncheck multiple songs at the same time in my library?

    how do i uncheck multiple songs at the same time in my library?

    THANKS.
    i just figured out that u can highlight them then right click and the option is there

Maybe you are looking for

  • 1st generation ipod 1GB replacement

    I have a 1st generation Ipod Nano 1GB Iunderstnd if i return it to apple they will replace it... some people have told me the replace it with a 5th or 6th generation ipod nano is this true.and ifit are they new or refurbished ones

  • How to cut and combine itunes tracks?

    I have created a slideshow for a wedding and want to play parts of a few itunes songs during the slideshow. I have read that Garage Band is supposed to be able to do this, but I cannot figure out how to do it in Garage Band. Can someone please help?

  • HOW LONG TO BURN BLU RAY VIA COMPRESSOR 3.5?

    Does anybody know the ballpaerk figure as to how long a 115 minute FCP 7 project exported to self contained movie and brought into Compressor 3.5 to burn a blu ray disk on an external blu ray writer will take? Is Roxio Toast any faster? Thanks much f

  • Report on percentage metrics with SQL

    Hi All, We have a requirement to create a report on few metrics. Example ORG COST_BY_ORG PERCENTAGE FA1 total 100 14.29% HG total 400 57.14% JY total 200 28.57% grand total: 700 100% I was able to acheive till the totals by ORG. But not sure how I co

  • Chinese Text

    I'm having trouble pasting chinese text from an Microsoft Excel document.  How do I make the chinese characters appear in the InDesign document? Excel: InDesign: Best, Daniel