In my C # winForm application, I need to find out if the guest account is running. Any idea?
You can check the IsGuestcurrent property WindowsIdentity:
IsGuest
WindowsIdentity
if (System.Security.Principal.WindowsIdentity.GetCurrent().IsGuest) { // it a guest account }