Using Windows Integrated Security in a Windows Forms application

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

Guest

I have a client who wants to use Windows Integrated Security for authentication and authorization to use this application. They also want this application to run as soon as Windows comes up. So, I think I need to put this application in the Start-up group and have the application handle A&A using the Integrated Security. My question is how do I accomplish using Windows Integrated Security for A&A into a Windows Forms application? The OS is Windows XP and the development environment is VB.Net. Thanks in advance for any help or guidance.
 
Hi Greg,

It is not the nicest stuff to look for, but here you can start,

http://msdn.microsoft.com/library/d...cpref/html/frlrfsystemappdomainclasstopic.asp

Keywords for you:
CurrentDomain
SetPrincipalPolicy
PrincipalPolicy
WindowsPrincipal
IsInRole
WindowsBuiltInRole

I wish you succes

I hope this helps?

Cor
I have a client who wants to use Windows Integrated Security for
authentication and authorization to use this application. They also want
this application to run as soon as Windows comes up. So, I think I need to
put this application in the Start-up group and have the application handle
A&A using the Integrated Security. My question is how do I accomplish using
Windows Integrated Security for A&A into a Windows Forms application? The
OS is Windows XP and the development environment is VB.Net. Thanks in
advance for any help or guidance.
 
Back
Top