Get-RASAVDWorkspace
Retrieves information about an Azure Virtual Desktop Workspace.
Get-RASAVDWorkspace [[-Id] <uint>] [<CommonParameters>]
Get-RASAVDWorkspace [[-Name] <string>] [[-SiteId] <uint>] [<CommonParameters>]
Retrieves information about the specified Azure Virtual Desktop Workspace or all Azure Virtual Desktop Workspaces within a site.
-Name <string> The name of the Azure Virtual Desktop Workspace for which to retrieve the information.
This must be the actual Azure Virtual Desktop Workspace name.
-SiteId <uint> Site ID from which to retrieve the Azure Virtual Desktop Workspace information.
If the parameter is omitted, the Licensing Server site ID will be used.
-Id <uint> The ID of a Azure Virtual Desktop Workspace for which to retrieve the information.
<CommonParameters>
-none-
---------- EXAMPLE 1 ----------
Get-RASAVDWorkspace -SiteId 1
Retrieves information about all the AVD Workspaces found withing the site with ID 1. ---------- EXAMPLE 2 ----------
Get-RASAVDWorkspace "My AVDWorkspace" -SiteId 1 | Format-List
Retrieves information about the AVD Workspace specified by name from the site with ID 1.
The Format-List cmdlet formats the display output to include all available properties. ---------- EXAMPLE 3 ----------
Get-RASAVDWorkspace -Id 10
Retrieves information about the AVD Workspace specified by ID from the Licensing Server site.
To retrieve the info from a specific site, specify the -SiteId parameter.