Find email address of external user that accepted invitation

Invited external user created a Microsoft account because organizational email didn't work.  User forgot email address-password.  It is possable to see this email address somewhere.  Invitation history shows organizational email. 
My gut reaction is to delete their account, reinvite and tell them to create a new Microsoft account.

Hi,
According to your description, you want to reset password for a user account.
What did you mean for "Microsoft Account"? Was it a Microsoft account like outlook.com/hotmail.com or domain.com?
If it was a Microsoft account like outlook.com or hotmail.com, the user can reset the password as the process of forgetting password.
If it was like domain.com, it could be achieved using “Active Directory Users and Computers” in DC server.
Refer:
Feel free to reply if there are still any questions.
Best regards
Wendy Li
TechNet Community Support

Similar Messages

  • Is there a way to find the email address of the user's from SCCM database.

    Hi All,
    I am using SCCM 2012 R2 and trying to find a query/report that can help in finding the email address of the user the machine is assigned to (Primary device). And if that is a machine which is being shared between different user, I need to gather the same
    information or the user who last logged on that machine.
    Can you please help?
    Thanks
    Manish

    My opinion: I think you'll need to define what, to you, means "primary user".  a primary user relationship can be defined manually by you one by one in the console, automatically by usage, imported via script, or the end user (if they know
    how and you've allowed this in settings) can indicate a machine is a primary machine for themselves.
    How is primary user relationship set, in your environment?  Depending upon how that relationship is determined in your environment, then you can track for that particular machine how or why the relationship you expect to be there, isn't the relationship
    the database acknowledges.
    Standardize. Simplify. Automate.

  • I have read the help info, but I can't find how to change the default email address, to the one that is my adobe I'd?

    I have read the help info, but I can't find how to change the default email address, to the one that is my adobe I'd?

    Adobe Reader for iOS doesn't set the default email address when you email a PDF.
    It's found in the Settings app:
    Settings > Mail, Contacts, Calendars > Mail > Default Account

  • Apparently when I send to a Group of Contacts they can all see every email address and this is not acceptable how do I avoid that

    I need to send to a group of about 50 parents. Their addresses are held in a Group of Contacts. I highlight the group name to distribute a message to all of them and what I am being told is that they can then all see every email address. This is not acceptable as many do not want their email address being made public in this way. Surely this should not happen or at least there should be a way to avoid it.

    re: and I quote "they can then all see every email address. This is not acceptable "
    I showed you the basic method of sending a group as Bcc - which is what you initially asked for.
    As you now specify that not only do you want to know how to use Bcc but every email needs to be personalised - not just distributing a message to all of them, then I would agree with Matt and advise you use Mail Merge. This creates separate emails - not a bulk email to several recipients, so using a TO field will only send to that person - other people will not see other email addresses.
    Matt has offered the link.
    Here is some more info regarding Mail Merge.
    '''How to install Add-ons:'''
    download the .xpi file to your computer eg: desktop or downloads folder.
    In Thunderbird
    'Tools' > 'Add-ons' OR 'Menu Icon' > 'Add-ons'
    click on the gear wheel icon and select 'Install addon from file'
    see first image below as aid.
    locate the file you downloaded and click on 'Open'
    You may need to restart Thunderbird.
    Mail Merge will appear in the list.
    see second image below.
    '''How to set up a Template emails for Mail Merge:'''
    Create a Template email, which contains the 'personalised' sections.
    see example - third image below.
    I set the Subject as 'Mail Merge' so it is easily identifiable.
    Save it as a Template email.
    It will get stored in the 'Templates' folder. If you do not see a Templates folder, this is auto created when you create the first email and store as template.
    '''When you want to use Mail Merge.'''
    Select the Template folder.
    Select the 'Mail Merge' template
    either double click on the email in the list or right click on email and select 'Edit as new message'
    you can then change the Subject and compose or edit the message - but do not change the sections in the curly brackets - the point of saving this as a template saves you from typing it each time.
    'File ' > 'Mail Merge' (see third image)
    This will open a new small window
    see the fourth image below.
    I would suggest you use 'Send Later' option . this will put all the emails in your Outbox, but it does allow you to check the email is correct - or do spot checks. Then you can choose to send them all in one go.
    Right click on 'Outbox' folder and select 'Send unsent messages'.
    Hope this info helps you.
    As you are new to Thunderbird, you may or maynot have managed to locate all your toolbars.
    The fifth image shows you how to enable all toolbars to make life much easier.
    In addition some very useful info on maintaining a healthy Thunderbird and all about compacting- what it does and why it is important.
    * http://kb.mozillazine.org/Keep_it_working_-_Thunderbird
    * http://kb.mozillazine.org/Compacting_folders

  • Email address as a User in ADF application (part 2)

    It is fairly normal these days to sign into into public-facing applications using an email address and password. However, people change email address periodically so you really want some sort of long-lived "users" entity of which the email address is an attribute that can be updated over time.
    Of course we code all the work manually and log in against a database table (with an alternate/unique key of user ID), but really we should try to use the tools already provided and do this in a JEE standard way. Then if you have some sort of unique user ID as the principal then you get the benefit, for example, of using automatically populated audit columns in ADF BC.
    This [recent discussion|http://forums.oracle.com/forums/thread.jspa?messageID=3440934] talked about a similar requirement but in that instance the poster was happy to have the email address as the unique identifier.
    I think there are two ways to go about this:
    1) you have a unique ID as principal but the login module has to do a lookup from email address to ID before the authentication call can be made (e.g. out to LDAP)
    2) you have the email address as the principal (there may be problems with the length/characters for some backend authentication providers) and then an additional attribute for the unique ID (which is subsequently used for auditing)
    My initial feeling is that the first method ought to be the best compromise, but am I missing anything that is available "out of the box" as I think this requirement will become increasingly common?
    -Simon

    Hi Simon,
    You can always add additional principals to the Subject during login,but keep the primay principal as the first one in the set.
    If you write your own login module, you can fetch the user-id from the database/directory server based on
    the email and add it to the Subject as the primary principal and then add the email as subsequent pruncipal; i.e.
    if the System requires ID(PK) as the primary principal, then add ID as the Subject's first Principal and later add the email,and vice versa.
    You can use both at any moment in the execution cycle; howewver, when you call
      ejbContext.getCallerPrincipal() or ServletRequest.getCallerPrincipal()   you would only get the primary principal.
    To retrieve all the principals a subject is carrying, you need to try
        Set<Principal> principals= Subject.getSubject(AccessController.getContext()).getPrincipals();    and then iterate over the set to find the appropriate principal that you want.
    Writing LoginModule is not so difficult as some put it; some time back Frank Nimphius has written a how-to article on this topic
    which you can easily find by little googling.
    I hope this helps,
    Regards,
    Samba

  • Do I need Open Directory for multiple email addresses for Calendar users?

    Hey all,
    I have a single mac mini which I use simply as a calendar server for +/- 20 users. One day I might use Profile Manager to manage their iOS devices too. On the initial installation, we enabled Open Directory, although I'm not sure that it's required, and we have no plans re using it to manage network logins etc aside from existing calendaring.
    I'm working through a migration from a Lion Server.app install to Mavericks, and due to some data corruption issues, we'll probably just rebuild the server and reimport the users calendars.
    On my existing Lion Server installation, I can still use workgroup manager to assign multiple email addresses to calendar users, so that when a user invites another user to a calendar event using any of their email addresses (we have several variations), the invitation still gets pushed to the correct calendar user.
    On Mavericks, without installing Open Directory, it seems I can't do this (I've downloaded Workgroup Manager for Mavericks, but it obviously can't connect to a local open directory). If Open Directory is optional, I'd rather not install it, to avoid overhead and complexity, but I still need a way to manage these multiple email addresses (aliases doesn't cut it).
    Any ideas / suggestions?
    Thanks,
    D

    For Calendar server to send actual email invitations to an attendee, two things must happen:
    First, you need to configure Server.app > Calendar > Enable invitations by email.  Enabling that will bring up a wizard dialog that will step you through the IMAP and SMTP account settings.  The default values in that wizard will tell Calendar server to use the local Mail server (which you then would have to configure to use the appropriate SMTP relay, etc.).  Or you can change the wizard settings to refer to an external IMAP and SMTP server.  It is wise to use a dedicated IMAP account for Calendar server's use -- don't go using someone's personal IMAP account because there might be some "undesirable interactions", let's say.  If you need help configuring this for, say, a Gmail account, I can help with that.
    Second, the email address for the attendee must *not* be known to Calendar server, i.e. it should *not* be in the Directory.  As you probably found out, if Calendar server sees that the attendee has an email address that is in the Directory, the attendee is considered to be "local" and the invitation will be delivered directly to the attendee's calendar client.  If you simply leave those other email variations out of the Directory, Calendar server will consider that attendee "remote" and will send an actual email with a special attachment that calendar clients can understand. 
    Hope that helps.

  • Send EMail to Multiple external users

    Hi
    Is there a way to send EMails to multiple external users dynamically. I can see that we can send EMails to only static Email addresses for multiple external users.
    Thanks
    Vidyadhar

    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10057e20-2ca2-2d10-1b91-a1b9a8c8e634

  • I have one out of five email address's with coxmail that opens with a blank inbox but other browsers show the content of the same inbox

    Question
    I have one out of five email address's with coxmail that opens with a blank inbox. Other browsers like opera or IE show the content of the same inbox. I've contacted cox but they tell me the problem is on my computer. I've used three different anti virus/malware scanners to eliminate all the bugs they can find. I need a firefox guru with suggestions. Thanks, Charles

    You can undo your permission changes. Probably the most relevant one is cookies. Try one or both of these methods:
    (1) Page Info > Permissions tab
    While viewing a page on the site:
    * right-click and choose View Page Info > Permissions
    * Alt+t (open the classic Tools menu) > Page Info > Permissions
    (2) about:permissions
    In a new tab, type or paste '''about:permissions''' and press Enter. Allow a few moments for the list on the left to populate, as this information needs to be extracted from a database.
    Then type or paste ''rcn''' in the search box above the list to filter it to the most relevant domains. When you highlight a domain, you can adjust its permissions in the right pane.
    Any luck?

  • How to set "Allow external users who accept sharing invitations and sign in as authenticated users" programmatically?

    Sharepoint 2013 online/office 365.
    I am creating site collection programmatically using sharepoint Auto hosted app.
    Now i want to set "Allow external users who accept sharing invitations and sign in as authenticated users" programmatically after site collection creation.
    Is it possible through code? If yes please let me know how to do it?
    Najitha Sidhik

    For SharePoint 2013 Online, check below links:
    http://office.microsoft.com/en-us/office365-sharepoint-online-small-business-help/manage-sharing-with-external-users-HA102849862.aspx
    http://office.microsoft.com/en-us/office365-sharepoint-online-enterprise-help/manage-external-sharing-for-your-sharepoint-online-environment-HA102849864.aspx
    https://www.nothingbutsharepoint.com/sites/eusp/Pages/SharePoint-Online-2013-Sharing-with-External-Users.aspx
    http://blogs.office.com/2013/11/21/sharepoint-online-improves-external-sharing/
    Please ensure that you mark a question as Answered once you receive a satisfactory response.

  • HT4623 i installed IOS 7 on iPhone 4 and it is asking for a rescue email address but it won't accept anything so i can't complete the install any help out there?

    Cant get ios7 to accept rescue email on install security

    If you have an Apple ID and iCloud account, use the iCloud email address and see if that works.

  • How do I find email address for my M1212nf MPF laser jet printer

    How do I find email address for my M1212nf MPF laser jet printer

    Hi,
    Same post:
      http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/M1212nf-MPF-laser-jet-printer-finding-...
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How do you delete an email address from your iPhone that's not in your contacts?

    How do you delete an email address from your iPhone that's not in your contacts?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • I would like to change my apple id to one of my alternate email addresses so therefore i would have to delete the alternate email address as an alternate email address and it says that if i do that it will permanently be deleted from my account

    I would like to change my apple id to one of my alternate email addresses so therefore i would have to delete the alternate email address as an alternate email address and it says that if i do that it will permanently be deleted from my account so could i use that email address as my primary one?

    The following article may help you:
         http://www.ehow.com/how_8362857_rename-mailbox-apple-mail.html

  • Hello. How can I reset my iCloud because i forgot the password to my iCloud and I'm not using the email address i used in that account. What should I do?

    Hello. How can I reset my iCloud because i forgot the password to my iCloud and I'm not using the email address i used in that account. What should I do?

    Try this: https://iforgot.apple.com/password/verify/appleid
    Hopefully you have already set up your security questions.

  • A have new problem that has appeared in my Mac Mail.  When I type a frequently used email into the 'To: line' it populates the correct name but with 8 different email addresses not associated with that name.

    A have new problem that has appeared in my Mac Mail.  When I type a frequently used email into the 'To: line' it populates the correct name but with 8 different email addresses not associated with that name.  I have gone to the window pop-down to 'previous recipients' and deleted that addressee as well as all the email addresses it is assigning to that name.  I have also deleted the account entirely from my address book.  I have have run repair permissions and also full defrag in iDefrag.  Still the problem persists.  Any suggestions?

    Hello CarolineLongEaton,
    I noticed you posted this problem quite a while ago and wondered if you managed to have it fixed in an alternative way then posting here. It is too bad no one has posted a solution here. I have a similar problem and if you have had yours solved since this occurance how you accomplished it may help me with mine. I am interested to know what you have done about yours.
    If you are interested in comparing the problems to see if your solution (if you have found one) might help me also then here is the link to the discussion.
    https://discussions.apple.com/thread/6116927
    If your problem has not been solved then I will comment here again if/when my issue is resolved as it may help you too. My hope here is that we may help each other. To quote you "all ideas gratefuly recieved". I hope your problem was resolved, ernestly for your sake and selfishly for mine also. I wish you and yours a great day!
    dofromon

Maybe you are looking for

  • Attachments-Confused about mail downloads location

    It seems that my attachments are located at: steve/library/mail/[email protected]@mail.xxx.com/INBOX.imapmbox/Attachments/<m anyindividualfolders> They only move to steve/library/mail downloads if I press the Quick Look button. If I press the Save bu

  • Is it possible to post the Excise invoice previous month date.

    Dear All, We want to post a excise invoice with previous month date. Is that possible? We have created a billing document (VF01) last month (October) and not created Excise Invoice (J1IIN). Now our finance people requirement is to create the excise i

  • Our company provided a bunch of us with Blackberry Curve...

    Our company provided a bunch of us with Blackberry Curves... my unit was the only one without video capture capabilities. Is there an app I can download to add this?

  • Opening eps files  in illustrator cs3, created with GMT

    I have been using previous versions of illustrator (10.0, 11.0, 12.0) to edit my eps files created with GMT (Generic Mapping Tools) with no problem. I have just recently installed CS3. When I open these GMT generated eps files the colors are changed

  • System Preferences Do Not Stick

    System Preferences for adding menu icons do not stick. Date & Time/Clock: Show the date and time Displays: Show Displays in menu bar International/Input menu: Show input menu in menu bar (even when there, it didn't actually work) Sound: Show volume i