ServiceControlAccessRights (Enums)
Last changed: -136.1.1.101

.
Summary
TODO - a short description

C# Definition:

public enum ServiceControlAccessRights : int
{
    StandardRightsRequired    = 0xf0000,
    Connect            = 0x00001,
    CreateService        = 0x00002,
    EnumerateService        = 0x00004,
    Lock            = 0x00008,
    QueryLockStatus        = 0x00010,
    ModifyBootConfig        = 0x00020,
    AllAccess            = 0xf003F
}

VB Definition:

    Public Enum ServiceControlAccessRights As UInteger
    StandardRightsRequired = &HF0000
    Connect = &H1
    CreateService = &H2
    EnumerateService = &H4
    Lock = &H8
    QueryLockStatus = &H10
    ModifyBootConfig = &H20
    AllAccess = &HF003F
    End Enum

Notes:

None.

Documentation