Privilege Constants (Authorization)
Privileges determine the type of system operations that a user account can perform. An administrator assigns privileges to user and group accounts. Each user's privileges include those granted to the user and to the groups to which the user belongs.
The functions that get and adjust the privileges in an access token use the locally unique identifier (LUID) type to identify privileges. Use the LookupPrivilegeValue function to determine the LUID on the local system that corresponds to a privilege constant. Use the LookupPrivilegeName function to convert a LUID to its corresponding string constant.
The operating system represents a privilege by using the string that follows "User Right" in the Description column of the following table. The operating system displays the user right strings in the Policy column of the User Rights Assignment node of the Local Security Settings Microsoft Management Console (MMC) snap-in.
Example
BOOL EnablePrivilege()
{
LUID PrivilegeRequired ;
BOOL bRes = FALSE;
bRes = LookupPrivilegeValue(NULL, SE_DEBUG_NAME, &PrivilegeRequired);
// ...
return bRes;
}
Example from Windows Classic Samples on GitHub.
Constants
Constant/value | Description |
---|---|
|
Required to assign the primary token of a process. User Right: Replace a process-level token. |
|
Required to generate audit-log entries. Give this privilege to secure servers. User Right: Generate security audits. |
|
Required to perform backup operations. This privilege causes the system to grant all read access control to any file, regardless of the access control list (ACL) specified for the file. Any access request other than read is still evaluated with the ACL. This privilege is required by the RegSaveKey and RegSaveKeyExfunctions. The following access rights are granted if this privilege is held:
If the file is located on a removable drive and the "Audit Removable Storage" is enabled, the SE_SECURITY_NAME is required to have ACCESS_SYSTEM_SECURITY. |
|
Required to receive notifications of changes to files or directories. This privilege also causes the system to skip all traversal access checks. It is enabled by default for all users. User Right: Bypass traverse checking. |
|
Required to create named file mapping objects in the global namespace during Terminal Services sessions. This privilege is enabled by default for administrators, services, and the local system account. User Right: Create global objects. |
|
Required to create a paging file. User Right: Create a pagefile. |
|
Required to create a permanent object. User Right: Create permanent shared objects. |
|
Required to create a symbolic link. User Right: Create symbolic links. |
|
Required to create a primary token. User Right: Create a token object. You cannot add this privilege to a user account with the "Create a token object" policy. Additionally, you cannot add this privilege to an owned process using Windows APIs.Windows Server 2003 and Windows XP with SP1 and earlier: Windows APIs can add this privilege to an owned process. |
|
Debug and adjust the memory of any process, ignoring the DACL for the process. User Right: Debug programs. |
|
Required to obtain an impersonation token for another user in the same session. User Right: Impersonate other users. |
|
Required to mark user and computer accounts as trusted for delegation. User Right: Enable computer and user accounts to be trusted for delegation. |
|
Required to impersonate. User Right: Impersonate a client after authentication. |
|
Required to increase the base priority of a process. User Right: Increase scheduling priority. |
|
Required to increase the quota assigned to a process. User Right: Adjust memory quotas for a process. |
|
Required to allocate more memory for applications that run in the context of users. User Right: Increase a process working set. |
|
Required to load or unload a device driver. User Right: Load and unload device drivers. |
|
Required to lock physical pages in memory. User Right: Lock pages in memory. |
|
Required to create a computer account. User Right: Add workstations to domain. |
|
Required to enable volume management privileges. User Right: Perform volume maintenance tasks. |
|
Required to gather profiling information for a single process. User Right: Profile single process. |
|
Required to modify the mandatory integrity level of an object. User Right: Modify an object label. |
|
Required to shut down a system using a network request. User Right: Force shutdown from a remote system. |
|
Required to perform restore operations. This privilege causes the system to grant all write access control to any file, regardless of the ACL specified for the file. Any access request other than write is still evaluated with the ACL. Additionally, this privilege enables you to set any valid user or group SID as the owner of a file. This privilege is required by the RegLoadKey function. The following access rights are granted if this privilege is held:
If the file is located on a removable drive and the "Audit Removable Storage" is enabled, the SE_SECURITY_NAME is required to have ACCESS_SYSTEM_SECURITY. |
|
Required to perform a number of security-related functions, such as controlling and viewing audit messages. This privilege identifies its holder as a security operator. User Right: Manage auditing and security log. |
|
Required to shut down a local system. User Right: Shut down the system. |
|
Required for a domain controller to use the Lightweight Directory Access Protocol directory synchronization services. This privilege enables the holder to read all objects and properties in the directory, regardless of the protection on the objects and properties. By default, it is assigned to the Administrator and LocalSystem accounts on domain controllers. User Right: Synchronize directory service data. |
|
Required to modify the nonvolatile RAM of systems that use this type of memory to store configuration information. User Right: Modify firmware environment values. |
|
Required to gather profiling information for the entire system. User Right: Profile system performance. |
|
Required to modify the system time. User Right: Change the system time. |
|
Required to take ownership of an object without being granted discretionary access. This privilege allows the owner value to be set only to those values that the holder may legitimately assign as the owner of an object. User Right: Take ownership of files or other objects. |
|
This privilege identifies its holder as part of the trusted computer base. Some trusted protected subsystems are granted this privilege. User Right: Act as part of the operating system. |
|
Required to adjust the time zone associated with the computer's internal clock. User Right: Change the time zone. |
|
Required to access Credential Manager as a trusted caller. User Right: Access Credential Manager as a trusted caller. |
|
Required to undock a laptop. User Right: Remove computer from docking station. |
|
Required to read unsolicited input from a terminal device. User Right: Not applicable. |
Remarks
Privilege constants are defined as strings in Winnt.h. For example, the SE_AUDIT_NAME constant is defined as "SeAuditPrivilege".
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows XP [desktop apps only] |
Minimum supported server |
Windows Server 2003 [desktop apps only] |
Header |
|