Two Apple ID with the same email address.

Hello,
I have 2 Apple ID's using the same email address.
When I sign in with my Apple ID in the Apple Support Communities web he request me to "Choose your Apple Support Communities username.", So I write a user name and click continue - and this error message is shown: "account utilizing this email address already exists. Only one account per email address is allowed on Apple Support Communities."
I know which Apple ID user using this email address but I can't change to different email address (this option in "Edit Profile" is impossible).
What I can do?!

This advice is not proper for the issue at hand.
Your advise lets you reset the Apple ID not verify your current ID.
In either case the recommended link does not work at this time - nor gives any response as to why you do not recieve the email they promise!!

Similar Messages

  • How do you get FaceTime to work between two Mac's with the same email address? Thanks, Mike

    How do you get FaceTime to work between two Mac's with the same email address?

    I would like to know the same thing.  How does facetime work between a MacBook Pro and an I Pad that run off the same email address/mac id

  • Can 2 people set up apple id with the same email address

    My husband and I share the same email address can we set up our apple ids with the same email and different passwords?

    No. You can share the same Apple ID for iTunes content, but for everything else...FaceTime, iMessage, iCloud, etc., you really need separate Apple ID's & these iD's must be verifiable email addresses. If you don't set things up that way, you'll have a mess on your hands.

  • I created my Apple ID in Ireland, but would now like to switch to a German Apple ID, keeping the same email address. How do I delete my old Irish Apple ID, so I can create a new German one with the same email?

    I created my Apple ID in Ireland, but would now like to switch to a German Apple ID, keeping the same email address. How do I delete my old Irish Apple ID, so I can create a new German one with the same email?

    Welcome to the Apple Community.
    Click on your account name in the top right corner of the iTunes store in the iTunes application on your computer, enter your password and click the "view account" button. Navigate to the Apple ID summary where you have the option to "change country or region".
    In order to change your location, you will need a credit card registered to an address in the location you are trying to change to.
    You cannot change your location if you have credit on your account, if you are unable to spend your credit and leave a balance of zero, contact Apple, which you can do through iTunes Store Support.

  • Can two ipods with the same email address face time independantly?

    Can two ipods with the same email address face time independantly?

    Hey Bumblebee, To each other, no-- would be like trying to call yourself on the same phone. To different persons on other devices??? Not sure you'll have to try, I'm guessing if both are online you may well dial up on both, (once had the same address on the my computer and iPod, both would ring when called, this stopped when I changed the iPod's address). If you change one of the iPod's e-mail address you should be fine. You'll have to do a little experimenting. Hope this helps, Good luck. Cheers.

  • Somehow created two apple ids on the same email

    Hi there,
    I recently gave my other half my old iPad, however she went to sign into her apple id/ iCloud account and in the process somehow changed my iCloud settings such as my password.
    I tried signing in today and was prompted to enter the new password, which I had, however it seems to have created a brand new apple id, using the same email address as before. I'm unable to access my app purchases and the extra space I bought on the iCloud.
    Some (metaphorical) wires seemed to have been crossed somewhere, I was just wondering if someone could help me out with this.

    UPDATE:
    I've found the email address my other half has changed my apple id to. However when I try to access the icloud it asks me to set it up. All the files I had such as photos and contacts appear to have disappeared, so has the extra storage.
    I've spoken to someone at Apple and they said they can still seem the extra content and all the files, however I'm still unable to sign into the account with the amended email address.

  • My husband and I share the same email address. Is there someway to have different AppleIDs with the same email address?

    My husband and I share the same email address at home. Is there some way creating an Apple ID using the same email address? We have multiple apple devices at home (2x iphone4, imac, mini ipad, and notebook) and want our emails from that one address to come through on the different devices.

    No, you cannot have the same primary email address used for two separate Apple IDs.
    However, you can sign into the same email address on your separate devices for the purposes of receiving mail.  Go to Settings > Mail, Contacts & Calendars > Add Account.
    Apple IDs are for using Apple services, like the App Store, iTunes, etc.
    Email addresses (while used as the NAME of an Apple ID), are separate entities.

  • Do you need to use an email as an apple ID?    We have a family email which is currently the apple ID so I can keep track of purchases but i have 2 iPhones and 2 itouches. Can all 4 devices have different apple ID under the same email address. Also for th

    Do you need to use an email as an apple ID?    We have a family email which is currently the apple ID so I can keep track of purchases but i have 2 iPhones and 2 itouches. Can all 4 devices have different apple ID under the same email address. Also I wanted to know because for the game center we wanted to keep track of each individual not just o e account.  DID I MAKE SENSE

    Figured it out. Thanks.

  • Can I have more than 1 susbcriber with the same email address?

    I have developed a BC secure zone in Muse as a members only area. This works fine. I have subscribed all the members and all is OK except that I find if I try to subscribe 2 members with the same email address (e.g. a married couple with a shared email address), the first subscription is overwritten by the second. Is there a solution or do I just live with it?

    Hi Neil,
    This is the default behavior of the system because email is the unique identifier. You can't have more than 1 subscriber with the same email address.
    Regards,
    Aish

  • I have changed settings on my email account with my provider, but in order to activate the address they instructed me to delete my account and add a new account with the same email address. Will this delete my all my email history? Any advise please?

    I have an OS X 10.6.8 and have had problems with my mail. I have changed my account settings with my mail provider, but they suggest I now delete my account and add a new account with the same email address. Will this delete my email history? Can anyone please advise?

    I have the same problem as the emails go to my iCloud account that I cannot access!!! I cannot answer the security questions as someone else must have set up my iCloud account. Nothing seems to work. It would be great if someone has some ideas as what can be done to recover the situation?

  • Send emails from a csv file (grouping records with the same email addresses)

    Writing a script to send emails from a csv which contains record details and email addresses using the Send-Mailmessage cmdlet.
    That part is no trouble, however, the csv file contain records that can have the same email address.
    Is there a way/method I could send the records with the same email address once instead of sending individual email messages?
    Thanks
    Data in the csv file
    Record number, description, email
    1234, Test 1, [email protected]
    5678, Test 2, [email protected]
    1245, Test 3, [email protected]
    4578, Test 4, [email protected]
    $data = Import-csv c:\records.csv
    ForEach($address in $data)
    Send-mailmessage -To $address.emails -from [email protected] -subject "List of records" -Body $data -SmtpServer 192.168.1.1

    The following code does what you are looking for:
    $data = Import-csv c:\records.csv$mx = "192.168.1.1"
    $subject = "List of records"
    $from = "[email protected]"
    $data| Group-Object email|Select-Object Name, @{n='msg'; e={$_.Group| Select-Object -Property "record number", description|ConvertTo-Csv -notypeinformation|Out-String}}|
    ForEach-Object {Send-MailMessage -to $_.Name -Body $_.msg -SmtpServer $mx -Subject $subject -From $from}
    I also recommend no forcing everything into one line.  "One-liner" means "one pipeline" not putting all code on one unreadable line.
    Your code should look like this:
    $data|
    Group-Object email|
    Select-Object Name, @{
    n='msg'; e={
    $_.Group| Select-Object -Property "record number", description|
    ConvertTo-Csv -notypeinformation|Out-String
    }|
    ForEach-Object {
    Send-MailMessage -to $_.Name -Body $_.msg -SmtpServer $mx -Subject $subject -From $from
    Now we can see the code and see that you are still unnecessarily converting back and forth.
    To get the group look at how I did it.
    $body=$_.Group | Format-Table |Out-String
    Isn't that much easier?
    Once you master the pipeline these things will become second nature.  In PowerShell it is not necessary to write lots of code most of the time.
    ¯\_(ツ)_/¯

  • I want to use I face between two ipads with the same email address

    I have two ipads and special circumstances dictate using the same email address for both is this possible somehow?

    Also, See here for,
    Using FaceTime
    http://support.apple.com/kb/ht4319

  • How do I create two iTunes accounts under the same email address?

    I've got my account duplicated -and charged for apps I already own- by using my email address as login instead of apple ID, but I've been told it's my fault so…
    I'm trying to figure out
    *How do I do to create two iTunes accounts under the same email and having different IDs?*
    I mean, two accounts with different purchase history. It doesn't matter if billing address, or credit card are the same (or different) because none of them flag apps as "purchased"
    I tried today from iTunes, but it tells me the email is taken.
    Do you know any way a user can do it from our end? (website, iTunes, iPhone)
    If you've got charged by apps twice, please don't say it here. I don't want my post being deleted again. Thanks.

    Beavis2084:
    Expired .mac accounts HAVE NO EMAIL. You own the id (which iTunes requests to be spelled in form of an email)
    Also, FREE .mac accounts have no email either.
    What you see in the screenshots is what I'm saying:
    There's been a change in the way iTunes wants you to login. The iTunes reps see at their end what you see at the top of the window, which probably is the "migration" of the new login: Old login system, using ID (in form of email for iTunes)
    BELOW you clearly see where says "ID" and both have the email as login.
    (again, that .mac email doesn't exist and NEVER DID)
    That's the NEW login: your EMAIL.
    I'm sorry I didn't explain it better the first time. I wrote about this so many times to iTunes support reps to prevent them to "read" what their system says that I gave it for settled. (not to mention that my first post was removed because "it lacks of interest for others"
    I own an apple ID, given away with the purchase of a new computer (nothing small by the way) and when that happens (and never subscribe for a paid membership), you use ANOTHER email to be related to your account.
    Now that AGAIN apple asks you for using your EMAIL (non-apple in our case) instead of your ID (which you can't use or you will never get a notification again!) the system believes there are two accounts.
    It's like your credit card bank changing the address for sending the payments. You are STILL paying, but getting a higher rate because their CHANGED the address and the check never arrives.
    In this case, signing in with a different string, makes the system believe there are two accounts. And that probably is under the policy which probably states purchases are not charged twice for SAME ID, and SAME iPhone… and you used a different ID, so it must be fair (sarcasm). Who told you to do so? Bad boy!

  • Is it possible to use FaceTime With my two IPad With the same email address? I Will Google to china next month And i would like to communicate With my kids.

    IS it possible to use FaceTime With my two IPad That has the same address? I Will Go to China soon And i would like to discuss With my kids from there i.e. One IPad in China And one in Montréal.

    No, this is not possible.  It would be like dialing your own phone number.  You must verify an additional new email address for your second iPad.  See the following link which will tell you how to do this.  You will need to add this new address to Facetime app in one of your iPads.
    http://support.apple.com/kb/HE68

  • Two Contacts with the Same Email Address

    We would need to have two Mail Contacts created for one external email address. In our case of a basic school we would need to share parent's email addresses for all teachers - Office 365 users. It is not uncommon that a school is attended by siblings -
    one is older, one is younger. We tried to create an Exchange directory containing parent's email addressed - a contact is named based on a pupil's name, but in case a contact was created for a younger sibling and we try to create a contact for an older sibling,
    we receive an error:
    The proxy address "SMTP:[email protected]" is already being used by the proxy addresses or LegacyExchangeDN of "Younger Sibling". Please choose another proxy address.
    How to overcome this and have the same address for both siblings in All Contacts directory. 
     

    Hi,
    We can’t create two contacts with the same external email address in Exchange. Personal suggestion, we can consider the following settings as a workaround:
    Option1:
    We can name the contact as “SMTP:[email protected]”. And only use one contact for two students.
    Option2:
    a. Create the contact 1 for pupil 1 with “SMTP:[email protected]”, external email address:
    [email protected]
    b. For pupil 2, we can create the contact 2 as “SMTP:[email protected]” with a new created email address
    [email protected] (please make sure the auto-forward feature is supported in this selected mail server).
    c. Configure the auto-forward for [email protected] to [email protected]
    Then we the teacher send messages to contact 2, the message can be send to
    [email protected] and forward to [email protected]
    Additionally, why not using the same contact for two pupils, is there any hard needs that we have to match one contact to one pupil?
    Regards,
    Winnie Liang
    TechNet Community Support

Maybe you are looking for

  • How do I use AO update in the Route signal.vi

    Hi support, My goal is to create a waveform (to buffer it) and output it using the analog card (PCI-6713) N times and with the frequency F. Apperanlty this is done using a (actually 2) digital counter(s) on the PCI-6602 card. This is done using route

  • Issues with a preferences in acrobat 9 pro

    Hi. I'll try to explain my problem. 1. I'm not English. I'm Spanish. English isn't my language . 2. I use Acrobat 9 pro with a Microsoft xp professional x64. I use for a create pdf of Autocad 2009. And when I try to changes the preference to convert

  • Can't print now with Leopard w/iMac but can with MacBook&PowerBook

    This is my 3rd upgrade (iMac) to Leopard. First two were on MacBook & PowerBook and printing on Epson C88 via AEBS works both remote and via USB.. Now iMac does not print to C88 attached to AEBS nor to Epson CX4200 attached by USB to iMac. Tried down

  • Using iweb for school website

    Hi This may have been answered before but I cant find it in the discussion. I want to set up a website for a very small school (24 students)using iweb. Do I have to use Apple for the ISP and if so is it the same rate as for a private individual? Anyo

  • Unable to delegate Remote Operation for User Context only.

    Hello, I use ZCM 11.2.3. I want to delegate the right the remote control desktops only from a user side (this is because all the worksations are in the same folder and the user must have the right to remote control only users from its department). I