• View Communities
    • Citrix Developer Network
      The place for unfiltered straight talk on Citrix products. Blogs, code downloads, best practices, APIs, and more can all be found here.
    • Citrix Ready Community Verified
      Does it work with Citrix? Application compatibility questions are a thing of the past with the new Citrix Community Verified site.
    • Blogs
      Learn the latest from the Citrix employees who are building application delivery infrastructure technologies.
    • Blogosphere
      The Citrix Blogosphere is a window into the thousands of conversations taking place about Citrix and Application Delivery.
  •  Sign In
XenDesktop

Content for: vdi


Related Labels: xd4, xendesktop_powershell_api, xendesktop_sdk, autocad, xendesktop, desktop_virtualization, dwa, customer_of_the_week

1

Adding a user to an existing desktop group
command adds users in all groups whose names match "GroupName" to an existing desktop group. # get all the groups whose name matches 'GroupName' (should be just one) # Note could also be written as: # $grp = GetXdDesktopGroup GroupName ...
Other labels: xendesktop powershell api, xendesktop sdk
Adding a virtual desktop to an existing PC or Blade based group
command adds a virtual desktop to an existing PC or Bladebased desktop group. # get all the groups whose name starts with 'test' (should be just one) $grp = GetXdDesktopGroup test $dsk = NewXdVirtualDesktop machine3 $grp.Desktops.Add($dsk) SetXdDesktopGroup $grp
Other labels: xendesktop powershell api, xendesktop sdk
Adding a virtual desktop to an existing VM-based desktop group
command adds a new virtual desktop, hosted by a VM, to an existing VMbased desktop group.   Before adding a VM to the group, you must create a mapping between the VMs host ID and Active Directory ID. To do ...
Other labels: xendesktop powershell api, xendesktop sdk
Creating a new VM-based desktop group
command creates a new VMbased desktop group, "testgrp", containing three machines, and published to all domain users. $usr = NewXdUser 'domain users' group $cred = GetCredential 'root' $hs = NewXdHostingServer '192.168.100.200' $cred $machineName= 'machine1','machine2','machine3 ...
Other labels: xendesktop powershell api, xendesktop sdk
Logging off a user from all current sessions, after sending a warning message
command displays a warning message to all users whose names start with "fred" before logging them off. Note that in this example there is specified time period (10 seconds) before logoff occurs. GetXdVirtualDesktop where ResumeXdVirtualDesktop If the VMs were shut ...
Other labels: xendesktop powershell api, xendesktop sdk
XenDesktop Customer of the Week
XenDesktop Enables Collaborative AutoCAD Development DWA, located in Bodegraven in the Netherlands, is an installation and energy consulting firm that supports projects in the area of environmental awareness, sustainable construction and energy efficiency. \\ Challenge: "Our management was searching for a way to realize a new ...
Other labels: xendesktop, xd4, customer of the week, desktop virtualization, dwa, autocad

1