using System;
using System.Runtime.InteropServices;
namespace System.Security.Principal
{
/// Specifies common roles to be used with .
// Token: 0x020005B7 RID: 1463
[ComVisible(true)]
[Serializable]
public enum WindowsBuiltInRole
{
/// Administrators have complete and unrestricted access to the computer or domain.
// Token: 0x040015F5 RID: 5621
Administrator = 544,
/// Users are prevented from making accidental or intentional system-wide changes. Thus, users can run certified applications, but not most legacy applications.
// Token: 0x040015F6 RID: 5622
User,
/// Guests are more restricted than users.
// Token: 0x040015F7 RID: 5623
Guest,
/// Power users possess most administrative permissions with some restrictions. Thus, power users can run legacy applications, in addition to certified applications.
// Token: 0x040015F8 RID: 5624
PowerUser,
/// Account operators manage the user accounts on a computer or domain.
// Token: 0x040015F9 RID: 5625
AccountOperator,
/// System operators manage a particular computer.
// Token: 0x040015FA RID: 5626
SystemOperator,
/// Print operators can take control of a printer.
// Token: 0x040015FB RID: 5627
PrintOperator,
/// Backup operators can override security restrictions for the sole purpose of backing up or restoring files.
// Token: 0x040015FC RID: 5628
BackupOperator,
/// Replicators support file replication in a domain.
// Token: 0x040015FD RID: 5629
Replicator
}
}