Windows Server: Users
Summary
This module contains actions for auditing local users on a Windows Server.
Actions
windows_server.users.
get_all
Get all local users from a Windows Server.
Minimum Plugin Version: 2.0.0
Domain Controllers
Running this action against a Domain Controller will return an empty list.
Input
- windows_server: a WindowsServer dictionary
Output
A list of User dictionaries.
Example
1 2 3 4 |
|
windows_server.users.
output_tabbed_table
Display a users table with multiple tabs.
This action can be used to display user lists from multiple servers.
The table will have the following columns:
- Name
- Full Name
- Description
- Disabled
- Locked
Minimum Plugin Version: 1.5.0
Input
-
text: the title of the table
-
tabs: a dictionary where each key is a tab name & each value is a list of User dictionaries
Output
Nothing is outputted by this action.
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
windows_server.users.
output_table
Display a list of users in a table.
The table will have the following columns:
- Name
- Full Name
- Description
- Disabled
- Locked
Minimum Plugin Version: 1.4.0
Input
-
text: the title of the table
-
users: a list of User dictionaries to display in the table
Output
Nothing is outputted by this action.
Example
1 2 3 4 5 6 7 8 9 |
|