Adding a virtual desktop to an existing PC or Blade based group
This command adds a virtual desktop to an existing PC - or Blade-based desktop group.
# get all the groups whose name starts with 'test' (should be just one) $grp = Get-XdDesktopGroup test* $dsk = New-XdVirtualDesktop machine3 $grp.Desktops.Add($dsk) Set-XdDesktopGroup $grp
Add Comment