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

Sruit A.Suk
  • 7,073
  • 7
  • 61
  • 71
Exitos
  • 29,230
  • 38
  • 123
  • 178

1 Answers1

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/

Community
  • 1
  • 1
Kamyar
  • 18,639
  • 9
  • 97
  • 171