Hi All,
I'm trying to return my username in c#, but my Fullname... like John Smith.
Right now I am only getting mt actual login to windows, does anyone know how to do this?
string strUsr = WindowsIdentity.GetCurrent().Name.ToString();
MessageBox.Show(strUsr);
Environoment.username also brings back login... not full name
any suggestions???