| Group | Capabilities | Exam Note |
|---|---|---|
| Administrators | Full system control, install/remove software, manage all users and groups | Most powerful local group |
| Users | Run applications, use network resources, save files in personal folders | Default group for new accounts |
| Power Users | Legacy group; limited admin rights (legacy compatibility only) | Largely deprecated in Win 10+ |
| Backup Operators | Back up and restore files regardless of permissions, log on locally | Bypass NTFS perms for backup |
| Remote Desktop Users | Log on via RDP without being a local admin | Delegate RDP without elevation |
| Network Configuration Operators | Modify TCP/IP settings, rename connections | No full admin needed for net config |
| Permission | Files: What It Allows | Folders: What It Allows |
|---|---|---|
| Full Control | Read, write, execute, delete, change permissions, take ownership | All file permissions + delete subfolders and files |
| Modify | Read, write, execute, delete file | Create and delete files and subfolders |
| Read & Execute | View and run the file | List folder contents, navigate subfolders |
| List Folder Contents | N/A (folders only) | View file and folder names only |
| Read | View and copy the file | View files and folder names |
| Write | Write to the file, create new files | Create files and subfolders, write folder attributes |
| User | Group A | Group B | Effective Permission |
|---|---|---|---|
| alice | Allow: Read | Allow: Modify | Modify (cumulative, most permissive) |
| bob | Allow: Read | Deny: Read | No access (Deny wins) |
| carol | Allow: Full Control | Deny: Write | Read & Execute only (Deny Write overrides) |
| Command | Purpose |
|---|---|
| net user | List all local user accounts |
| net user username * | Change password for username (prompts securely) |
| net user username /add | Create new local account |
| net user username /delete | Delete a local account |
| net user username /active:no | Disable the account |
| net localgroup Administrators username /add | Add user to local Administrators group |
| net localgroup groupname | List members of a specific group |
| Characteristic | Local Account | Domain Account |
|---|---|---|
| Storage | Local SAM | Active Directory NTDS.dit |
| Authentication | NTLM | Kerberos (primary) |
| Scope | One machine | Entire domain |
| Managed by | Local admin | Domain admin |