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.

This is an Experimental feature which is subject to slight changes.

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.

        Required?                    true
        Position?                    0
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

- 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.

        Required?                    false
        Position?                    1
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

- Id <uint>
The ID of a Azure Virtual Desktop Workspace for which to update the information.

        Required?                    true
        Position?                    0
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

- InputObject < AVDWorkspace >
An object representing the Azure Virtual Desktop Workspace to update.

To obtain the object, use the Get-RASAVDWorkpsace command.

        Required?                    true
        Position?                    0
        Default value                
        Accept pipeline input?       true (ByValue)
        Accept wildcard characters?  false

- FriendlyName <string>
Friendly name of Azure Virtual Desktop Workspace.

        Required?                    false
        Position?                    named
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

- Description <string>
Description of Azure Virtual Desktop Workspace.

        Required?                    false
        Position?                    named
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

- Enable <bool>
Enables or disables the Azure Virtual Desktop Workspace in site.

        Required?                    false
        Position?                    named
        Default value                
        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 documentation. 

INPUTS

AVDWorkspace

OUTPUTS

-none-

EXAMPLES


---------- EXAMPLE 1 ----------

Set-RASAVDWorkspace -Name "My AVDWorkspace" -SiteId 1 -Description "My Description"

Modifies the description of the Azure Virtual Desktop Workspace specified by name from the site with ID 1.
---------- EXAMPLE 2 ----------

Set-RASAVDWorkspace -Id 10 -Description "My Description"

Modifies the description of the Azure Virtual Desktop Workspace specified by ID.
---------- EXAMPLE 3 ----------

Get-RASAVDWorkspace -Id 10 | Set-RASAVDWorkspace -Description "My Description"

Modifies the description of the Azure Virtual Desktop Workspace represented by the object obtained from the pipeline output.

RELATED LINKS