---
locale: "en"
updated_at: "2025-10-30T14:01:05.934Z"
canonical: "https://www.isdecisions.com/en/userlock/docs/build-with-userlock/powershell/cmdlet-reference/get-userlockreporteduser"
---

# Get-UserLockReportedUser

## Synopsis

Gets the users reported in UserLock server.

## Syntax

```powershell
Get-UserLockReportedUser [-Name <string[]>] [-UserLockServerName <string>][<CommonParameters>]
```

## Description

The Get-UserLockReportedUser cmdlet gets the users reported in UserLock server, this user object represents a user with all the interactive sessions he opened. Caution: PowerShell 3.0 is required.

## Parameters

### -Name <string[]>

Gets information only about the users with the specified name. The String represents all or part of the name of the user. Wildcards are permitted.

|  |  |
| --- | --- |
| Required | false |
| Position | 1 |
| Accepts pipeline input | true (ByValue, ByPropertyName) |
| Accepts wildcard characters | true |

### -UserLockServerName <string>

Specifies the name of the UserLock server. The default is the localhost name.

|  |  |
| --- | --- |
| Required | false |
| Position | named |
| Accepts pipeline input | false |
| Accepts wildcard characters | false |
| Default Value | '.' |

### <CommonParameters>

For more information about common parameters, type "Get-Help about_commonparameters".

## Input Type

System.String

## Return Type

ISDecisions.UserLockLibrary.ReportedUser

## Notes

You can also refer to Get-UserLockReportedUser by its alias, "gulru". For more information, see about_Aliases. To use Get-UserLockReportedUser, you must have the "User sessions" UserLock administrative access right.

## Examples

### Example 1

```powershell
Get-UserLockReportedUser
```

Gets all the reported users registered in UserLock.

### Example 2

```powershell
Get-UserLockReportedUser -UserLockServerName MyUlSrv
```

Gets all the reported users registered in the 'MyUlSrv' UserLock server.

### Example 3

```powershell
Get-UserLockReportedUser *TMP*
```

Gets all the reported users which name contains the 'TMP' string.

## Related Links

[Get-UserLockReportedComputer](/userlock/docs/build-with-userlock/powershell/cmdlet-reference/get-userlockreportedcomputer#get-userlockreportedcomputer)

[Get-UserLockCommand](/userlock/docs/build-with-userlock/userlock-powershell/cmdlet-help/get-userlockcommand#get-userlockcommand)
