# Get-RASAdminAccount

### NAME

Get-RASAdminAccount\ <br>

### SYNOPSIS

Retrieves information about one or multiple Parallels RAS administrator accounts.\ <br>

### SYNTAX

Get-RASAdminAccount \[\[-[Id](https://download.parallels.com/ras/v19/docs/en_US/Parallels-RAS-v19-PowerShell-Guide/RASAdmin/cmdlets/Get-RASAdminAccount.html#Id)] *\<uint>*] \[*<*[*CommonParameters*](https://download.parallels.com/ras/v19/docs/en_US/Parallels-RAS-v19-PowerShell-Guide/RASAdmin/cmdlets/Get-RASAdminAccount.html#CommonParameters)*>*]\
\
Get-RASAdminAccount \[\[-[Name](https://download.parallels.com/ras/v19/docs/en_US/Parallels-RAS-v19-PowerShell-Guide/RASAdmin/cmdlets/Get-RASAdminAccount.html#Name)] *\<string>*] \[*<*[*CommonParameters*](https://download.parallels.com/ras/v19/docs/en_US/Parallels-RAS-v19-PowerShell-Guide/RASAdmin/cmdlets/Get-RASAdminAccount.html#CommonParameters)*>*]\ <br>

### DESCRIPTION

Retrieves information about one or multiple Parallels RAS administrator accounts.\
\
The cmdlet returns an array of objects of type RASAdminAccount.\
\
To see the complete list of object properties, use the Format-List cmdlet (see examples).\ <br>

### PARAMETERS

\
-**Name \<string>**\
The username of a Parallels RAS administrator account for which to retrieve the information.\ <br>

```
        Required?                    false
```

```
        Position?                    0
```

```
        Default value                
```

```
        Accept pipeline input?       false
```

```
        Accept wildcard characters?  false
```

\
-**Id \<uint>**\
The ID of an administrator account for which to retrieve the information.\ <br>

```
        Required?                    false
```

```
        Position?                    0
```

```
        Default value                0
```

```
        Accept pipeline input?       false
```

```
        Accept wildcard characters?  false
```

\
\<CommonParameters>

```
        This cmdlet supports the common parameters: Verbose, Debug,
```

```
        ErrorAction, ErrorVariable, WarningAction, WarningVariable,
```

```
        OutBuffer, PipelineVariable, and OutVariable. For more information, see 
```

```
        about_CommonParameters . 
```

<br>

### INPUTS

-none-

### OUTPUTS

[AdminAccount](https://download.parallels.com/ras/v19/docs/en_US/Parallels-RAS-v19-PowerShell-Guide/RASAdmin/types/AdminAccount.html)

### EXAMPLES

\
\&#xNAN;**---------- EXAMPLE 1 ----------**\
\
Get-RASAdminAccount | Format-List\
\
Retrieves the list of all available Parallels RAS administrator accounts.\
\
The Format-List cmdlet formats the display output to include all available settings for each administrator.\
\&#xNAN;**---------- EXAMPLE 2 ----------**\
\
Get-RASAdminAccount "username\@dom"\
\
Retrieves information about an administrator specified by username.\
\&#xNAN;**---------- EXAMPLE 3 ----------**\
\
Get-RASAdminAccount -Id 1\
\
Retrieves information about an administrator specified by ID.
