User Account Configuration ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have several user accounts I need to configure in my image. I have an
account, for example, called "TLA". The logon screen shows the account user
name, "TLA", and what I want to see is the full user name "Three Letter
Acronym." Is there a CMI property like cmiUserFullName that I can set at
design time?
 
harrier,

I don't think there is such cmi property exists. Reviewing the User Account script I see it doesn't.
Also, FBA, who is actually processing those properties set in registry, does not seem to handle anything more that user name,
password, organization and etc. No Full user name there.

However, you can always fix this at run time. You can use either API (e.g., NetUserSetInfo) or a command line tool (e.g., "net.exe
USER" or cusrmgr.exe, console User Manager tool from Resource Kit).
With the cusrmgr.exe you can use "-f" switch to set the Full user name. With net.ext USER you can use "/FULLNAME" switch.
You can easy automate it with an FBA generic command.
 
Back
Top