Programmatically assigned network service access to folder using c#
Asked Answered
S

1

7

I have an installer that runs some c# code. I want the c# code to give 'full control' to a folder for the 'network service' account. Is this possible?

I see some examples online with connecting to a domain. But the network service is not on a domain it's a local account and I just wanted to know how to do it in c#?

Cheers

Sycophant answered 18/4, 2011 at 8:4 Comment(0)
C
9
DirectoryInfo dirInfo = new DirectoryInfo("C:\\TestDir2");
DirectorySecurity dirSecurity = dirInfo.GetAccessControl();

dirSecurity.AddAccessRule(new FileSystemAccessRule("ASPNET", FileSystemRights.Write|FileSystemRights.DeleteSubdirectoriesAndFiles, InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit, PropagationFlags.InheritOnly, AccessControlType.Allow));

dirInfo.SetAccessControl(dirSecurity);

Mentioned at: Setting access rights for a directory - receiving exception "No flags can be set"
A more generic sample can be found at: http://www.redmondpie.com/applying-permissions-on-any-windows-folder-using-c/

Cyanic answered 18/4, 2011 at 8:30 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.