Hello,
To list the relevant users within Windows Server, you can use the following steps:
- Open the Server Manager console on your Windows Server.
- In the left-hand menu, click on "Local Users and Groups."
- In the main window, click on the "Users" folder to view a list of all the users on the server.
You can also use the command prompt or PowerShell to list the users on your Windows Server. To do this, you can use the following command:
net user
This command will list all the users on the server, along with their account status (e.g. active, disabled, etc.). You can also use the following command to list specific users:
net user username
Replace "username" with the name of the user you want to list.
Alternatively, you can use the following PowerShell command to list all the users on the server:
Get-LocalUser
This will display a list of all the local user accounts on the server, along with their account status and other details.
I hope this helps!