Set-RASAVDWorkspace
NAME
Set-RASAVDWorkspace
SYNOPSIS
Modifies an Azure Virtual Desktop Workspace.
SYNTAX
Set-RASAVDWorkspace [-Id] <uint> [-Description <string>] [-Enable <bool>] [-FriendlyName <string>] [<CommonParameters>]
Set-RASAVDWorkspace [-InputObject] <AVDWorkspace> [-Description <string>] [-Enable <bool>] [-FriendlyName <string>] [<CommonParameters>]
Set-RASAVDWorkspace [-Name] <string> [[-SiteId] <uint>] [-Description <string>] [-Enable <bool>] [-FriendlyName <string>] [<CommonParameters>]
DESCRIPTION
Modifies the specified Azure Virtual Desktop Workspace from within the specified site.
PARAMETERS
-Name <string> The name of the Azure Virtual Desktop Workspace for which to update the information.
This must be the actual Azure Virtual Desktop Workspace name.
-SiteId <uint> Site ID from which to update the Azure Virtual Desktop Workspace.
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 update the information.
-InputObject <AVDWorkspace> An object representing the Azure Virtual Desktop Workspace to update.
To obtain the object, use the Get-RASAVDWorkpsace command.
-FriendlyName <string> Friendly name of Azure Virtual Desktop Workspace.
-Description <string> Description of Azure Virtual Desktop Workspace.
-Enable <bool> Enables or disables the Azure Virtual Desktop Workspace in site.
<CommonParameters>
INPUTS
OUTPUTS
-none-
EXAMPLES
---------- EXAMPLE 1 ----------
Set-RASAVDWorkspace -Name "My AVDWorkspace" -SiteId 1 -Description "My Description"
Modifies the description of the AVD Workspace specified by name from the site with ID 1. ---------- EXAMPLE 2 ----------
Set-RASAVDWorkspace -Id 10 -Description "My Description"
Modifies the description of the AVD Workspace specified by ID. ---------- EXAMPLE 3 ----------
Get-RASAVDWorkspace -Id 10 | Set-RASAVDWorkspace -Description "My Description"
Modifies the description of the AVD Workspace represented by the object obtained from the pipeline output.
RELATED LINKS
Last updated