Modify "sync movie" list.

How does one modify the "sync movie" list under the video tab?

To clarify: In order to get any files out of the video tab on the iPhone sync screen, the files have to be deleted from the iTunes library. If they are deleted from the iTunes library, they are not accessible to any iPod accessing iTunes or cannot be played on the computer. Consider Apple's Back Up suggestion: http://docs.info.apple.com/article.html?artnum=302392
So if you are tired of certain movies or shows, and don't want them "cluttering" the iPhone sync Video screen, you can delete them from the iTunes library, but then they are LOST FOREVER and they not available on the computer.
For selected files, you can archive them and copy them off the computer by going to either the Movie or TV Shows folders and dragging them to the back up disk before deleting them. After they have been archived, you can go to the iTunes app and select the movies or shows from the library for deletion. I just prefer to uncheck the files I do not want syncd, since that means you want accidentally lose something you have purchased.

Similar Messages

  • Syncing Movie Playlists?

    In the past, I've always had specific playlists in iTunes that I would add/remove songs and movies from then sync directly to my iPod (just in case something happend and I lost everything on the iPod I could just sync right back to where it was).
    But now with the iPhone 3G all I can do is scroll through a list (in my case, an extremely long list) of movies and put a tick next to the ones I want on my iPhone - this gets very annoying very quickly.
    Is there a way to sync movie playlists directly to you iPhone 3G?

    No way.
    iPhone only recognizes one Movie list, the same for TV Shows.
    If you want to create a Movie list in the iTunes you use to sync your iPhone, it won't be recognized either.
    The Movies are treated as if they were in a solely single list that you can't modify... at least that you modify the name of every movie in iTunes to make them appear in different order.
    I am agree that it is a must to have a way to manage movies in different lists. But, at this moment, it is impossible.

  • Syncing movies (mp4) from iTunes to iPhones not working version 2.2

    Here is what I hope is the final answer to this incredibly prevalent problem, gleaned from a few PARTIAL answers, many USELESS answers, and some trial and error on my part.
    Problem:
    You are getting an error message when trying to sync MP4 movies to your iPhone using iTunes. (sorry I can't repeat the error message, I can't seem to restore the warning dialog that I turned off)
    Solution:
    Add the desired movie to the movies area of your iTunes application (you have already done this if you are receiving this error)
    From the list view, select (regular click to highlight) the desired movie.
    From the "Advanced" menu (NOT from right click as has been suggested many times), select "Create iPod or iPhone version"
    Now you will wait for a long time. A progress bar will show the conversion in process.
    When done, you will have two copies of the movies. One in the original location, and one in your iTunes movie folder. The newly created one will sync to your iPhone.
    To determine which is the new movie either
    1) Add "Date modified" to your list view by right clicking on the column headings in the movies list panel,
    - or -
    2) Right click on either of the lines and choose "Get Info" to view the name of the folder. Delete the one which is not the newly converted one. Hopefully this will only delete it from your movie list, not from your media. That's how it worked for me. If it asks if you want to move it to the recycle bin, you may have deleted the wrong one.
    After it is done, attach and select the iPhone device. Go to the video tab and scroll down to "movies". Check/uncheck the appropriate boxes for your movie(s) and hit "apply". Your movie(s) should now properly sync the phone.
    You do NOT need new software (for an MP4 movie)
    "Convert to iPhone" is NOT on the context menu
    Itunes will lock up for part of this process

    That didnt work, and there was no conversion bar. Ever since the new software update, my two iphones will not sync movies, and the older iphone will also not sync the music now. What is the point of having these?

  • Unidentifiable Icon in "My Movies" List

    This evening I bought a movie on my Apple TV and noticed an unfamiliar icon in the "My Movies" list. It looked somewhat like an "I" but it's not quite sharp enough for me to make out.
    After trying a few things I figured out that it appeared to be an identifier for content that has been purchased on the Apple TV that has not yet synced back to iTunes. Once the Apple TV has synced back to iTunes running on my Mac, the icon went away.
    Has anyone else seen this icon? Do you know what it is? I searched this forum and Apple's documentation but couldn't find anything.

    Yes, that's it! Thanks. Is this feature documented anywhere or is it so obvious that Apple didn't need to spell it out for people like me?

  • How can we modify alv output list

    Hi
    this is fazil.
    Please tell me any body How can we modify alv output list.
    Thanks & Regards
    Fazil
    [email protected]

    Fazil,
    check the program,
    You can find the code in this program 'BCALV_FIELDCAT_TEST'
    *& Report  BCALV_FIELDCAT_TEST                                         *
    This report allows to modify the fieldcatalog of a corresponding
    output table and to view the effects of your changes directly.
    Note that for some changes you need to newly display the whole
    ALV Grid Control, e.g., DDIC-Fields are read only the first time
    you call SET_READY_FOR_FIRST_DISPLAY.
    Note also that not all scenarios can be tested since the output
    table does not comprise all fields to test available features
    of the fieldcatalog. Copy this program and extend the output
    table accordingly if you want to test such a special feature.
    (The field CARRNAME in 'gt_sflight' was added to test field REF_FIELD
    and TXT_FIELD of the fieldcatalog - see what happens if you
    calculate subtotals by carrier-id).
    report  bcalvt_fieldcatalog           .
    data: ok_code               type sy-ucomm,
          save_ok_code          type sy-ucomm,
    fieldcatalog for output table
          gt_fieldcat           type lvc_t_fcat,
    fieldcatalog for fieldcatalog itself:
          gt_fcatfcat           type lvc_t_fcat,
          gs_fcatlayo           type lvc_s_layo.
    Output table
    data: begin of gt_sflight occurs 0.
    data: carrname type s_carrname.
            include structure sflight.
    data: end of gt_sflight.
    data: g_max type i value 100.
    data: g_all type c value SPACE.
    Controls to display gt_sflight and corresponding fieldcatalog
    data: g_docking type ref to cl_gui_docking_container,
          g_alv     type ref to cl_gui_alv_grid.
    data: g_custom_container type ref to cl_gui_custom_container,
          g_editable_alv     type ref to cl_gui_alv_grid.
    LOCAL CLASS Definition
    class lcl_event_receiver definition.
      public section.
        methods handle_data_changed
          for event data_changed of cl_gui_alv_grid
          importing er_data_changed.
    endclass.
    class lcl_event_receiver implementation.
      method handle_data_changed.
    at the time being, no checks are made...
      endmethod.
    endclass.
    data: event_receiver type ref to lcl_event_receiver.
    end-of-selection.
      set screen 100.
    *&      Module  STATUS_0100  OUTPUT
          text
    module status_0100 output.
      set pf-status 'BASIC'.
      set titlebar 'BASICTITLE'.
    create ALV Grid Control in the first run
      if g_docking is initial.
        perform create_and_init_controls.
      endif.
    endmodule.                             " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    module user_command_0100 input.
      save_ok_code = ok_code.
      clear ok_code.
      case save_ok_code.
        when 'SUBMIT'.
    set the frontend fieldcatalog
    ATTENTION: DDIC-Fields are not updated using this method!
    (see 'RESTART')
          call method g_alv->set_frontend_fieldcatalog
               exporting
                 it_fieldcatalog = gt_fieldcat.
          call method g_alv->refresh_table_display.
          call method cl_gui_cfw=>flush.
        when 'RESTART'.
    Destroy the control currently visible and display it again
    using the changed fieldcatalog.
          perform restart_sflight.
        when '&ALL'.
          perform switch_visibility.
      endcase.
    endmodule.                             " USER_COMMAND_0100  INPUT
    *&      Form  CREATE_AND_INIT_CONTROLS
          text
    -->  p1        text
    <--  p2        text
    form create_and_init_controls.
      create object g_docking
          exporting
               dynnr = '100'
               extension = 150
               side = cl_gui_docking_container=>dock_at_bottom.
      create object g_alv
          exporting
               i_parent = g_docking.
      create object g_custom_container
          exporting
               container_name = 'CC_0100_FIELDCAT'.
      create object g_editable_alv
          exporting
               i_parent = g_custom_container.
    register events
      create object event_receiver.
      set handler event_receiver->handle_data_changed for g_editable_alv.
      call method g_editable_alv->register_edit_event
                    exporting
                       i_event_id = cl_gui_alv_grid=>mc_evt_modified.
      perform build_fieldcatalogs changing gt_fieldcat gt_fcatfcat.
      perform modify_fieldcatalog changing gt_fcatfcat.
      perform select_data.                 "CHANGING gt_sflight
      call method g_alv->set_table_for_first_display
              changing
                   it_outtab       = gt_sflight[]
                   it_fieldcatalog = gt_fieldcat[].
    optimize column width of grid displaying fieldcatalog
      gs_fcatlayo-cwidth_opt = 'X'.
    Get fieldcatalog of table sflight - alv might have
    modified it after passing.
      call method g_alv->get_frontend_fieldcatalog
                importing et_fieldcatalog = gt_fieldcat[].
      call method cl_gui_cfw=>flush.
    Display fieldcatalog of table sflight:
      call method g_editable_alv->set_table_for_first_display
              exporting
                   is_layout       = gs_fcatlayo
              changing
                   it_outtab       = gt_fieldcat[]
                   it_fieldcatalog = gt_fcatfcat[].
    register events
      create object event_receiver.
      set handler event_receiver->handle_data_changed for g_editable_alv.
    endform.                               " CREATE_AND_INIT_CONTROLS
    *&      Form  restart_sflight
          text
    -->  p1        text
    <--  p2        text
    form restart_sflight.
      data: ls_fieldcat type lvc_s_fcat.
    free g_docking and thus g_alv
      call method g_docking->free.
      clear g_docking.
      clear g_alv.
    create new instances
      create object g_docking
          exporting
               dynnr = '100'
               extension = 150
               side = cl_gui_docking_container=>dock_at_bottom.
      create object g_alv
          exporting
               i_parent = g_docking.
    This is an internal method to invalidate all fields in the fieldcat
      loop at gt_fieldcat into ls_fieldcat.
        clear ls_fieldcat-tech_comp.
        modify gt_fieldcat from ls_fieldcat.
      endloop.
    Newly display the list with current fieldcatalog.
      call method g_alv->set_table_for_first_display
              changing
                   it_outtab       = gt_sflight[]
                   it_fieldcatalog = gt_fieldcat.
    Get fieldcatalog - it might be changed by ALV in the last call
      call method g_alv->get_frontend_fieldcatalog
              importing
                   et_fieldcatalog = gt_fieldcat[].
      call method g_editable_alv->refresh_table_display.
      call method cl_gui_cfw=>flush.
    endform.                               " restart_sflight
    *&      Form  select_data
          text
    -->  p1        text
    <--  p2        text
    form select_data.
      data: lt_sflight type table of sflight with header line,
            ls_scarr type scarr.
    select data of sflight
      select * from sflight into table lt_sflight up to g_max rows.
    copy data to gt_sflight and update CARRNAME
      loop at lt_sflight.
        move-corresponding lt_sflight to gt_sflight.
        select single * from scarr into ls_scarr
           where carrid = gt_sflight-carrid.
        gt_sflight-carrname = ls_scarr-carrname.
        append gt_sflight.
      endloop.
    endform.                               " select_data
    *&      Form  BUILD_FIELDCATALOGS
          text
         <--P_GT_FIELDCAT  text
         <--P_GT_FCATFCAT  text
    form build_fieldcatalogs changing p_fieldcat type lvc_t_fcat
                                      p_fcatfcat type lvc_t_fcat.
      data: ls_fcat     type lvc_s_fcat.
    Fieldcatalog for table SFLIGHT: p_fieldcat
    generate fieldcatalog automatically
      call function 'LVC_FIELDCATALOG_MERGE'
          exporting
               i_structure_name       = 'SFLIGHT'
            I_CLIENT_NEVER_DISPLAY = 'X'
           changing
                ct_fieldcat            = p_fieldcat[]
       EXCEPTIONS
            INCONSISTENT_INTERFACE = 1
            PROGRAM_ERROR          = 2
            OTHERS                 = 3
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    shift all column positions to the right except for MANDT
      loop at p_fieldcat into ls_fcat.
        if ls_fcat-fieldname ne 'MANDT'.
          add 1 to ls_fcat-col_pos.
          if ls_fcat-fieldname = 'CARRID'.
            ls_fcat-txt_field = 'CARRNAME'."link CARRNAME to CARRID
          endif.
          modify p_fieldcat from ls_fcat.
        endif.
      endloop.
    create a new line for CARRNAME in p_fieldcat
      clear ls_fcat.
      ls_fcat-fieldname = 'CARRNAME'.
      ls_fcat-ref_table = 'SCARR'.
      ls_fcat-col_pos = 1.
    insert new line before CARRID (do not forget MANDT!).
      insert ls_fcat into p_fieldcat index 1.
    Fieldcatalog for table LVC_T_FCAT:p_fcatfcat
    Generate fieldcatalog of fieldcatalog structure.
    This fieldcatalog is used to display fieldcatalog 'p_fieldcat'
    on the top of the screen.
      call function 'LVC_FIELDCATALOG_MERGE'
          exporting
               i_structure_name       = 'LVC_S_FCAT'
            I_CLIENT_NEVER_DISPLAY = 'X'
           changing
                ct_fieldcat            = p_fcatfcat[]
       EXCEPTIONS
            INCONSISTENT_INTERFACE = 1
            PROGRAM_ERROR          = 2
            OTHERS                 = 3
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    Hide all fields that are not documented (valid for release 4.6A)
      perform hide_fields changing p_fcatfcat.
    endform.                               " BUILD_FIELDCATALOGS
    *&      Module  EXIT_PROGRAM  INPUT
          text
    module exit_program input.
      leave program.
    endmodule.                             " EXIT_PROGRAM  INPUT
    *&      Form  MODIFY_FIELDCATALOG
          text
         <--P_GT_FCATFCAT  text
    form modify_fieldcatalog changing p_fcatfcat type lvc_t_fcat.
      data ls_fcat type lvc_s_fcat.
      loop at p_fcatfcat into ls_fcat.
        ls_fcat-coltext = ls_fcat-fieldname.
        ls_fcat-edit = 'X'.
        if ls_fcat-fieldname = 'COL_POS' or ls_fcat-fieldname = 'FIELDNAME'.
          ls_fcat-key = 'X'.
        endif.
        modify p_fcatfcat from ls_fcat.
      endloop.
    endform.                               " MODIFY_FIELDCATALOG
    form hide_fields changing p_fieldcat type lvc_t_fcat.
      data: ls_fcat type lvc_s_fcat.
    Only show documented fields of fieldcatalog.
    For a documentation choose "Help->Application Help" in the menu.
      loop at p_fieldcat into ls_fcat.
        if not (
             ls_fcat-fieldname eq 'CFIELDNAME'
        or   ls_fcat-fieldname eq 'COL_POS'
        or   ls_fcat-fieldname eq 'COLDDICTXT'
        or   ls_fcat-fieldname eq 'COLTEXT'
        or   ls_fcat-fieldname eq 'CURRENCY'
        or   ls_fcat-fieldname eq 'DD_OUTLEN'
        or   ls_fcat-fieldname eq 'DECIMALS_O'
        or   ls_fcat-fieldname eq 'DECMLFIELD'
        or   ls_fcat-fieldname eq 'DO_SUM'
        or   ls_fcat-fieldname eq 'DRAGDROPID'
        or   ls_fcat-fieldname eq 'EDIT_MASK'
        or   ls_fcat-fieldname eq 'EMPHASIZE'
        or   ls_fcat-fieldname eq 'EXPONENT'
        or   ls_fcat-fieldname eq 'FIELDNAME'
        or   ls_fcat-fieldname eq 'HOTSPOT'
        or   ls_fcat-fieldname eq 'ICON'
        or   ls_fcat-fieldname eq 'INTLEN'
        or   ls_fcat-fieldname eq 'INTTYPE'
        or   ls_fcat-fieldname eq 'JUST'
        or   ls_fcat-fieldname eq 'KEY'
        or   ls_fcat-fieldname eq 'LOWERCASE'
        or   ls_fcat-fieldname eq 'LZERO'
        or   ls_fcat-fieldname eq 'NO_OUT'
        or   ls_fcat-fieldname eq 'NO_SIGN'
        or   ls_fcat-fieldname eq 'NO_SUM'
        or   ls_fcat-fieldname eq 'NO_ZERO'
        or   ls_fcat-fieldname eq 'OUTPUTLEN'
        or   ls_fcat-fieldname eq 'QFIELDNAME'
        or   ls_fcat-fieldname eq 'QUANTITY'
        or   ls_fcat-fieldname eq 'REF_FIELD'
        or   ls_fcat-fieldname eq 'REF_TABLE'
        or   ls_fcat-fieldname eq 'REPREP'
        or   ls_fcat-fieldname eq 'REPTEXT'
        or   ls_fcat-fieldname eq 'ROLLNAME'
        or   ls_fcat-fieldname eq 'ROUND'
        or   ls_fcat-fieldname eq 'ROUNDFIELD'
        or   ls_fcat-fieldname eq 'SCRTEXT_L'
        or   ls_fcat-fieldname eq 'SCRTEXT_M'
        or   ls_fcat-fieldname eq 'SCRTEXT_S'
        or   ls_fcat-fieldname eq 'SELDDICTXT'
        or   ls_fcat-fieldname eq 'SELTEXT'
        or   ls_fcat-fieldname eq 'SP_GROUP'
        or   ls_fcat-fieldname eq 'SYMBOL'
        or   ls_fcat-fieldname eq 'TECH'
        or   ls_fcat-fieldname eq 'TIPDDICTXT'
        or   ls_fcat-fieldname eq 'TOOLTIP'
        or   ls_fcat-fieldname eq 'TXT_FIELD' ).
          ls_fcat-tech = 'X'.
        endif.
        modify p_fieldcat from ls_fcat.
      endloop.
    endform.
    form switch_visibility.
    data:  lt_fcatfcat type lvc_t_fcat,
            ls_fcat type lvc_s_fcat.
    call method g_editable_alv->get_frontend_fieldcatalog
                 importing ET_FIELDCATALOG = lt_fcatfcat.
    if not g_all is initial.
         perform hide_fields changing lt_fcatfcat.
         g_all = SPACE.
    else.
        loop at lt_fcatfcat into ls_fcat.
           if ls_fcat-tech eq 'X'.
               ls_fcat-tech = SPACE.
               ls_fcat-no_out = 'X'.
               modify lt_fcatfcat from ls_fcat.
           endif.
        endloop.
        g_all = 'X'.
    endif.
    call method g_editable_alv->set_frontend_fieldcatalog
                exporting it_fieldcatalog = lt_fcatfcat.
    call method g_editable_alv->refresh_table_display.
    endform.
    Don't forget to rewaard if useful..

  • HT203167 Movie isn't in my movie list

    Hey all!
    This may be a STUPID stupid question, but... here goes!
    Well, I just bought 'Seven Psychopaths' from the iTunes Store, but the problem is, I see it in purchased items, and can play it from there... but it's not listed with the rest of my movies and when I search through the movie-list, it doesn't find it.  I have actually played a few minutes of it from the Purchased folder and it works!  But I want to sync my iPad to iTunes and I think it's not going to see it in my list.  This is ANNOYING! 
    Help!

    How to get all the iWork apps, iPhoto, and iMovie for free on an eligible iPhone or iPad
    http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
    About Free Apple Apps for iOS 7 compatible devices
    http://support.apple.com/kb/HT5913
     Cheers, Tom

  • Can't sync movies to iPad; can't share movies on network

    On the iPad (with retina display), when trying to watch movies shared from iTunes, after selecting the shared library, the circle spins for a while until failing with "Unable to turn on Home Sharing".  This started happening a lot recently, but I figured it wasn't that bad....I can just sync a few movies to the iPad, no problem, right? WRONG!!!!  I cannot sync movies to the iPad either.  iTunes just acts like it is doing something, then after a while it just stops acting like it's doing anything.  The movies never sync.  Also, if I deselct movies that are already there, they still do NOT get removed from the iPad.
    You might ask how I got the movies there in the first place.  This happened once already and I reset the iPad.  I was able to watch one movie in my shared library before getting the "Unable to turn on Home Sharing", and I was able to sync 4 movies.  That was it though, and all attempts to watch shared movies or to sync movies now fail.  Funny thing is that when I reset the iPad I lost a lot of custom settings.  I only got movies on it for a day biut I've been configuring my erased settings for a week.  I have reset my account info for home sharing in the iPad multiple times.  I have reset the iPad.  As I said, resetting worked for a day or two.
    Any ideas?
    Gary

    Bluetooth on the iPad is aimed at devices such as headphones and keyboards - the supported profiles are listed on the this page : http://support.apple.com/kb/HT3647
    iOS 5 and the iCloud allow more to be done wirelessly

  • DVD Movie List

    I have DVDPedia and trying to publish a list on iWeb so friends can see my movie list with pictures and descriptions. The program has the ability to export to all sorts of ways but I can't seem to get it on a web page in iWeb. I have it on a Safari page just like I would like it to show up when you open it, but can't seem to get past this point. I have a .mac account and I don't know what else I have to have.
    Gary

    Hi Gary,
    Nothing else...
    DVDPedia published its files to a folder, right? (I love DVDPedia!)
    Go to the finder menu choose Go=>iDisk=>My iDisk (if you prefer hit Command(Apple)Shifti)
    A window will popup in which your iDisk contents will load you will find a folder called "Web" in it, Double-click it and you will find a Folder called "Sites" in it. Again double click to open. (you're now in iDisk/Web/Sites/)
    Drop the folder created by DVDPedia into that folder
    the url of it will be
    web.mac.com/username/nameofthefolder/index.html
    entering this will bring up the DVD list.
    Now that the pages are on the web you could just make a link on your site to that url or you could embed them to iWeb using an iframe so that they look like being in your site actually...
    Just make an html snippet and the iframe code to modify can be found on this page
    http://alyeska.altervista.org/en/iWeb_iframe.html
    If you experience any problems don't hesitate to post...
    Regards,
    Cédric

  • Can't sync movie from iPhone to without losing all my songs

    I recently bought a 1GB movie directly to my iPhone and I want to back it up on my computer. I have "manage movies and songs manually" checked on the summary page, but when I try to drag the movie over it doesn't take. When I click the sync movies option I get a warning that I'm going to lose all my songs, which I don't want to do. Can someone tell me how to get this huge file off my phone so I can use that space for other files and purchases?

    have you tried this ?
    connect your device and right-click or control-click your iPod in the iTunes Source list, then choose +transfer purchases+ from the shortcut menu that appears.
    JGG

  • How to access syncs movies.

    This may sound stupid but where do my sync movies go? Are they automatically added to the MY MOVIES menu on the Apple TV 2?
    Is there a way to refresh the list to make sure that the Apple TV is playing the movie from it's hard drive? When the movie is streamed it skips since I still didn't upgrade my router. With Apple TV 1 it was clear what you reading from the the ATV HD and now, not so much.
    Any help?!
    Message was edited by: alexjuno

    Yes, your synced movies go to "my movies"
    in iTunes, device Atv/summary/custom sync/click "show only sync itms on Atv" then click on "sync" and your list will be refreshed
    Now only the synced items will show up on your Atv
    I use this setting and keep on Atv disk new movies, or what we want to watch in near future, and kids movie
    Message was edited by: HotinPlaya
    Message was edited by: HotinPlaya

  • Cannot sync movies to ipad

    I am unable to sync movies to my iPad running iOS7.  The movies had previously synced with no issues.  I am not sure if this is an issue with iOS7 but did not have this problem with iOS6.  I have tried different ports, updating iTunes & iOS, restoring and cycling power on everything.
    The movies can be selected to sync but after sync they show up gray in the list under iTunes list of what is on the iPad.  They also do not show up on the iPad.

    I'm certain that the problem is from configuring the sync:
    http://ipad.about.com/od/iPad_Guide/ss/How-To-Sync-An-iPad-With-iTunes-Music-Mov ies-Apps_4.htm

  • Cannot Sync Movies or Music to from iTunes on Mac Mini to Apple TV

    Hello,
    In itunes on my Mac Mini I can see my ATV and when I click on the ATV the only tab I have is the photos tab. I don't have a Movies tab to sync my movies. I have my ATV and itunes at the latest level and this is the first time I have tried to sync movies. Up until now I have just streamed the movies from the Mini, but I have 150Gb of space on the ATV that I would like to use.
    I would appreciate any help.
    Thanks.

    I too need the answer to this question. My Apple Tv was syncing just fine with iTunes up until I updated to iTunes 8.1 and then left town for a week. I returned, and my Apple TV would not appear in the Devices list in iTunes.
    I tried connecting the AppleTV both via wireless and ethernet, and it never appeared in iTunes. Then I set up sharing between iTunes on my computer and the Apple TV and it finally showed up in the Devices list in iTunes, but it only shows the 'Summary' and 'Photos' tabs and will not sync music or movies with the computer. It was all working just fine before. I don't really care what happened (though Apple should) and would be happy to just get the Apple TV syncing again. How do I re-link it as a primary?
    For what it's worth, the Apple TV does not show up in "iTunes Preferences > Apple TV > Apple TVs connected to iTunes". I've restarted the Apple TV, the router, and my computer, with no improvement in the situation.
    Message was edited by me to add some info.

  • IPOD Touch will not sync Movies

    I have an Ipod touch, that will only sync 2 out of 6 movies that i have. I have recently purchased Zombieland and for some reason it will not sync to my ipod. It will play in my itunes, i can see it on my list of movies to sync, but when i click it ( and i have it clicked on only sync movies) it does not sync at all to my ipod. i have already reset my ipod touch twice and it is still doing this. it is also doing with with several other movies. what do i need to do to fix this?

    Hello LCGalletti,
    And welcome to Apple Discussions!
    Are you receiving any error messages while trying to sync these movies? How do you have your iPod configured to sync movies from under the Movies tab? Do you manually manage your iPod's contents?
    Perhaps these videos are just not compatible. If that is the case, highlight the video in iTunes and choose "Create iPod or iPhone version" from the Advanced drop down menu. Then try resyncing these movies to your iPod.
    If they are purchases from the iTunes store, make sure you are trying to sync the *Standard Version* and not the *High Definition* version.
    For more help regarding this issue, see this Apple support document.
    http://support.apple.com/kb/ts1497
    B-rock

  • Removing modify/sync NTFS permissions using removeaccessruleall in Powershell

    Hi,
    I've got a script together which removes all non-inherited groups from a user's home folder. It's working fine until I run into groups which have modify/sync permission. Even though I'm using the removeaccessruleall permission, those groups just don't
    remove. I've attached the code I'm using below and I can provide the full script if needed.
    $objAccessRule1 = New-Object System.Security.AccessControl.FileSystemAccessRule($strAccount,"FullControl","ContainerInherit,ObjectInherit","None","Allow")
    $objACL.RemoveAccessRuleAll($objAccessRule1)
    I'd appreciate any insight anyone can provide.
    Cheers,
    Ed Narayan
    

    Hi Rohn,
    Still no luck. The modify/sync permission still remains. Here's my code:
    import-module activedirectory
    $StrInvocation = (Get-Variable MyInvocation).Value
    $strRunDir = Split-Path $StrInvocation.MyCommand.Path
    $strDate = get-date -format "dd-MMM-yyyy-HHmm"
    # Set everyone to list folder contents - this folder only and remove extra groups on folder
    function phase1
    $strSharePath = $args[0]
    $objACL = Get-Acl $strSharePath
    # Define permissions
    $strPermission1 = "Everyone","ListDirectory","None","None","Allow"
    # Attach permissions to access rules
    $objAccessRule1 = New-Object System.Security.AccessControl.FileSystemAccessRule $strPermission1
    # Attach access rules to ACL object
    $objACL.SetAccessRule($objAccessRule1)
    $objACL.PurgeAccessRules([System.Security.Principal.NTAccount]"AccountAdmins")
    $objACL.PurgeAccessRules([System.Security.Principal.NTAccount]"SHR-MDRIVE")
    $objACL.PurgeAccessRules([System.Security.Principal.NTAccount]"SYSTEM")
    # Set access rules on ACL object
    Set-Acl $strSharePath $objACL
    # For each folder processed, turn on inheritance if it's off, remove orphaned acls and non-inherited groups
    function phase2
    [CmdletBinding()]
    Param([Parameter(Mandatory=$True,ValueFromPipeline=$True,ValueFromPipelinebyPropertyName=$True)]
    [string]$strFolder)
    PROCESS{
    # Set variables
    $strLog = "$strRunDir\Logs\log-$strDate.txt"
    $arrGroups = @()
    $objACEs = @()
    $objACL = get-acl $strFolder
    $objACEs = $objACL.Access | Where-Object {!$_.IsInherited} | select-object IdentityReference -unique
    [bool]$blnIsInherit = [bool](get-inheritance $strFolder | select-object -expandproperty inheritanceenabled)
    [bool]$blnGroupExists = $false
    $objChildObjects = Get-ChildItem $strFolder -recurse
    write-output "`n" | Out-file $strLog -append
    write-output "FOLDER:$strFolder `n" | Out-file $strLog -append
    write-output "Inheritance enabled - $blnIsInherit `n" | Out-file $strLog -append
    # If inheritance is turned off, enable it
    if(!$blnIsInherit)
    write-output "Enabling inheritance for $strFolder`n" | Out-file $strLog -append
    $objACL.SetAccessRuleProtection($False, $True)
    # If non-inherited permissions exist, process each of them
    if(($objACEs| Measure-Object).Count -gt 0)
    foreach($objACE in $objACEs)
    [bool]$blnIsGroup = $false
    [string]$strAccount = $objACE.IdentityReference
    if($strAccount -like "*\*")
    $arrSplit = $strAccount.split("\")
    $strAccount= $arrSplit[1]
    # Check if permission is for a group
    $blnIsGroup = [bool](get-adgroup $strAccount -erroraction silentlycontinue)
    # If permission is for a group, create an acl entry for removing it. Multiple remove entries can be created depending on the number of groups found
    if($blnIsGroup)
    Write-output "Removing:$strAccount`n" | Out-file $strLog -append
    $objACL.PurgeAccessRules([System.Security.Principal.NTAccount]$strAccount)
    if($strAccount-like "*SYSTEM*" -or $strAccount-like "*CREATOR OWNER*" -or $strAccount-like "*USERS*" -or $strAccount-like "*Administrators*" -or $strAccount-like "*S-1-5-*")
    Write-output "Removing:$strAccount`n" | Out-file $strLog -append
    $objACL.PurgeAccessRules([System.Security.Principal.NTAccount]$strAccount)
    Set-acl $strFolder $objACL
    Phase 1 changes the everyone group to list folder contents on this folder only and removes a bunch of groups from the root folder.
    Phase 2 removes all orphaned sids and non-inherited groups from the folder and turns on inheritance if it's turned off.
    At this stage, this feels like a bug within the ACL cmdlets.
    Cheers,
    Ed

  • I am having a weird problem with my phone every since it was updated this last time. I can sync movies from my computer to my iphone but any movies I buy with my phone I can not sync to the computer. But I redownload it to the computer and can then sync.

    I for the first time since buying my iphone and ipods for almost three years am concedering getting rid of them as I am getting tired of this problem. I can sync anything from my computer to the iphone. I can not sync movies bought on the iphone to my computer. I have tried everything and spent days trying to trouble shoot. I literally have bought hundreds of movies off Itunes but will not buy any thing else until I can figure this problem out. I have uninstalled Itunes reinstalled, troubles shooted using the itunes trouble shooter and reset my phone and nothing works.
    When I try to sync from my phone to the computer it says it can not be done because the iphone is not hooked up to the computer. I have only had these problesm since the new update not before. I have bought new cables twice to see if it helped and has not. Both my kids have Ipods, I have a Iphone and was planning on buying two Ipads for the kids for Christmas but not if I can fix this.

    You are correct.  Syncing should transfer any purchased media, including videos, from your device to your iTunes library provided your computer is authorized for the Apple ID used to make these purchases.  You mentioned that you have uninstalled iTunes before, but if you didn't follow this guide exactly, uninstalling iTunes and all of its components in the order specified, it may not have been successful so you should try again:  Windows XP or Windows Vista/7.

Maybe you are looking for

  • Work around for Excel's array formulae?

    I have an Excel spreadsheet which I have built over many years to manage maintenance tasks of my boat. I would like to convert this to run on Numbers. Unfortunately I can't find a work-around for Excel's "Array Formulas". The column headers of my spr

  • How to measure the size of a string

    windows app store how to measure the size of a string? string str = "Hello word windows app store";

  • RFC Proxy generation - redistribution of runtime jars

    Hello I've generated java proxies for some RFC function modules with the help of the NetWeaver Developer Studio and they seem to work OK. I used the following libraries for the generation: From plugins\com.sap.ide.jcb.core\lib\ aii_proxy_rt.jar aii_u

  • When syncing Iphone with a new itunes, does it delete everything?

    My old computer crashed and everything on it was deleted so I bought a new laptop, and I want to change the Iphone setting to Manually manage music and videos and Update my iphone 4 to 5.1.1 software, but when i click that, it says that it will delet

  • Dynamically importing a .mov file into flash

    Hi, I need to import a .mov file into a flash file and create a .swf movie. I can do it through File > Import Movies option. But I want to make it dynamic and import the movie. I would like to use ActionScripts rather than the File> Import options. P