How can I get the User Name, Password and Domain of Users from LAN?
I'm trying to get the User Name, Password and Domain of the User Logged on to the network who is accessing my .mdb file. I'm making a security for my .mdb file, that's why I need to check if the user is valid.
My .mdb file is located in a remote server and other users can access this file, so I need to check these users who are trying to access the database.
Use build-in NT security.
Place your file on the NTFS network share and assign either individual permissions or create a group of users allowed to use your .MDB. Of course you can use functions like NetUserGetInfo to get user info, but not the password.
Hope this helps.