How to get network UserId and Password and Domain

  • Thread starter Thread starter BuddyWork
  • Start date Start date
B

BuddyWork

Hello,

Is there anyway to get the current user that is logged
in, and the password and the network domain logged into?
 
BuddyWork said:
Hello,

Is there anyway to get the current user that is logged
in,

Use System.Security.Principal.WindowsIdentity.GetCurrent().Name
which returns a string in the format
{Domain}\{User}
and the password
No

and the network domain logged into?

See earlier
 
Back
Top