Unable to set email address for user MySite in SharePoint2013

Hi,
I've a SharePoint Ent farm with a MySite Host Site Collection created. Under that, I've got some users having their own MySites.
Now, the problem is, I'm unable to get the link for editing the user's email address after logging in to the MySite under the credentials of the particular user. 
Can anybody please suggest. Is this field at all editable?
Thanks,
Arnab

Hi John,
Elaborating...
I've created a MySite Host Site Collection programmatically, say, http://test.mysitehost.local/.
Under the same I'm creating user mysites (through SharePoint2013 Object model), say, http://test.mysitehost.local/personal/user1. (for my case "personal" is the managed path). While creating the user mysites, I'm not passing any value for the email
address of the user. 
Now, my question is, can I set the email address of the user from MS native portal or through powershell?
Please note, I'm using SharePoint2013 Server.
Thanks in advance,
Arnab

Similar Messages

  • How to set email address for user my site?

    Hi All,
    I am creating user my site using profile.CreatePersonalSite(); How can I set the email address of the personal site?
    Thanks in advanced.
    Moohak

    Hi,
    Userprofiles.CreatePersonalSite() donsn't take any argument by which you can set user's email address. So, if you want to set user's email then update the profile before creating profile object.

  • IMovie and iPhoto App Store update has alternate email address for user name. how do I fix this??

    The most recent updates to iPhoto and iMovie, that are in the App Store updates, has my alternate email address for my user name.  I can't log into the update because I don't know the password.  I have changed my user name to reflect the correct email address, but it still prompts as the alternate email address.  Any ideas as how to fix??

    If you have forgotten your pass work go to here:
    https://iforgot.apple.com/password/verify/appleid
    Geoff.

  • Unable to verify email address for apple id set up

    I'm getting this response when trying ti set up an Apple Id. I was sent the email to verify the email address and then thisis what I get:
    Invalid URL
    The requested URL "/cgi-bin/verify.cgi?language=US-EN&key=ODJhYTFlMjA3OTY2MWM2MWM2NGUwNWQzM2ViOTU 4NGQ4NDMzZTA3ODhhMjE3ZGI5YmJiY2QyOTY0M2I0ZWQ3NWYzNGViYzMzY2NjNmUxZTQyYjhjYWI3MDF kNTRlZDAxOTBjZDA3NjM2ZjI3ZmNkZWEzMDVmNzE2ZjI1YjU5MzRmYzkzZTcxMTYzNWNlMWJlOWI5OGF jMjk1NmY4ZTZjMzZhNGYyYmNjODE4OWI1MjkzMzY4OWEwZjUxMDAzMzlmZGFjMDA2MzkzYjdjNWY0NjY wNzAwNjQ1ZTMxMzJmYjFhZjRiNDQxOThlNjlkMzEyZmZhODMyYjM0MWQ5YjQ2MQ==", is invalid.
    Reference #9.83ed54b8.1359560039.b64f39e

    The verification email is only valid for a limited time for security.
    Put in a request for another verification e-mail to be sent to you.
    Start here, change your country if necessary and go to manage your account

  • Incorrect email address for user name

    My wife bought her own ipad mini yesterday.,unfortunately the user name had an incorrect email address
    We have as yet been unable to change this
    We are able to use safari but unable to create email account or iCloud account therefore not able to purchase from App Store,when details are entered either wrong user account or password come up
    How can I reset this mistake.   Many thanks Den

    Go here to manage your Apple ID: https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/

  • Additional email address for user in mountain lion server

    I have a new installation of OS X Mountain Lion server (10.8.2) that I am wanting to deploy.  The problem that I am running into now is that there is no way that I have found to add a second email address. 
    I have multiple domains so, i need to have "[email protected]" and "[email protected]" for the same user.
    Has anyone seen a way around this?

    matneyc wrote:
    Wow - just after I answer back, I found a download for the Workgroup Manager at http://support.apple.com/kb/DL1567.  I probably need more sleep.
    Yes, it is just Server Admin that is no more, Workgroup Manager is still at the moment available.
    For your information another less pleasant means would be to directly modify the Open Directory record using either the command line or the Directory Editor launched from Open Directory Utility which in turn is launched from the Login Options "Join..." button.

  • Unable to set IP address for VM creation using createVmBasedOnTemplate

    Hi,
    I'm trying to create VM using LifeCycleService - createVmBasedOnTemplate api
    The VM gets created and i m able to power on
    The ethernet cards are inactive when i checked thorugh console and IP address is not set
    So i'm unable to login to the VM using the IP address
    Below is the code snippet for reference
    // CreateLifeCycleServiceClient lifeCycleServiceClient
    LifecycleService.TemplateVmConfig templateVMConfig = new VirtualMachineController.LifecycleService.TemplateVmConfig();
    templateVMConfig.serverPoolName = "server pool name";
    templateVMConfig.templateName = "mytemplate";
    templateVMConfig.consolePassword = "password1";
    templateVMConfig.guestLogin = "guestuser1";
    templateVMConfig.guestLoginPassword = "password1";
    templateVMConfig.vmName = "rhel5_sample";
    templateVMConfig.haEnable = false;
    LifecycleService.NICConfig nic = new VirtualMachineController.LifecycleService.NICConfig();
    nic.name = "VIF0";
    nic.bridge = "xenbr0";
    nic.ipAddress = "10.10.10.227";
    nic.subnetMask = "255.255.255.128";
    nic.defaultGateway = "10.10.10.129";
    nic.domainName = "localhost.localdomain";
    nic.hostName = "rhel5_sample";
    nic.macAddress = "00:16:3E:09:56:C2";
    nic.dnsServer = "";
    nic.frontEndName = "rhel5_sample";
    nic.qosEnabled = true;
    nic.rateLimit = 100;
    LifecycleService.NetworkConfType oNetworkConfType = new LifecycleService.NetworkConfType();
    oNetworkConfType.type = "Static";
    nic.networkConfType = oNetworkConfType;
    LifecycleService.NetworkType oNetworkType = new VirtualMachineController.LifecycleService.NetworkType();
    oNetworkType.networkType = "ioemu";
    nic.networkType = oNetworkType;
    //nic.set
    LifecycleService.NICConfig\[] vifs = new VirtualMachineController.LifecycleService.NICConfig[] { nic };
    templateVMConfig.vif = vifs;
    vm = lifeCycleServiceClient.createVmBasedOnTemplate(templateVMConfig);
    Please help
    Edited by: user12180212 on Nov 6, 2009 5:16 AM
    Edited by: user12180212 on Nov 6, 2009 5:17 AM
    Edited by: user12180212 on Nov 6, 2009 5:18 AM

    Hi,
    I checked out the log file but there were no exceptions
    Am i missing something to set the IpAddress ?
    Log - for vm creation
    "2009-11-09 07:15:10" INFO=> new_async_task_ext: success. ->cp_vm ('/OVS/seed_pool/RHEL5_1C1G_149', '/OVS/running_pool/575_SampleVM3') => 875AD9EC47EC43E599CC7482ACB861E9
    "2009-11-09 07:15:10" INFO=> cp_vm: '/OVS/seed_pool/RHEL5_1C1G_149' -> '/OVS/running_pool/575_SampleVM3'
    "2009-11-09 07:15:11" INFO=> directcall_in_asyncenv: success. utl_get_vm_size ('/OVS/seed_pool/RHEL5_1C1G_149', '875AD9EC47EC43E599CC7482ACB861E9') => success:size=10241
    "2009-11-09 07:15:11" INFO=> directcall_in_asyncenv: success. utl_get_storage_repos ('875AD9EC47EC43E599CC7482ACB861E9',) => success:repos=/OVS;free_space=301273
    "2009-11-09 07:15:11" INFO=> utl_cp_vm: vm('/OVS/seed_pool/RHEL5_1C1G_149') -> vm('/OVS/running_pool/575_SampleVM3') start...
    "2009-11-09 07:19:25" INFO=> xen_correct_qos_cfg: vm_cfg('/OVS/running_pool/575_SampleVM3/vm.cfg')=>success.
    "2009-11-09 07:19:25" INFO=> xen_clear_vif_mac: success. vm('/OVS/running_pool/575_SampleVM3')
    "2009-11-09 07:19:25" INFO=> xen_correct_qos_cfg: vm_cfg('/OVS/running_pool/575_SampleVM3/vm.cfg')=>success.
    "2009-11-09 07:19:25" INFO=> xen_remove_shared_disk: success. vm('/OVS/running_pool/575_SampleVM3').
    "2009-11-09 07:19:25" INFO=> regenuln_uuid: /OVS/running_pool/575_SampleVM3/vm.cfg.
    "2009-11-09 07:19:25" DEBUG=> regenuln_uuid: System.img.
    "2009-11-09 07:19:26" DEBUG=> regenuln_uuid: mount -o loop System.img /tmp/tmpJ8Ag17ovs_mount_point failed.
    "2009-11-09 07:19:26" INFO=> xen_update_uuid: success. vm('/OVS/running_pool/575_SampleVM3/vm.cfg') uuid=65104130-1e5e-18cf-163a-460b853e0c85
    "2009-11-09 07:19:26" INFO=> utl_cp_vm: vm (/OVS/running_pool/575_SampleVM3) created!
    "2009-11-09 07:19:26" INFO=> directcall_in_asyncenv: success. utl_cp_vm ('/OVS/seed_pool/RHEL5_1C1G_149', '/OVS/running_pool/575_SampleVM3', '875AD9EC47EC43E599CC7482ACB861E9') => success:size=10241
    "2009-11-09 07:19:26" INFO=> cp_vm: '/OVS/seed_pool/RHEL5_1C1G_149' -> '/OVS/running_pool/575_SampleVM3' => success:size=10241
    "2009-11-09 07:19:26" INFO=> directcall_in_asyncenv: success. cp_vm ('/OVS/seed_pool/RHEL5_1C1G_149', '/OVS/running_pool/575_SampleVM3', '875AD9EC47EC43E599CC7482ACB861E9') => success:size=10241
    "2009-11-09 07:20:12" INFO=> xen_correct_qos_cfg: vm_cfg('/OVS/running_pool/575_SampleVM3/vm.cfg')=>success.
    "2009-11-09 07:20:12" INFO=> xen_set_vifs: success. vm('/OVS/running_pool/575_SampleVM3') set vif_cfg=00:16:3E:09:56:C2,xenbr0,ioemu, mode=setall, scope=cfg
    "2009-11-09 07:20:12" INFO=> set_vm_vifs: vm('/OVS/running_pool/575_SampleVM3') vif_cfg=00:16:3E:09:56:C2,xenbr0,ioemu scope=cfg => rs=success
    "2009-11-09 07:20:12" INFO=> xen_set_vm_vnc_password: success. vm_path('/OVS/running_pool/575_SampleVM3')
    "2009-11-09 07:20:12" INFO=> set_vm_vnc_password: success. vm_path('/OVS/running_pool/575_SampleVM3') => success
    "2009-11-09 07:20:12" INFO=> set_vm_policy: vm('/OVS/running_pool/575_SampleVM3') policy=[] append=False=> success.
    Log when VM is  powered on
    "2009-11-09 07:34:21" INFO=> xen_correct_qos_cfg: vm_cfg('/OVS/running_pool/575_SampleVM3/vm.cfg')=>success.
    "2009-11-09 07:34:21" INFO=> xen_correct_cfg: success. vm('/OVS/running_pool/575_SampleVM3') => cfg_file('/OVS/running_pool/575_SampleVM3/vm.cfg')
    "2009-11-09 07:34:24" INFO=> xen_start_vm: success. vm('/OVS/running_pool/575_SampleVM3')
    "2009-11-09 07:34:24" INFO=> start_vm: vm('/OVS/running_pool/575_SampleVM3') on srv('10.237.214.149') => success
    "2009-11-09 07:34:24" INFO=> start_vm: success. vm('/OVS/running_pool/575_SampleVM3') ip=''

  • I created an Apple ID for my daughter with her own gmail address, but I want her Apple ID and primary email address to be an iCloud email address. How can I do this? I can't set up an icould email address for her without first creating an Apple ID?

    I have created an Apple ID for my daughter with her own gmail address as the primary email address, but I want her Apple ID and primary email address to be an iCloud email address. How can I do this? I can't set up an icould email address for her without first creating an Apple ID right?
    I'm not good with computers so please explain in simple way...:)
    I also wonder what the best way is to set up accounts for children in a family. I dont want them to be able to purchase apps etc through the parents accounts, also some things we like to share as a family and others we don't want to share. Is there any good. clear, simple explanation from Apple Support about these issues? Or best to go to Apple store and go to genius bar or one to one advise?
    thanks

    You can set up an iCloud account which makes the iCloud email address you choose the Apple ID and thus the login for it:
    https://discussions.apple.com/message/22283348#22283348
    though I have to say I think it's more sensible if the ID is another address, both for security reasons (so people don't know what the login is) and as a contact address from Apple if the account were to stop working and they needed to contact you. So personally I would to to System Preferences, enter the GMail address which is an ID, and then choose a nerw @icloud.com address.
    If she has her own iCloud account she will need either her own computer or her own user account on your Mac to be able to make use of it. You should note that under Apple's terms of use Apple IDs are only available to children of 13 and over.
    As to purchasing apps, this is nothing to do with iCloud: it's iTunes, and the login can be different. So you can all sign into the same iTunes account but have different iCloud accounts. Or she can have her own iTunes account if she is of suitable age (credit card needed for purchasing apps).
    If you have other children you should be aware that any one Mac or device can create only three iCloud accounts - this is tied to the serial number, not the user account, and once reached cannot be bypassed. You can of course sign into an iCloud account created on another device.

  • Can you set up a smart group to send to all email addresses for each card?

    So several of my contacts have more than one email address. I'd like to set up smart groups that send to all of the email addresses for each contact. Is there any way to do this? I've seen some topics that mention applescripts, but that required a bunch of prompts. I want to have smart groups that automatically include every email address. Any thoughts?
    Thanks!
    Dan

    A distribution list in Address book will only allow you to choose one email address per contact. There is no way to change that.
    As you discovered, you can write an applescript that will send to all addresses in the contact. I'm not sure where you got the idea that it needed lots of prompts. There might have been prompts in the ones you saw because the user wanted to choose.

  • Hi i use iphone 4 with iso 6.1.3!! Am not getting an option to register my phone number in imsg!! Am just getting an option to set my email address for sending and receiving the imsgs!! How do i register my phone number??

    Hi i use iphone 4 with iso 6.1.3!! Am not getting an option to register my phone number in imsg!! Am just getting an option to set my email address for sending and receiving the imsgs!! How do i register my phone number??

    Hello Nikkii,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    Troubleshooting telephone-number activation (iPhone only)
    After each step, toggle FaceTime and iMessage off and then on in Settings > Messages and Settings > FaceTime.
    Update to the latest version of iOS.
    Ensure that your iPhone is set to the correct time zone. Tap Settings > General > Date & Time.
    Note: If Set Automatically is on but the incorrect time zone is displayed, turn Set Automatically off and then choose the correct time zone, date, and time. Then turn Set Automatically on again.
    Ensure that FaceTime has not been restricted: Settings > General > Restrictions > FaceTime.
    Verify that you can send SMS messages. You need a valid SMS messaging plan to activate FaceTime.
    Contact your carrier to verify that there are no restrictions or blocks on text messages. Blocks on text messaging will prevent iMessage and FaceTime registration.
    If you are unable to activate iMessage or FaceTime on a device after remote wiping it, wait at least 24 hours and try again.
    If "Waiting for Activation" is displayed, leave FaceTime and iMessage enabled for 24 hours. Toggling FaceTime or iMessage off and on will cause the registration process to start over.
    Best of luck,
    Mario

  • FaceTime asking for email address for people to call but it's already set up and won't skip, already on iPhone 4, want it on iPad

    So my nan has just got an iPad for Christmas, she already has an iPhone 4 and her FaceTime account is already set up, but she would like it on her iPad as it is obviously bigger than her iPhone. However, FaceTime will not let her proceed when it asks for the email address for people to contact her on. It says that it is already in use??
    We already know this but she wants to use the same account rather than create a new one just for her iPad, any help or advice would be muchh appreciated.
    Thank You and Merry Christmas

    I am logged into the same things on both my iPhone and my MacBook Pro, except for mail. I use a gmail IMAP account and everything there already works on both machines. The iCloud account on my iPhone uses one Apple ID and the one on the Mac uses the second Apple ID.

  • I can't set up my email account on my ipod touch.  It keeps saying that I have to use a valid email address for this account

    I can't set up my email on my ipod touch.  It keeps saying I have to use a valid email address for this account.  Help!

    Hi Annie,
    Make sure when you are setting up your e-mail account that you enter in your entire e-mail address.  If you have a Yahoo (includes any e-mail account associated with Yahoo), G-mail, or Aol after entering in your password it should automatically set up.  Any other e-mail address you will have to manually set the account up.

  • I am trying to change my email address for an Apple ID and it is saying that it is already in use. I then sign in with that Apple ID and it says that the account is not set up yet, I don't want to set up the account, but I do want to use the email address

    I am trying to change my email address for an Apple ID and it is saying that it is already in use. I then sign in with that Apple ID and it says that the account is not set up yet, I don't want to set up the account, but I do want to use the email address in my original Apple ID! HELP!

    Welcome to the Apple community.
    Once you have created a rescue address, you cannot delete it, nor can you change it to the same address as used by your ID. There are numerous providers you can get additional email addresses from, such as Hotmail, Yahoo, Google etc etc.

  • I'm unable to add the email address for iMessage, that I was using before iOS 7 to my iPhone, because it says that it is "in use by another device," but I have no other devices.  How do I resolve this so I can add this email address to my iPhone?

    I'm unable to add the email address for iMessage, that I was using before iOS 7 to my iPhone, because it says that it is "in use by another device," but I have no other devices.  How do I resolve this so I can add this email address to my iPhone to send and recieve iMessages?

    Sync your iPhone to iTunes, and see if that does the trick.  Also you could try a Soft Reset with no Risk to Data.  Holding down both the Sleep button and the Home button until the Apple logo appears and then waiting for the Reset to bring you iPhone back to the lock screen.    Are you trying to add the email at Settings>Messages>Send and Receive from (2 Addresses) your iPhone number and your email address?

  • How do I set up a different email address for HPePrint

    how do I set up a different email address for HPePrint

    @poloacuna
    At this time you cannot reassign printer email addresses.  Also, keep in mind If you delete a printer email address then you will not be able to use that same email address again for six months.  

Maybe you are looking for

  • Actionscript Slideshow horror!!!

    Hey everyone, I've got a simple random actionscript slideshow that loads external jpgs into a mc. Everything works good but i can't get the darn jpgs to fade in and out. Could someone please help, the deadline approaches. Here is the AS for the movie

  • Sent friend gift of music and they cannot dowload it to thier iphone 5 ?

    how can you redeem gifts sent to you from your iphone?

  • Tab Menu Question

    I have found a tab menu I want to use, it displays fine in DW but when I preview in Explorer the top of the tabs doesnt show. Could someone tell me why? Here is the code - <style> #navlist{ padding: 3px 0; margin-left: 0; border-bottom: 1px solid #77

  • Parent WPF Client Window not on top after closing a screen set

    Hi all, I am observing some strange behavior with the WPF Client (SMP 2.3 SP 4). When closing a screen set (window), sometimes the parent window is in the background (meaning some other windows programs are on top of them) even if the parent window w

  • If you delete iCloud from iPhone will it delete pictures that are on your phone

    i set up my iPhone with my Apple ID, but I would like to delete it and use my husbands so that my pictures will go to ur iPad since the iCloud on the iPad is his apple ID. I want to make sure if i delete the iCloud account on my phone it will not del