Search code examples
windowspowershellcmdprivilegeswmic

How to view user privileges using windows cmd?


I am trying to view the user privileges using the command prompt in Windows. User account & User privileges such as:

SeBatchLogonRight
SeDenyBatchLogonRight
SeInteractiveLogonRight
SeDenyInteractiveLogonRight
SeServiceLogonRight
SeDenyServiceLogonRight
SeNetworkLogonRight
SeDenyNetworkLogonRight

I tried using ntrights but it's not working. I can't use any tool as I am trying to create an automated script for an OS audit.


Solution

  • I'd start with:

    secedit /export /areas USER_RIGHTS /cfg OUTFILE.CFG
    

    Then examine the line for the relevant privilege. However, the problem now is that the accounts are listed as SIDs, not usernames.