# Get-RASSite

### NAME

Get-RASSite\ <br>

### SYNOPSIS

Retrieves information about one or multiple sites.\ <br>

### SYNTAX

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

### DESCRIPTION

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

### PARAMETERS

\
-**Name \<string>**\
The name of the site 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 the site from 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

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

### EXAMPLES

\
\&#xNAN;**---------- EXAMPLE 1 ----------**\
\
Get-RASSite | Format-List\
\
Retrieves the list of all available sites.\
\
The Format-List cmdlet formats the display output to include all available site properties.\
\&#xNAN;**---------- EXAMPLE 2 ----------**\
\
Get-RASSite "My-Site"\
\
Retrieves information about the site specified by name.\
\&#xNAN;**---------- EXAMPLE 3 ----------**\
\
Get-RASSite -Id 1\
\
Retrieves information about the site specified by ID.<br>
