7.6 install with powershell series together with link to the article and command examples.
How to check installed XenDesktop version ?
1234 | #Get–BrokerController Get–BrokerController |select DNSName, ControllerVersion# |
How to display XenDesktop site configuration ?
12345 | #Get–XDSiteorGet–ConfigSite# |
How to add/remove delivery controller ?
123456789101112 | #For more info see:#XenDesktop 7.6 install with powershell Part 1 – Figure 14 # -AdminAddress – controller we will connect to# -ControllerName – controller we will add/remove #Add new controller to the siteAdd–XDController –AdminAddress XD001 –ControllerName XD002 #Remove controller from the siteRemove–XDController –AdminAddress XD001 –ControllerName XD002# |
How to display/modify licensing details ?
123456789101112131415 | #For more info see:#XenDesktop 7.6 install with powershell Part 1 – Figure 7,8,9 # Display licensing detailsGet–ConfigSite # Configure new settings for product code, edition and licensing modelSet–ConfigSite –LicensingModel Concurrent –ProductCode MPS –ProductEdition ENT # Configure License server name and portSet–XDLicensing –LicenseServerAddress DC01 –LicenseServerPort 27001 # Display licensing optionsGet–ConfigLicensingModel # |
How to display/modify product version and edition ?
123456789101112 | # Configure new settings for product code, edition and licensing modelSet–ConfigSite –ProductCode MPS –ProductEdition ENT # Display production optionsGet–ConfigProduct # Display product versions Get–ConfigProductVersion # Display product editionsGet–ConfigProductEdition#来源: <http://blog.citrix24.com/xendesktop-7-6-install-with-powershell-cheat-sheet/> |
来自为知笔记(Wiz)