Share With duplicates

In my Share With list of names, two are duplicated. If I
click on a file associated with those users, the name only appears
once in the list of people with whom the file has been shared. I
cannot find any way of correcting the duplication.

Thanks.
If it helps, the name was linked to a file and I double
clicked it to apply a name rather than have the email address
appear. The change seemed not to take so I tried again. Then I got
a message saying the name already existed. Same with both I think.

Similar Messages

  • MY system folder, including hidden folders are littered with duplicate folders and files with the suffix (from old Mac) How do I remove them

    I have a Macbook Pro running Leopard 10.5.8. I had a problem with my my operating system (my fault, I moved a file I shoudnt have) couldnt boot up but was able to boot up from a backup. I managed to repair my original system except now all the system folders, including hidden folders are littered with duplicate folders and files with the suffix (from old Mac).  For the most part the dupes are an exact copy, but not always.  I want to remove them to free up space and cant imagine duplicate folders in the /system/library are not hindering my computer. But I dont know where to start and am afraid of doing irreparable damage. Any ideas

    pacull,
    Use iCal>View>Show Notifications to choose what to do with the notification.

  • I have Movies on  my iMac that I want to share with Apple TV. How do I do that without also having them synch to my iPhone.  The movies exceed the capacity of the iPhone.

    I have Movies on  my iMac that I want to share with Apple TV. I have no problem getting the movies to show up and play on Apple TV. However, when I synch my iPhone to to my iMac all of the movies try to synch to the iPhone and this exceeds the available capacity (32) of the iPhone. So the question is, how do I make the movies available on Apple TV but not synch to my iPhone?

    I looked around some more on my iPhone and did find a video app. So all is well.
    Thanks so much for your help!!

  • Help! My photos won't stream to the cloud and share with other devices. ( I've had the photo stream button on all the time I've had the phone.) The only way I can do it is by manually adding them to photo stream and this is very slow/ misses photos..

    Hello,
    I'm very frustrated. I need to delete photos from my iphone to increase the storage so I can update the operating system. Since first using the phone I bought extra iCloud storage and ensured the photo streaming button for the iCloud was turned on.
    Unfortunately it seems to have a mind of its own and will download and share some photos but the majority have not been downloaded.
    I've resorted to manually putting them on photo stream (the one you share with friends) so the photos will be on my iPad. It also takes ages for my iphone to put them on the photo stream. It's downloaded one album x3 ..??!!? I've tried deleting the duplicated photos but it's now frozen on me....
    I haven't dared delete the photos from my camera roll in case I loose them all and I'm therefore stuck in the situation of being unable to download the new operating system or take anymore photos/download music/apps. It *****!
    Please Help!
    Are there any other options for me to be able to  download my photos when I don't have a computer/laptop? Is there a permanent online storage option I can use?
    Thanks
    Becky

    Amazing steps you've done so far! The great news is this is very unlikely an issue with your iPhone.
    I've run into a similar issue lately as well. I narrowed it down to one song that was causing 30 songs not to sync. I removed the song from the sync list (unchecked it) and all 29 songs were able to sync.
    You may be running into a similar issue. This may be a problem with this version of iTunes, an issue with one song or a group of songs; hard to know for sure. It's important to narrow down and isolate the cause. Most imporantly get that music back on there!
    The way to narrow down the casue add just a few songs at a time (even 1, just to get that first sync finished). Manually syncing is what you'll need here.
    Plug in your iPhone, on the Summary screen (shows a picture of your iPhone, the iOS version, Restore iPhone....; etc). Under the Options area at the bottom choose to Manually Manage Videos and Music then choose Apply in the lower right. The music that's on your iPhone now should be removed from your iPhone now. You're now able to sync music manually.
    The link below explains how to drag the songs from the iTunes library on the computer on to your iPhone which will start the sync. Add just one song just to see if you can get 1 of those hundreds of songs on there. If you can, awesome! Keep adding until you find the song or group of songs that are causing this issue.
    http://support.apple.com/kb/HT1535
    Please let me know how things are going.
    Cheers!

  • I am trying to home share with my new MacBook. The music library I am wishing to share is not displaying anywhere on my new laptop under music or library. My computer is authorized and I have tried restarting itunes, etc. Any help/ideas?

    I am trying to home share with my new MacBook. The music library I am wishing to share is not displaying anywhere on my new laptop under music or library. My computer is authorized and I have tried restarting itunes, etc. Any help/ideas?

    Are you using the same ID for homesharing on all devices.
    By the way shared libraries don't show up under either 'Music' or 'Libraries'.

  • I am trying to home share with my sister. I have it down to where I can copy the songs, but I just don't have the "import" button. So it won't allow me to do anything with the songs from her computer. What should I do now?

    I am trying to home share with my sister. I have it down to where I can copy all the songs I want, but it won't allow me to import them because my iTunes doesn't show the "import" button at the bottom. So what do I do now?

    I have reinstalled the drivers. I watched it install the realtec and cirrus drivers. Hovering the mouse over the speaker icon says 'speakers: HP'. They are actually 'Creative'. 'Properties' indicates 'IDT High Definition CODEC' and 'This device is working correctly'.
    Driver details gives 'c:\Windows\system32\drivers\dmk.sys'.
    There is still no sound, although the little level meter on the control shows a green bar rising and falling.
    Obviously, it thinks it's working, but there's no connection to the speakers. They're not muted, either. I checked that too.
    Any other ideas?
    Thanks.

  • Create a folder on the desktop and share with everyone if it does not exist on a Windows 7 PC - No Domain

    I have a script that needs to be modified to create a folder on the desktop and share with everyone if it does not exist on a Windows 7 PC - No Domain.  Here is the script, need help at bottom
    =======================================================
    Set objShell = CreateObject("WScript.Shell")
    objComputer=objShell.ExpandEnvironmentStrings("%ComputerName%")
     IF Right(objComputer,3) = "000" Then
    Else
     strShortcut = objShell.SpecialFolders( "Desktop" )  & "\%username% Share.lnk"
      strShortcut = objShell.ExpandEnvironmentStrings(strShortcut)
    Set objLink = objShell.CreateShortcut( strShortcut )
     objComputer=objShell.ExpandEnvironmentStrings("%ComputerName%")
      objServer=Left(objComputer,7) & "-000"
     objLink.Description = objShell.ExpandEnvironmentStrings("%username% Share")
      objLink.TargetPath = objShell.ExpandEnvironmentStrings("\\" & objServer & "\Users\%username%\Desktop\%username% Share")
      objLink.Save
    End If
    =======================================================
    if "C:\Users\%username%\desktop\%username% Share" exits do nothing
    if not create the folder and share it with everyone read only
    ======================================================
    The section directly above is what I need to add, anyone have a clue how to make this work?

    Bill:  Can you suggest a site?  I am in the weeds here trying to get this done yesterday.  I have been reading code and trying to figure this out since yesterday morning.  I have to roll out this image to 2 dozen machines and
    this is holding us back.  Any idea which site I can post to for help?
    The bigger issue is that you have been given the answer to this in many different forms and, because you have no technical background, you fail to see what is being shown to you.  That is why I have repeatedly suggested that you hire a consultant.
    The link to the learning material is at the top o this page.  You can also search the web for Windows consultants.
    In the learning link you can also look up how to manage files. If, in the beginning you had chosen to use the learning materials you might not be in this bind.
    Look up and research the FileSystemObject.
    ¯\_(ツ)_/¯

  • I have an ipod that i share with my daughter she put in a password and has forgotten what and is currently locked out of the ipod.  How do we bipass this to create a new one or delete it all together without losing anything currently installed?

    I have an ipod that i share with my daughter she put in a password and now cannot remember it an is locked out.  How can we delete the currently existing useless password and not lose any of the information on the ipod?

    If you cannot remember the passcode for the Screen Lock, you will need to Restore the device...
    1)  Connect to iTunes on the computer you usually Sync with and Restore...
    http://support.apple.com/kb/HT1414
    2)  If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808

  • Can I share with Windows Without storing password?

    Hello Apple Community. I purchased a Mac Mini and am running OS X 10.8.3 with OS X Server on it. I have enabled Open Directory and File sharring using both AFP and SMB so that I can communicate with both my Apple Laptop and my Windows 8 workstation. However, I am quite frustrated with the need to Share files and folders using SMB (windows) and having to keep a password there for my account and my wifes account. I was hoping that using Open Directory I could use as an LDAP server and just have windows authenticate to that. The only other option I can think of is to create a third account and use it for netwok sharing only. Is there way to share with Windows clients using Open Directory where I do not have to store the password?
    Links to articles or suggestions greatly appreciated. I use a mixed environment as there are more game options on Windows then OS X, so saying repace the Windows computer is not an option.
    Thanks in Advance.

    home sharing works between two (or more) computers on the same network. if iTunes on his machine is running, you can transfer content without needing to touch his computer.
    if you have your content on an iPod, you can repopulate a new (empty) library with the files from there. check out this post by Zevoneer.
    or, you can Download past purchases from the App Store, iBookstore, and iTunes Store (the music feature is currently available in the US only).

  • Mounting Remote Shares with the Same Name

    I am accessing shares on remote servers and can mount volumes with no problems initially, using command+k and setting the Server Address to smb://ServerNameOrIP/SharePoint. This mounts a volume with the name of the share point. The problem I've run into is at work I need to mount 2 volumes on 2 different servers with the same share point name. These are shared servers, and for unrelated reasons the folder names on either server can not be changed. This doesn't work well for me. It creates the first volume with the name "Share" and a second one that in finder appears to be called "Share" as well, but if I use "Get Info" or in Terminal run ls /Volumes I can see that it actually gets mounted as "Share-1".
    Is it possible to change the name of one (or both) of these mounts? Mostly so I can see which one I'm on when browsing though Finder. I changed some settings in Finder so that the title bar allows me to see whether I'm on "Share" or "Share-1" but that doesn't actually tell me what server I'm on. Any ideas?

    I just discovered this after trying frivolously to get 2 shares of the same name from 2 different NAS drives to auto mount ....
    limitation with autofs or something ? it should really be painless, as it is in windows. but it seems on the mac side, OS X won't allow shares with the same name to auto mount ....

  • How do I transfer my TV shows purchashed on my ATV 2 to iTunes so I can share with other iOS devices? I have home sharing "on" and using the same account. iTunes see the ATV2 on airplay. I have a ATV (FIRST GEN) connected to my itunes account as well.

    So I can share with my other iOS devices?
    ATV 2 and iTunes software current.
    iTunes is on a iMac ( 3.2 GHz Intel Core i3)  OS X Lion 10.7.2 (11C74)
    home sharing on
    iMatch on
    using same iTunes account
    I have a ATV first gen and it works fine
    Airplay works so iTunes is seeing the ATV2
    help help....

  • When I migrated the contents of my iMac to my new MacBook Pro (both running Lion), I ended up with duplicate icons in the launchpad. How do I get rid of them?

    When I used migration Assistant to transfer stuff from my iMac to my MacBook Pro, both running the latest update of Lion, I ended up with duplicate icons in the Launchpad. How do I correct this situation. Some can be deleted using the iPad method of holding down an icon until they all jiggle and then clicking the "X" to delete. However, most do not have x's appear next to them. Otherwise, the migration seemed to go okay.

    Launchpad will display an icon for each copy of an application that is currently installed (as well as any aliases to those applications), so you will see more than one icon for an application if you have more than one version of the application installed or aliased. So did you create any aliases of these apps on your old computer? If so, delete them.

  • I updated the photos that share with Apple TV but old photos display during music

    I updated the photo file that shares with Apple TV, and they display correctly when I play the slide show, but when they play slideshow with music playing it's the old photo file. How do I get the new photos to display during music? Thanks

    Not sure what you are trying to do, but the photo is just cached.  You might try restarting ATV and see if that will foruce a cache relaod.
    What is it you did?  Did you update an image, cover art, photo stream?  It could also be that what ever you updated it not what is being displayed.  For instacne if you updated something in iPhoto, but are pointing to Photostream that will not have an effect.  Same problme if you are looking at cover art while the music is playing.

  • I have an ipod mini.  I have a personnal voice greeting that I want to share with my siblings and grandchildren.  How do I do that?

    I have an iPod mini with an audio greeting from my deceased mother, that I want to share with my siblings and grandchildren. How do I do that?

    So you want to add this greeting to the Mini?  If so, you'll first need to import it into iTunes (assuming it's an iTunes compatible format) and then configure to sync to your iPod.
    For now let's just focus on getting it into iTunes as well as making sure we are on the same page here.
    B-rock

  • Using single SMB share with multiple Hyper-V clusters

    Hello,
    I'm trying to find out if I can use a single SMB share with multiple Hyper-V Clusters. Looking at:
    How to Assign SMB 3.0 File Shares to Hyper-V Hosts and Clusters in VMM
    I think it's possible. Since the File Server is going to handle the file locking it shouldn't be a problem.
    Has anyone tried that?
    Thank you in advance!

    Hello,
    I'm not sure that's possible, I get this from this statement:"Assign the share—Assign
    the share to a virtual machine host or cluster."
    Even if it worked I wouldn't do that. Why don't  you just create multiple shares?

Maybe you are looking for

  • Firefox almost crashes when saving the first picture.

    Every time I load up firefox or restart it, the first picture I try and save (doesn't matter where, what type or where from) firefox freezes up and if I click anywhere it does the not responding status until the picture is downloaded then it continue

  • How do i transfer game data to a new computer?

    I am moving in to a new laptop and want to transfer everything to it.  I can move music and videos, photos and apps.  I want to keep my iPod setup the same way (preferences and folders) as well as keep my saved game data.  I was able to download past

  • Authentication Failed Error

    Hello, I have a button on my page, which when clicked calls a procedure in the backend. The procedure actually submits a request to concurrent program manager and returns a url in a out parameter. The url is actually the path to a letter in pdf forma

  • Data logging optimization function in LabVIEW and SignalExpress

    Hello, everyone!  I and a colleague have assembled the attached VI, which is used to control a plant growth chamber, and I could use some advice.  I would like to add data logging capabilities, ideally to note (1) environmental conditions, such as te

  • Web site providers that work w/ iWeb

    Hey, does anybody know what are some good domain providers that work with iWeb, and are somewhat good with them? I don't want to use a .mac right now, and i'm looking into web hosting companies, and im not familiar w/ html. Thats why i want to use iW