The windows-principal tag has no wiki summary.
0
votes
0answers
16 views
How To Get List Of Active Directory Domain Groups When Not Connected To Domain
At my company we have a custom HMI. This HMI can login using the domain of the computer if the user would like to. Here's the scenario we're currently trying to solve
With user logged into Windows ...
0
votes
1answer
55 views
Fetching Windows User accounts on a non-english version of Windows
I have developed a commercial WPF .Net 4.0 application which uses various WMI select commands to return Windows User accounts (Logon accounts) on the installed machine. I have never encountered a ...
3
votes
2answers
3k views
MVC3 Windows Authentication override User.Identity
I am building a intranet application using MVC3 with a MSSQL backend. I have authentication and roles (through a custom roles provider) working properly. What I am trying to do now is overriding ...
0
votes
2answers
623 views
How can I get a list of Active Directory Users (Only the Users that appear in the windows Logon Screen)
How can I get a list of Active Directory Users (Only the Users that appear in the windows Logon Screen)
I have tried many mehtods using Windows Principle library & WMI Select commands. I keep ...
2
votes
1answer
142 views
How can I determine if a user can runas admin?
When a user needs to enter their license key, we want to put it in HKLM if we can, and in HKCU if we cannot. If it is in HKLM then all users on the computer have the license without each having to ...
1
vote
1answer
637 views
Why is WindowsPrincipal.IsInRole always returning false for the “Administrators” group?
My local user account is in the Administrators group, and I wanted to simply figure out how a windows forms project would determine if I'm in the administrators group. So, I started a windows forms ...
5
votes
1answer
321 views
How can I ensure that IsInRole checks are not using cached credentials
I have a WPF client that connects to a WCF service, and I want to lock down some of the functionality so that only certain users can perform certain actions. The WCF service impersonates the client ...
0
votes
0answers
346 views
WindowsPrincipal.IsInRole() not checking against distribution list with public folders
I am facing an issue while authorizing users against roles from AD.
If my DL (which are all Security Groups) does not have public folders enabled, my authorization works fine. However DL's which ...
11
votes
3answers
4k views
What's the difference between retrieving WindowsPrincipal from WindowsIdentity and Thread.CurrentPrincipal?
I am trying to work out why attribute based security isn't working as I'd expect in WCF and I suspect it might have something to do with the following:
...
0
votes
1answer
601 views
Verify logged in user against exchange distribution list or AD groups in c#
I am trying to verify whether the logged in user exists in a AD group or distribution list. I tried to use WindowsIdentity but that does not give me proper results. If I add a user to the DL and then ...
0
votes
2answers
4k views
How can i get the WindowsIdentity or WindowsPrincipal of a WCF Claim / SecurityIdentifier (SID)?
I'm trying to allow all users in the Administrators group access through WCF.
internal sealed class AuthorizationManager : ServiceAuthorizationManager
{
public override bool ...
1
vote
2answers
2k views
How can I temporarily impersonate a user to open a file?
I would like to temporarily impersonate a domain user account to read in a file on a network drive from an ASP.NET site.
I would rather not set up impersonation for the entire site or set up a mapped ...
3
votes
2answers
2k views
How can I retrieve all the roles a user is in?
Is there a way to get a list of roles a Windows authenticated user is in, without explicitly checking by WindowsPrincipal.IsInRole method?
1
vote
1answer
141 views
Why does Vista report that my Windows account not being in Adminstrators Role?
Under Windows Vista, when I check whether my current user account is in Administrators role, I am getting a negative, as shown in the following picture.
Can anyone tell me why I am not in the ...
3
votes
1answer
7k views
WindowsPrincipal.IsInRole and universal vs. global active directory groups
Does anybody know how to make WindowsPrincipal.IsInRole("domain\role") work with active directory universal groups?
Let's say the current user is a member of a group called Role in a domain called ...