Tagged Questions

12
votes
4answers
17k views

Get a list of members of a WinNT group

There are a couple of questions similar to this on stack overflow but not quite the same. I want to open, or create, a local group on a win xp computer and add members to it, domain, local and well ...
10
votes
3answers
1k views

How to write in a registry key own by TrustedInstaller

In order to install a new property page into the Active Directory SnapIn, I need to write into the following registry key of W2K8 R2 (as documented by Microsoft) ...
4
votes
3answers
1k views

How to apply Windows group policy using .NET?

Is it possible to apply (and remove) Windows group policy settings using .NET? I am working on an application that needs to temporarily put a machine into a restricted, kiosk-like state. One of the ...
3
votes
1answer
200 views

ObjectSecurity.GetOwner returns group rather than user

I am trying to determine the user who created a particular file like so: string path = "C:\\TheFile.dat"; string user = ...
3
votes
3answers
106 views

Do spawned threads automatically run as the identity of the user?

ie static void Main(string[] args) { var thread = new Thread(WhoAmI); thread.Start(); } static void WhoAmI() { //can i access network resources as the user who ran Main? }
1
vote
1answer
184 views

Reading / Writing security properties to objects in Active Directory (the same way Delegation of rights work) C#

I'm looking for a way to read and set security permissions on an object (OU or users/computers) in Active Directory on Windows Server 2008+. The same way that Delegation by using Active Directory ...
1
vote
1answer
466 views

Windows File security, removing an access rule

I have the following code, that should remove the access of users from a certain folder. Unfortunately it doesn't (the access rule remains in place). No exception is thrown. ...
0
votes
0answers
140 views

Is there any .NET API to retrieve the Kerberos ticket issued to a client

Are there any .NET API available to allow me to do the following? a)retrieve the kerberos ticket in a client application for an authenticated user (in web app or in a console app)? b)Obtain the size ...