AD display name change is wrong

Unity 4.0(2)
When using SAWeb to import a subscriber (exchange) the application puts the exchange alias in the display name field and this cannot be changed, this then updates AD and hence the display name in AD is wrong. I noticed an earlier post talking about bug CSCeb24466 and wondered if this would affect me in this way as I'm not using the Bulk Import Tool?

I have run into this problem today and am about to log a case with the TAC. My situation is a new Cisco Unity 4.0.3 Unified Messaging in an existing AD/Exchange environment. Unity Administration has been set up to import existing users only.
When importing new Unity users from Exchange, the Display Name in the Unity Web Administration page is reading the Calling Name (cn) value from Active Directory when selecting the user to import and then overwriting the Display Name in AD when the user is added.
(I have just read Bug CSCeb54025 and this is exactly the issue, will chase the ES from the TAC)
When we deny write access to the Display Name for the UnityDirSvc account, we are unable to add users to Unity.
Why does this account require access to write any fields on the AD user account except the cisco attributes? The customer does not wish Unity Account Administrators to be able to change non-cisco Active Directory fields (such as First Name, Last Name, Display Name etc.) through the Unity interface unless crucial to the operation of Unified Messaging.
Any suggestions??
Thanks
Ben

Similar Messages

  • Contacts deleted on skype and display name changed...

    Hello,
    i have just login into skype and found my display name changed to yvonne? 
    my contacts are also deleted and the only contact is a person named eugene.
    dont really know whats happening. can someone help me please?
    my username is syinli and email used is *edited for privacy*
    please and thank you!

    can you try to logout then login again?  However, if the same problem persist, you may need to contact customer service, here's how;
    How to Contact Skype Customer Service
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Renaming Name of Keyboard, not just the Display Name of Keyboard

    I lent my keyboard and trackpad to a friend, and when they were returned, they were named with his name.
    I easily changed the Display Name to my own, but the Name in the Bluetooth Preferences panel remains the name of my friend.
    I even found the string where his name is embedded - it is within a file called "com.apple.Bluetooth.plist" inside Library > Preferences.
    I downloaded the Developer app called XCode, which allowed me to edit a copy of "com.apple.Bluetooth.plist", and put my own name where it incorrectly says my friend's name. I then dragged the copy into the Library > Preferences after trashing the incorrect one.
    Proble solved, right?
    But on restart - or even after sleep - my iMac alters the corrected file and returns it to the incorrect name - the name of my friend.
    Seemingly, it must be using some info in a cache somewhere. So I read that Bluetooth caches may be stored in the PRAM of an iMac, so I tried the technique of restarting while emptying the PRAM by holding Ctrl-Option-P-R, but that did not help. Honestly I am not sure that the PRAM empties when one is using a wireless keyboard anyway, since the Mac is probably starting for awhile before it gets around to checking on its Bluetooth devices. But, in any case it did not work to get rid of my friend's name.
    I am *this* close to buying a brand new keyboard and trackpad so I can be rid of the accursed name.
    There must be SOME way for my iMac to treat my existing keyboard and trackpad as if they were brand new, and get rid of the damned old incorrect info!
    Anyone found a solution to this? I've seen other threads where people failed.

    Holy snit, I found the solution.
    For the keyboard:
    In the Bluetooth Preferences, when you highlight the Keyboard and click the gear, click Rename, and - this is the part that everyone I've read about has failed to do - change the Display Name from, say, Will's Keyboard to Will B's keyboard. That changes the Display Name, which we already knew and which wasn't the point. The point is that it also changes the Name. Then, again change the name back to Will's Keyboard, and both the Display Name and the Name changes to Will's Keyboard.
    For the Trackpad:
    It doesn't work exactly the same, so be careful! Read the following in its entirety first before following any of the steps or you will be unpleasantly surprised!
    In the Bluetooth Preferences, highlight the Trackpad and click the gear, click Rename, and - this is the part that everyone I've read about has failed to do - change the Display Name from, say, Will's Trackpad to Will B's Trackpad (pick the latter name VERY CAREFULLY BECAUSE IT WONT GO AWAY!). That changes the Display Name and it also changes the Name, and you will think everything is going fine. It isn't. Then, again change the name back to Will's Trackpad, and you will find that the Display Name changes to Will's Trackpad BUT THE NAME REMAINS Will B's Trackpad. I SAY AGAIN, THE "NAME" WILL NOT UPDATE CORRECTLY, SO PICK A NAME YOU CAN LIVE WITH!

  • SharePoint 2013 Site Mailbox Display Name MDEL:SiteMailboxName

    I installed the site mailbox (SiteMB) on a project site, and It synchronized with the Outlook of members in this site, but next day it disappeared from the outlook, and when I check (Manage All Site Mailboxes) I see that it is empty. Also I noticed that
    the site mailbox display name changed to (MDEL:SiteMB) and no one did any changes to the site mailbox settings. And I still easily can open it from the SharePoint site.
    Can anyone help with this?

    http://community.office365.com/en-us/f/154/t/182999.aspx
    It would appear there's a bug in Outlook when the option for Cached Exchange when the - Download Shared Folders - option is selected. The work around is you deselect the shared folders option.
    File-> Account settings -> (select Exchange Account) Change -> [More Settings] button -> {Advanced tab} -> in the "Cached Exchange Mode Settings" deselect the [ ] Download Shared Folder Options. Restart Outlook. 
    If this helped you resolve your issue, please mark it Answered
    That did not help, The problem that the mailbox is MDEL(Marked for Deletion) as if I deleted the site itself ! But I still can open the mailbox itself through the SharePoint site > Mailbox icon!!!

  • Coding best practice display name vs internal name in itemUpdated event receiver

    Hi,
    In an itemupdated event receiver, when referring to list fields, is it better to use the field's internal name, or its display name?
    Is there a clear guideline or best practice, or is this a subjective discussion?
    Thanks in advance for your replies

    Hi Jorge,
    One of the best practice I follow is Repository pattern for list access, on that scenario I always use Internal Names.
    The rational behind this decision is Fristly, I will have full control, Secondly I need not to worry about column names changes by business/endusers through SharePoint UI which I cannot control of. Though we had governance in place and trained
    the users, still no avail, users will go and change the column names. 
    Thirdly, My code will not break when there is a display name change. One of my client was too UI rather than business logic, since the enduser are high profile managers, spacing between columns and readabiltily are first class citizen.  Those changes
    that we made to the list library did not affect our code and the application was running without code refactoring.
    Backto your question, I will use Internal names in my CAML query to minimize error as follows
    item["internalName"]
    Your question is subjective, I have not seen any best practices on this subject, being said that, if you are looking for best practice and guidance I would suggest you to start here -
    SharePoint 2010 Guidance
    http://msdn.microsoft.com/en-us/library/ff770300.aspx ( no idea on SP 2013 guidance availablity)
    Go through the code and doc, You will get the design rational behind each choice.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • Wrong email display name with german umlauts (MS Exchange 2003)

    We use 6 iPhones with Exchange 2003 and get wrong email display names with german umlauts (ä,ü,ö) - but the email-body is right.
    We get special characters instead of umlauts, so the display name split into pieces. Anwering is not posipble - we get a failure-message.
    We changed the standard-internet-mailformat on the exchange-server to unicode utf-8. First it works fine, after a few hours the names displays wrong again.
    So we use this hotfix:
    http://support.microsoft.com/?scid=kb%3Ben-us%3B916299&x=11&y=13
    Same result: First it works fine, after a few hours the names displays wrong again at the iPhone.
    Any ideas?

    Do you have commas in the display name? We used to have "Müller, Thomas" <[email protected]> and then got the split up and special characters you mention. Tests have shown that when leaving out the comma in the display name, e.g. "Thomas Müller" <[email protected]>, everything worked fine.
    Guess it's a question of whether a company wants to change its naming convention for a few iPhone users...
    HCD

  • Change display name for existing users

    Hi,
    We have alot of users in our Active Directory. After an migration our existing users are displaying their name wrong. When we create a new user the display name is set FirstName LastName. But all of our old users have their User logon name as display name.
    Is there a way to change the display name of our old users to FirstName LastName instead of the user logon names they are displaying now? Doing this per user is a hell of a job so this really isn't an option.
    Example:
    Full name: Peter Peterson. User logon name: pepeter. Display name: pepeter. (old user)
    Full name: Tom Thompson. User logon name: tothomp. Display name: Tom Thompson. (new user)
    Greetz,
    Tom

    I have found a script for Powershell that may be the answer to my question. There is only one thing that is not in the script. The script runs for all users. The PageSize is set to 2000 so it runs 2000 entries. Is there a way that I can run this script for
    all Users in AD that start with the letter "A" or with an other letter. :P
    $previewMode = $true #change value to $false ONLY after you have verified the preview!!!
    $CurrentDomain = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()
    $Domain = [System.DirectoryServices.DirectoryEntry]"LDAP://$CurrentDomain"
    $Searcher = New-Object System.DirectoryServices.DirectorySearcher
    $Searcher.PageSize = 2000
    $Searcher.SearchScope = "Subtree"
    $Searcher.Filter = "(&(objectCategory=person)(objectClass=user)(!(objectClass=computer)))"
    $Searcher.PropertiesToLoad.Add("userPrincipalName") > $Null
    $Searcher.PropertiesToLoad.Add("givenName") > $Null
    $Searcher.PropertiesToLoad.Add("sn") > $Null
    $Searcher.PropertiesToLoad.Add("distinguishedName") > $Null
    $Searcher.SearchRoot = "LDAP://" + $Domain.distinguishedName
    $SearchResults = $Searcher.FindAll()
    $dnsSuffix = $CurrentDomain.Name
    foreach ($Result in $SearchResults){
                   $firstName = $Result.Properties.Item("givenName")
                   $lastName = $Result.Properties.Item("sn")
                   $newLogonName = "$firstName $lastName"
                    [System.DirectoryServices.DirectoryEntry]$userObject = $Result.GetDirectoryEntry()
                    $oldLogonName = $userObject.sAMAccountName
        Write-Host "Changing $oldLogonName to $newLogonName..."
        try {
            if (!($previewMode)) {
                       $userObject.cn = $newLogonName           
               $userObject.CommitChanges()
            Write-Host "$oldLogonName successfully changed to $newLogonName."
        catch{
            Write-Host "Error changing $oldLogonName to $newLogonName."

  • Mac Mail Wrong Display Name

    My Mac mail app for my icloud account has the wrong display name for the account.  About three years ago, I bought my mac on the company credit card, and had to use our accounting director's name for the billing address.  (We'll call him Richard Nicks).  Three years later, I open Mac mail and HIS name is the display name for my icloud email!
    Of course it's grayed out, so I have to change it in the icloud account.  But when I go log into icloud, his name does not show up anywhere.  I've confirmed the email addresses are all the same so I know I don't have multiple accounts or anything.  I've closed mail, resynchronized it, rebuilt the database, no joy.  Where in the world is it getting his name from and how can I change that?
    Thanks
    OS X 10.9.5

    Thanks for the response.
    In Account Preferences, the name and email address are grayed out so I cannot change those.
    I looked in my contacts, go under All iCloud, and there's only one contact.  The picture is of a piano that says Me, so I assume that is my Me card.  This has my correct name.
    Interesting to note, when I send an email from iCloud on my iPhone, it comes across with the correct display name.
    I'm at a loss on where else to check.  Thanks for the help!

  • Change email display name????

    My display name for the exhange email set up on my iphone appears wrong. I have double checked with the email provider and they say this has to be changed with apple. How do i do that?

    Log into your webmail, click on Preferences (tools icon) (upper right ish). Now on the left, you click on accounts click on the account at the top (I only have one - so the details show up on the lower right) and change your from name.
    Now I did stop and re-start my mail app on the ipad and it did not (yet) update the name. I am not sure when this gets done but I will be  phoning shaw when I get a chance and update this post at that time.
    Wish me luck. You could also set it up as a pop account. Shaw does not have the imap option like the rest of the planet (in the year of 2013!)

  • SP 2013 wrong display name

    Hello gyus,
    we are having troubles with several user accounts in Sharepoint 2013. Some users report their display name in SharePoint is wrong. For example... John Doe see himself logged as Martha Sanchez. He posses her permissions to Sharepoint and vice versa. We have
    deleted users and ran full sync - did not help.
    Have anyone experienced this?
    Thank you!

    Try this,
    As a site collection administrator, click Site Actions –> Site Permissions
    Click into any existing group (like site Owners).  The URL will be something like http://server/_layouts/people.aspx?MembershipGroupID=28.
    Change the 28 to a 0.  The list should now show you All People. 
    Find the user who isn’t updating, click the checkbox by their name.  Click Actions, Delete Users from Site Collection.
    Now add the user back to the appropriate group, and their spelling should be correct.
    Courtesy
    please 'Propose as answer' if it help you, also vote this as helpful if you like this reply.

  • How to change web-app display name within EAR file?

    Currently we are deploying an EAR file (which contains a web-app and an EJB) per
    BEA recommendations. The web-app shows up on the admin console with '/' as the
    name. Is there anyway to change this to the name I want?
    thx,
    Matt

    FYI - here is the entire content of applicaiton.xml in the EAR file we deploy:
    <!DOCTYPE application PUBLIC '-//Sun Microsystems, Inc.//DTD J2EE Application
    1.3//EN' 'http://java.sun.com/dtd/application_1_3.dtd'>
    <application>
    <display-name>RVApp</display-name>
    <module>
    <ejb>RVTrackingBean</ejb>
    </module>
    <module>
    <web>
    <web-uri>RVWebApp</web-uri>
    <context-root>/</context-root>
    </web>
    </module>
    </application>
    "Erik Johnson" <[email protected]> wrote:
    >
    No, you can't change that in the console. It's defined in the application's
    application.xml
    descriptor file.
    erik
    "Matt Savino" <[email protected]> wrote:
    Currently we are deploying an EAR file (which contains a web-app and
    an EJB) per
    BEA recommendations. The web-app shows up on the admin console with'/'
    as the
    name. Is there anyway to change this to the name I want?
    thx,
    Matt

  • Windows 7 or Windows Server 2008 R2 domain join displays error "Changing the Primary Domain DNS name of this computer to "" failed...."

    Hi,
    Windows 7 or Windows Server 2008 R2 domain join displays error "Changing the Primary Domain DNS name of this computer to "" failed...."
    DC:windows Server 2008 R2
    Domain functional level:Windows Server 2003
    When Winxp join domain, have no this error message.
    I checked http://support.microsoft.com/kb/2018583?wa=wsignin1.0 does't work.
    There have 3 suggestion in this article:
    1.The "Disable NetBIOS over TCP/IP" checkbox has been disabled in the IPv4 properties of the computer being joined.
    Doesnt's work.
    2.Connectivity over UDP port 137 is blocked between client and the helper DC servicing the join operation in the target domain.
    On my DC, I run netstat -an, reslut as below:
     UDP    192.168.20.3:137       *:*
    3.The TCP/IPv4 protocol has been disabled so that the client being joined or the DC in the destination domain targeted by the LDAP BIND is running TCP/IPv6 only.
    We are not using IPV6.
    This server recently updated from Windows Server 2003 to Windows Server 2008 R2. Before upgrade, when Win7 and Win2008 join this domain, also have the same error message.
    Please help to check this issue.
    Thank you very much.
    BR
    Guo YingHui 

    Hi Guo Ying,
    I have faced this critical error which makes over-writes the host names in the domain when you join.
    For example: Already you had a host name called as PC.domain.com in the domain.com Domain.
    When you try to add the another host name called as PC in the domain.com Domain, it doesn't give you the duplicate name error on the network it does over-write the existing host name called as PC.domain.com & it will add the new host name into the domain.
    Host name which got over-written will get removed from the domain. I faced this issue in my project. My DPM host name got removed from the Domain & new host name got joined into the domain which halted my backups for one day.
    Final Resolution is as follows:
    You need to start the dns console on the DC & drop down the domain name.
    Select the _msdcs when you click on _msdcs it will show the Name Server's list on the right hand side.
    You need to add the Domain Naming Master under the _msdcs or add all the domain controllers which you had.
    After you add the Name server's try joining the PC OR Laptop to the domain which is successfully joins it.
    Regards
    Anand S
    Thanks & Regards Anand Sunka MCSA+CCNA+MCTS

  • How to change the Group Display Name in the UME?

    Hello experts,
    from time to time due to reorganisation our departments group names change.
    So far this was a big deal because it is not possible to change the Display Name of a group created in the Portal´s UME?
    So far a new group with the department name has to be created and all group members have to be connected to the new group again. This is not a convenient way..
    Is there a way to configure the UME to allow to modify the Display Names of Groups?
    Thanks in advance.
    Thomas
    Edited by: Thomas Krynicki on Jan 19, 2009 5:15 PM

    Thank you for the quick answer.
    However my problem is still not solved.
    I am using the portal groups also as permission objects for KM. That´s why I do not want to create a new group because the new one will not appear in the ACLs of the KM Objects.
    For me it is important to modify the Display Name of an existing Group. The GroupID shall not change. The new Display Name should be updated then automatically in the ACLs of KM Objects in question.
    By exporting the group data:
    [group]
    gid=TeamA
    gdesc=All members of Team A
    user=member1, member2
    There is no parameter for changing the Display Name of the group. There is only the Description Parameter.
    So far I didn´t find any solution.
    Any other ideas.
    Thanks in advance.
    Thomas

  • How to change the display name for Gmail aliases?

    I have a Gmail account with multiple aliases. They look like this:
    Joe User <[email protected]> (Primary)
    Support <[email protected]> (Alias)
    Billing <[email protected]> (Alias)
    Works great. I'm trying to set up Apple Mail on my new MacBook to support the aliases as well. I am able to input the e-mail aliases, but the display names for all are 'Joe User' which defeats the purpose of having the aliases.
    I have to imagine I can do this. Can someone help me out?
    Regards,
    Dave

    Anyone came here, refer to this post.
    http://h30499.www3.hp.com/t5/Community-Feedback-Suggestions/change-of-display-name/m-p/6667672/highl...

  • Change display name of workflow email address in sharepoint 2010

    Hi
    How I can change display name of workflow email address in sharepoint 2010. I want to configure display name (from address)of email
     for each site collection separately.for example I want to change "software unit"
     in below pic to another name for my software unit site collection.
    How I can do this?
    Thanx.

    Hi,
    According to your post, my understanding is that you want to change display name of workflow email address in sharepoint 2010.
    In my environment, if I assign a task to a user, the email is as below:
    The “test” is the site name, the [email protected] is the “From” user.
    Do you want to change the “From” field in the workflow?
    If so, you can have a look at the "Send email extended" custom SPD workflow activity (http://www.codeplex.com/SPDActivities
    ) which allow you to specify the sender.
    Here are some similar threads for your reference:
    https://social.technet.microsoft.com/Forums/en-US/22d95510-95b7-4882-b988-4038e59fb031/how-to-change-the-display-name-for-sharepoint-emails-sent-using-workflows?forum=sharepointgeneralprevious
    http://sharepoint.stackexchange.com/questions/19186/changing-from-email-address-in-sharepoint-designer-2010-workflows
    http://sharepoint.stackexchange.com/questions/61964/how-to-change-the-from-address-in-feedback-workflow-email
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • Change ringtone on iPad Mini?

    Skype is working well on my iPad Mini wifi + cellular, just as it does on my iPhone and iPad 1and 2. Skype rings through and I get the badge alert on my iPM, but I'm not happy with either the volume or melody of the Skype ringtone, honestly myself, f

  • I can't see my tabs

    Hi! I refreshed Firefox when it suggested I do so because it was being slow. Silly me for not reading a bit more carefully about what it would remove, and I lost certain settings. Well, I restored tabs on bottom and all that jazz, but it seems that t

  • Vanishing Point issues in CS3

    I have tried to use the vanishing point filter but I do not get the option to export to After Effects. I have tried a number of tutorials and am confident that I am doing everything correctly, I have also read the manual and can't find anything. The

  • Upload data using 'GUI_UPLOAD'

    Hi all,       l like to upload data from local file. My question is how to upload data from .xls file using function 'GUI_UPLOAD', and then transfert that data into local internal table. Bob

  • Website loads to right hand side of browser

    How do I centre website in browser to view correctly