MTP Device users that are experiencing Duplicated tracks after transfering playli

<FONT face=Helv color=#002f80 size=>
All MTP device users,
One of our technical support advisors just left here after discussing a duplicated tracks issue that he has been presented to him on the Zen Vision:M. This has also been discussed here in the forums. We were able to re-create the issue and developed a workaround that should resolve this. I don't always get to interact / develop solutions like this, so I thought you all might be interested before it is available in our knowledgebase.
WHY IS THIS HAPPENING:
MediaSource gives a user multiple methods of transfering content to your portable device.
<OL dir=ltr style="MARGIN-RIGHT: 0px">
Transfer through Sync Manager (Good for initial transfer or subsequent updates)</LI>
Transfer as part of a Playlist (User creates a playlist and any file not on the player in a structured manner are transfered)</LI>
Direct Transfer (User selects a track in the library and transfers to a folder on the player / device, more control for those that like it)</LI>
[/list]
The duplicate tracks are being created when a Direct Transfer is used on the initial loading of the device. With this, MediaSource transfers the files directly from the Music Library to whichever folder is selected on the device at the time of the transfer. If the 'Music' folder is selected, then all tracks will be copied directly to the 'Music' folder with no subfolders or structure created.
Following that, if a user creates and transfers a playlist to the portable device, MediaSource will copy the files into a subfolder structure based on Artist / Album and create a second copy of the files in this structure. Subsequent playlists will use this structure and any file within will not be duplicated.
Upon viewing the Albums or tracks on the player, the file now exists in that initial transfer location as well as in the folder structure created. Thus, Duplicated tracks.
HOW DO I FIX THIS:
If you do not have a copy of the tracks on your computer, copy them back from the initial transfer folder. Usually the root of the device or the 'Music' folder. Once safely backed up, delete the individual tracks in the folder leaving any folders already created (Formatting or deleting all from the player is also an option).
Method #.
<OL dir=ltr style="MARGIN-RIGHT: 0px">
Select the MTP player in the left MediaSource menu</LI>
Click the 'Sync Manager' Icon.</LI>
Select PC Music Library and My Zen and set the sync direction as appropriate. Click Next.</LI>
Select the Audio checkbox. Click Next.</LI>
Select Start.</LI>
[/list]
Once complete, the tracks will now be stored on the device in a folder structure under 'Music' - 'Artist' - 'Album' - 'Track.xxx' This will give all of your playlists a common / structured location to find and organize your tracks without duplicates. Follow up additions or transfers should be handled using the Sync Manager or a Smart Playlist which includes recently added tracks which can then be transfered to the player.
Method #2.
<OL dir=ltr style="MARGIN-RIGHT: 0px">
Select the PC Music Library in the left MediaSource menu.</LI>
Select All Tracks (Or those that you wish to transfer to your device).</LI>
Right Click, choose 'Add to Playlist'</LI>
Name the playlist 'Initial Transfer'</LI>
Now select 'My Playlists' / 'Initial Transfer' in the left window and your portable device in the right menu.</LI>
Click the Transfer Arrow.</LI>
[/list]
Once complete, the tracks will now be stored on the device in a folder structure under 'Music' - 'Artist' - 'Album' - 'Track.xxx' This will give all of your playlists a common / structured location to find and organize your tracks without duplicates. Follow up additions or transfers should be handled using the Sync Manager or a Smart Playlist which includes recently added tracks which can then be transfered to the player.
Please feel free to post any comments here,
Daniel

slipinator,
You do realize that there are multiple moderators and I do not see every post, correct? This is a user interaction forum and if you have questions that other users cannot answer then it is advised that you contact Technical Support. I am not trying to be a jerk, just don't want to have any false impressions of what this board is here for. I try to answer what I can when I can, but I cannot get to every post.
For your question, the second one is more correct. When you transfer playlists, or use the auto sync, then the tracks are copied and organized. If you simply copy tracks in MediaSource, then it copies them directly where you tell it to.
So with your first question, if you copied tracks and playlists all at once, then you would create duplicates. The tracks would copy where you told them to (root, music, wherever) and then the playlists would copy the tracks again into an organized set of folders under Music when they transfered.
Your second question / statement is the better way to go if you don't want to use the Autosync.
Daniel
Message Edited by Daniel-CL on 04-06-2006 04:24 PM

Similar Messages

  • Script to find users that are a member of more than one of a list of specific groups

    Hi,
    I need to generate a list of users that are members in more than one group, out of a list of specific security groups.  Here's the situation:
    1) We have about 1100 users, all nested under a specific OU called CompanyUsers.  There are sub-OUs under CompanyUsers that users may actually be in.
    2) We have about 75 groups, all directly under a specific OU called AppGroups.  These groups correspond to a user's role within an internal line of business application.  All these groups start with a specific character prefix "xyz", so the group
    name is actually "xyz-approle".
    I want to write a script that tells me if a user from point 1) is a member in more than one group in point 2).  So far, I've come up with a way to enumerate the users to an array:
    $userlist = get-qaduser -searchroot 'dq.ad/dqusers/doral/remote' | select samaccountname |Format-Table -HideTableHeaders
    I also have a way to enumerate all the groups that start with xyz that the user is a member of:
    get-QADMemberOf -identity <username> -name xyz* -Indirect
    I figure I can use the first code line to start a foreach loop that uses the 2nd code line, outputting to CSV format for easy to see manual verification.  But I'm having two problems:
    1) How to get the output to a CSV file in the format <username>,groupa,groupb,etc.
    2) Is there any easier way to do this, say just outputting the users in more than one group?
    Any help/ideas are welcome.
    Thanks in advance!
    John

    Here is a PowerShell script solution. I can't think of way to make this more efficient. You could search for all groups in the specfied OU that start with "xyz", then filter on all users that are members of at least one of these groups. However, I suspect
    that most (if not all) users in the OU are members of at least one such group, and there is no way to filter on users that are members of more than one. This solution returns all users and their direct group memberships, then checks each membership to
    see if it meets the conditions. It outputs the DN of any user that is a member of more than one specfied group:
    # Search CompanyUsers OU.
    strUsersOU = "ou=CompanyUsers,ou=West,dc=MyDomain,dc=com"
    $UsersOU = New-Object System.DirectoryServices.DirectoryEntry $strUsersOU
    # Use the DirectorySearcher class.
    $Searcher = New-Object System.DirectoryServices.DirectorySearcher
    $Searcher.SearchRoot = $UsersOU
    $Searcher.PageSize = 200
    $Searcher.SearchScope = "subtree"
    $Searcher.PropertiesToLoad.Add("distinguishedName") > $Null
    $Searcher.PropertiesToLoad.Add("memberOf") > $Null
    # Filter on all users in the base.
    $Searcher.Filter = "(&(objectCategory=person)(objectClass=user))"
    $Results = $Searcher.FindAll()
    # Enumerate users.
    "Users that are members of more than one specified group:"
    ForEach ($User In $Results)
        $UserDN = $User.properties.Item("distinguishedName")
        $Groups = $User.properties.Item("memberOf")
        # Consider users that are members of at least 2 groups.
        If ($Groups.Count -gt 1)
            # Count number of group memberships.
            $Count = 0
            ForEach ($Group In $Groups)
                # Check if group Common Name starts with the string "xyz".
                If ($Group.StartsWith("cn=xyz"))
                    # Make sure group is in specified OU.
                    If ($Group.Contains(",ou=AppsGroup,"))
                        $Count = $Count +1
                        If ($Count -gt 1)
                            # Output users that are members of more than one specified group.
                            $DN
                            # Break out of the ForEach loop.
                            Break
    Richard Mueller - MVP Directory Services

  • How to retrieve the users that are following a document using JSOM / REST APIs in SharePoint 2013

    Hi everyone,
    Does anyone know how to use JSOM / REST APIs to retrieve the users that are following a specific document in SharePoint 2013? 
    Thanks in advance,
    Nam

    Hi Nam,
    Please use the sample code to get the followers for the document. Courtesy: Mokhtar
    Bepari 
    using Microsoft.SharePoint.Client;
    using Microsoft.SharePoint.Client.Social;
    ClientContext clientContext = new ClientContext("http://URL");
    SocialFollowingManager followingManager = new SocialFollowingManager(clientContext);
    SocialActorInfo actorInfo = new SocialActorInfo();
    actorInfo.ContentUri = "<documenturl>"; //set the document url.
    actorInfo.ActorType = SocialActorType.Document;
    //By using the GetFollowed method you can get the people who the current user is following.
    ClientResult < SocialActor[] > followedResult = followingManager.GetFollowed(SocialActorTypes.Users);
    //By using the GetFollowers() method you can get the people who are following the current user.
    ClientResult < SocialActor[] > followersResult = followingManager.GetFollowers();
    clientContext.ExecuteQuery();
    Once you get the resultset you can iterate like below:
    foreach(SocialActor actor in followedResult)
    string name = actor.Name;
    string imageURL = actor.ImageUri;
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • How do I chat between users that are under one .mac/MobileMe family acct?

    How do I chat between users that are under one .mac/MobileMe family acct? We are all under one account, but in different locations, using iChat 4.0.5 and OS 10.5.4. Thank you.

    The only way is to create separate accounts under either AIM or Jabber (for example Googletalk). Then everybody logs into iChat with a different user and you can have full iChat functionality (except encryption which works only if you have different .mac accounts). If some members of your family have already a gmail/googlemail account then they can use this account information to log into iChat if you create a Jabber account with the gmail user information. Otherwise go to www.aim.com, request a screen name and use this user information to create an AIM account in iChat.
    Have fun.

  • "Office 365 Mailbox" missing for users that are member of Ricipent Management role

    Hi,
    I have a hybrid setup with Office 365 and one exchange 2013 standard server on-premises.
    I currently have an issue with that I have a button after pressing the + under recipient to create a Office 365 mailbox from the ECP, but users that are members of the Recipient Management role don't have that button visible.
    What extra permissions are required to be able to create an Office 365 mailbox from the on-premises Exchange?

    Hi SeidKrv,
    Thanks for your update.
    Following article introuduces the permissions that need to assigned before running "New-Mailbox" command.
    Please focus on "Recipient Provisioning Permissions" session.
    Recipients Permissions
    http://technet.microsoft.com/en-us/library/dd638132(v=exchg.150).aspx
    Based on the article, it seems both Recipient Management role and Organization Management role are required.
    More detailed information on both management role as below:
    1. Administrators who are members of the Recipient Management role group have administrative access to
    create or modify Exchange 2013 recipients within the Exchange 2013 organization.
    2. Administrators that are members of the Organization Management role group have administrative access to the entire Exchange 2013 organization and
    can perform almost any task against any Exchange 2013 object, with some exceptions. By default, members of this role group can't perform mailbox searches and management of unscoped top-level management
    roles.
    Thanks
    Mavis Huang
    TechNet Community Support

  • I have 7 users that are interested in ExportPDF. Do I need 7 separate licenses?

    I have 7 end-users that are interested in ExportPDF. Do I need 7 separate licenses or just one since the service is cloud based?

    Hi candanceh48631207,
    Your assumption is correct. Each subscription is tied to a unique Adobe ID/email address. So, you'll want to purchase a subscription for each user, and have that subscription tied to their Adobe ID/email address.
    Please let us know if you have additional questions.
    Best,
    Sara

  • Listing users that are member of special role

    hello
    if i have a role that called role1 then how i can list users that are member of this role?
    thanks

    Try Pete Finnigans who_has_role.sql
    http://www.petefinnigan.com/tools.htm

  • Find USERS that are using a particulary Forms ??

    It is possibile to find the USERS that are using the a FORMS in application server ??
    I must update sometime a forms, but if the user is using the forms it is not possibile. Find the user i can call it for exit from teh form.
    Thank's a lot.

    I'm not aware of such an information somewhere. We had a similar need (actually we needed something more), and we used DBMS_APPLICATION_INFO package, which updates CLIENT_INFO column in V$SESSION.
    Bad news are : you have to change every Form to do that....but it's not difficult, you can add a call to that package in WHEN-NEW-FORM-INSTANCE trigger in each Form...

  • HT2515 Does iChat work with other users that are on other types of smartphones?  or only Mac phones and Mac mail, contacts, etc?

    Does iChat work with other users that are on other types of smartphones?  or only Mac iPhones and iMac Mail, Contacts, etc?

    Hi,
    The Messages Beta will Send iMessage to iPhones (Messages replaces iChat)
    iChat can SMS to phones
    It needs the computer to be listed as if it in the United States and contacting a Phone that is on a Carrier in the United States that is accepting SMS forwarding from AIM
    You list the Buddy as AIM and then +plus their number as in +123456789
    The computer can be made to "think" it is in the United States in System Preferences > International (or Text a Language in Lion) then Formats tab.
    The Phone has to be a US phone with all the trimmings about AIM's SMS forwarding.
    11:14 PM      Monday; February 20, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Is there a way to separate raw files from jpegs that are in one folder after downloading from camera when you shoot both together. I tried arrange or sort  by kind but that does not work. It arranges all folders but not the files in the folder., Is there

    Is there a way to separate raw files from jpegs that are in one folder after downloading from camera when you shoot both together. I tried arrange or sort  by kind but that does not work. It arranges all folders but not the files in the folder., Is there a way to separate raw files from jpegs that are in one folder after downloading from camera when you shoot both together. I tried arrange or sort  by kind but that does not work. It arranges all folders but not the files in the folder.

    Bridge will do the job. View > Sort > ByType. Then you can choose a group of one type and put the files in a separate folder.

  • LDAP users that are not Windows users

    Hello,
    I would like to use Active Directory as a directory service for internal intranet sites, etc.
    I have users that do not need access to a Windows desktop as they are connecting to the sites via kiosk/mobile devices.
    Can I set up a user that can be validated through LDAP but would not be able to access a Windows desktop through the normal Windows logon screen ?
    Chris.

    Hi Chris,
    If you want to restrict some users in Active Directory can only logon through mobiles/devices rather than computers, you can configure
    Deny log on locally and Deny log on through Terminal Services through Group Policy.
    More information for you:
    User Rights
    http://technet.microsoft.com/en-us/library/dd349804(v=WS.10).aspx
    Best Regards,
    Amy

  • How to get list of tables/users that are under audit

    Hello,
    For testing perpose I have set audit on many tables and users.
    Is there any view or table from which I get list of objects that are kept under audit?
    Noaudit All command for disabling all of them does not work properly. I have to exactly revert audit to stop.
    Means if I write audit insert on table1;
    Now for disabling this, if I write noaudit all then it dont works but If I write noaudit insert on table1 then it works.
    So I need a list on which objects I start audit.
    Or is there any other way to stop them?
    Regards,
    Bhavin M Mistry...

    Try
    DBA_STMT_AUDIT_OPTS
    DBA_PRIV_AUDIT_OPTS
    DBA_OBJ_AUDIT_OPTS
    SYS@etest> audit role;
    Audit succeeded.
    SYS@etest> SELECT * FROM DBA_STMT_AUDIT_OPTS;
    USER_NAME                      PROXY_NAME
    AUDIT_OPTION                             SUCCESS    FAILURE
    ROLE                                     BY ACCESS  BY ACCESS

  • Tzupdater.How it reflects the users that are not using the new USA DST rule

    If I update the JRE with tzupdater or just replace it with newer JRE will the time change according to the time zone I live in because I think that the changes in USA DST will not apply for the most of the other countries.

    Hi,
    You can do this directly in OAM, with option "a" (using auxiliary object class). You configure OAM to use the main person object class (inetorgperson) and then you can associate extra auxiliary object classes to it - and header variables can be set from any of the attributes that are in the user's profile, both main and auxiliary.
    Regards,
    Colin

  • EP6.0: Can't change the Users that are created earlier by somebody else

    Hi,
       I ( have super admin access) am trying to modify/delete some of the users that were created by some body else earlier.
    During Modify, it's not allowing me to change the following (grayed out)
    1> Last name
    2> First name
    3> email add
    Moreover I don't even see the password field where I can reset the password.
    Also when I change the validity period etc, for some reason, the old data come back again after some time.
    The user in question needs some additional access and need resetting of the password and I am not able to do the 2nd.
    Also please note that there is no issue with the User lock, I have checked that already.
    Thanks
    Arunava

    Have u Changed in User Mapping  ?
    Go to 'User Admn' - >User MApping -> search for the User u want -> Do edit .
    If u hav did any LDAP ,u can't change the Fname / Lname here as it's been configured .
    Regards,
    J
    Do Award pts if this's useful.

  • How to handle check-out files of users that are no longer with the company?

    We have cases that files were checked out and modified, but the engineers left before they check-in the files. What's the right way to handle such cases? Does the project admin have right to check-in for the engineers? How can we make another person to
    check the files in?

    Hi Peter, 
    Thanks for your post.
    Do you want check-in that files within the changes which that left engineer created to TFS Server? If yes, you need logon that engineer’s client using his account, then get modified files on this client and perform check-in.
    If you don’t need that changes which modified by that left engineer, just the check-out files on this client caused other users cannot work on that files, you can ask the team project admin user to perform
    tf undo command on that files to resolve this checked-out issue. 
    For example, the files be checked-out under workspace1, so execute this command “tf undo $/xx/xx(file path) 
    /collection:collectionURL /workspace:workspace1 /recursive” to undo it
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Unable to Save the Data Using BexSetData

    Hi All, I have a issue regarding saving plan data, Design: I  got a Workbook with several tabs, each tab has a input ready Query and has a layout as below A formatted user facing worksheet containing; an area where the user enters their plan data wit

  • Can't get plug-in for Acrobat to work in Safari (boy I've tried!)

    I've spent literally hours in the discussion group looking for an answer to this and can't find one that works, so I finally decided to post a new topic. I just moved from a Powerbook G4 to a MBP. On the G4, when I brought up a PDF file from a web pa

  • JFX 2.0 -fx-highlight-text-fill style has no effect

    When I try to set the highlight-text-fill style for a TextBox, it has no effect. The highlight-fill style, however, works as expected. public void start(Stage primaryStage) {     final TextBox tb = new TextBox(100);     tb.setStyle("-fx-font-size: 3e

  • Edit web part option does not appear in browser on lists

    I've inserted some lists on a wiki page. However, when viewing in the browser the checkbox and the dropdown containing the Edit Web Part option do not appear. On the properties tag I thought I enabled all the correct properties such as Allow Edit, Al

  • How to get  invoice via material document

    HI, How to  get  invoice via material document is there any table or any inderect way? thanks pandu