If you highlight a name in AD hit F2 to rename. Retype as you wish and it will show yu another field with other stuff you can change as well.
Main Topics
Browse All TopicsHave several usernames in active directory that were initially created with first letter in first name and first letter in last name in uppercase as in John.Doe. I have tried to change them to all lowercase as in john.doe but even when I apply the changes the username just diverts back to how it was again (John.Doe). Is there a way to change it to all lowercase and actually keep it that way? Reason this is needed is because of an application interface with Unix and Unix does not like uppercase usernames. Any help is appreciated.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: rutten-dPosted on 2006-05-17 at 01:07:40ID: 16697125
a script like this could do the trick:
********** ********** ***
ainName")
untname
********** ********** ***
( I have no posibility to test , test this before applying to your domain)
'script start **************************
Option Explicit
Dim objContainer
Dim objUser
Dim strNewName
dim a
'create container object
Set objContainer = GetObject("WinNT://YourDom
'loop through users
For Each objUser In objContainer
'put user logon name in variable
strNewName=objUser.samacco
'convert variable to lowercase
strNewName = LCase(strNewName)
'put lowercase value in userobject
objUser.sAMAccountname = strNewName
Next
MsgBox "Done converting " & a & " users"
'script end **************************
this script should take the logonname of the user , convert it to lowercase and save it.
again: test it first