Options

Get-NavServerUser for a specific user

jordi79jordi79 Member Posts: 272
Hi,
Is it possible for Get-NAVServerUser PS Command be used to get info for a specific user?
Jordi

Best Answer

  • Options
    AluanAluan Member Posts: 162
    edited 2021-01-19 Answer ✓
    Hello jordi79,
    one way would be.
    Get-NavServerUser -ServerInstance YourInstance | Where-Object {$_.UserName -eq 'jordi79'}
    

    That would show you the User with the Username jordi79.

Answers

  • Options
    AluanAluan Member Posts: 162
    edited 2021-01-19 Answer ✓
    Hello jordi79,
    one way would be.
    Get-NavServerUser -ServerInstance YourInstance | Where-Object {$_.UserName -eq 'jordi79'}
    

    That would show you the User with the Username jordi79.
  • Options
    jordi79jordi79 Member Posts: 272
    Thanks. Just what I wanted.
Sign In or Register to comment.