mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
7bd28e4357
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2304 21ef857c-d57f-4fe0-8362-d861dc6d29cd
23 lines
775 B
C#
23 lines
775 B
C#
using System;
|
|
|
|
namespace ProcessHacker.Native.Security
|
|
{
|
|
[Flags]
|
|
public enum LsaTrustedAccess : uint
|
|
{
|
|
QueryDomainName = 0x00000001,
|
|
QueryControllers = 0x00000002,
|
|
SetControllers = 0x00000004,
|
|
QueryPosix = 0x00000008,
|
|
SetPosix = 0x00000010,
|
|
SetAuth = 0x00000020,
|
|
QueryAuth = 0x00000040,
|
|
All = StandardRights.Required | QueryDomainName | QueryControllers |
|
|
SetControllers | QueryPosix | SetPosix | SetAuth | QueryAuth,
|
|
GenericRead = StandardRights.Read | QueryDomainName,
|
|
GenericWrite = StandardRights.Write | SetControllers | SetPosix |
|
|
SetAuth,
|
|
GenericExecute = StandardRights.Execute | QueryControllers | QueryPosix
|
|
}
|
|
}
|