Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
91 views

prevent hook dll loading

Is there a way to way set process security permissions or some other way to disable Windows from loading global window hook dlls? I don't want to disable SetWindowsHookEx, I just want to disable the ...
1
vote
1answer
159 views

How do I correctly call LsaLogonUser for an interactive logon?

I'm trying to use LsaLogonUser to create an interactive logon session, but it always returns STATUS_INVALID_INFO_CLASS (0xc0000003). From what I have found in searching online, the memory layout of ...
1
vote
1answer
182 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
3answers
461 views

ASP.NET impersonation problem (part 2)

This is a follow on to a previous post about being unable to impersonate a currently logged in Windows user. There were many good suggestions, but the previous thread was getting messy, so I am ...
1
vote
0answers
431 views

WCF RIA Services, The remote server returned an error: Not Found

This error occurs usually after some idle time when there was no server interaction. If I repeat the call, the server responds correctly and necessary data is returned. What might be the problem? ...
1
vote
1answer
461 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. ...
1
vote
3answers
2k views

ASP.Net unable to see shared folder

I've written a new application in a network I haven't worked in before, and am running into a problem. If I have the following C# code: FileStream fs = ...
0
votes
0answers
45 views

Is it possible to set integrity level for a Windows service?

It is possible to set an application's integrity level using the icacls.exe utility. For example, on Windows Vista, 7: icacls app.exe /setintegritylevel Medium When such applications are executed, ...
0
votes
1answer
57 views

Remote OpenSCManager fails with access denied

I am attempting to control a service on a remote machine using the following code: // Error checking omitted for brevity HANDLE hToken = NULL; // user = username with no domain specification // ...
0
votes
0answers
107 views

How do I grant privileges to a user/role in Windows 7?

How do I grant specific privileges (not permissions) to a specific user? I'm confused because it seems there are "permissions" and "privileges" and I need to be able to grant the SE_SYSTEMTIME_NAME ...
0
votes
0answers
114 views

Warning while moving file from one Samba share folder to another Samba share folder in Windows

I want to move file \samba\share\1\abc.txt to \samba\share\2\abc.txt from windows Server 2003 R2 Service Pack 2, but it is giving following warning - Windows Security Warning Are you sure you want ...
0
votes
0answers
38 views

UAG: how to ‘embed’ into DCA?

I have to find a solution (if it exists in principle) for the following problem. I have a network with UAG DirectAccess SP1 RC installed. Configuration of the network corresponds to one described on ...
0
votes
0answers
16 views

Custom Security Descriptor

I am exploring the possibility of creating a custom security descriptor for a POCO. The intention is to determine the level of access to the object, based on a set of custom permissions, without ...
0
votes
4answers
286 views

ASP.NET impersonation problem

I am trying to get my IIS 7.5 to impersonate the account of the user accessing a site through a browser. If I use... <identity impersonate="true" userName="mydomain\myusername" ...
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 ...
0
votes
0answers
129 views

WatiN: The Windows Security window disappears after a short time

I have a script that runs a Javascript to log on another user to a intranet sone. When the test runs the script Windows Security logon pop ups and my intension is to run some code to identify the ...
0
votes
1answer
104 views

How to do these permission granting commands in Windows Explorer?

In this tutorial, I found the following commands. ICACLS "%SystemDrive%\Windows\System32\inetsrv\config" /Grant "Network Service":R /T ICACLS ...
0
votes
2answers
106 views

How do function detour packages circumvent security

I am looking at some code that uses a function detour package called DetourXS. My application is targeted for Microsoft Server operating systems. Microsoft Research also has a Detours package and ...
0
votes
2answers
236 views

How to run a process as current user privilege from an admin process

When a setup program(built by like Inno Setup) does launch a process, the process always be run as administrator privilege. -because setup program had been run as admin. I want to run the child ...
0
votes
1answer
579 views

Excel VBA macro workbook startup - security warning - automatic update of links disabled

I've created an add-in and installed it, but now when I open Excel I get an error pop-up telling me that the add-in file is a security risk and that automatic updating of links is disabled. I've ...
0
votes
1answer
72 views

Sitemap Links don't work on live site, Windows Authentication

I have a intranet site with Windows Authentication. I have 'Administrator' pages in an 'Administrator' folder that will only show for those in the admin group (windows security group) These pages ...