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