-
-
Creating a PvD Desktop
-
-
-
-
-
-
-
-
-
-
-
-
-
-
This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
Creating a PvD Desktop
This document provides an example of a script that creates a Delivery Group containing Personal vDisk (PvD) desktops.
Before you begin, make sure you follow the steps detailed in the Getting started guide, which shows you how to use Studio to perform the operation you want to script and collect the log of SDK operations that Studio made to perform the task. This output can then be customized to produce a script for automating the task.
!!! tip “Note” To ensure you always get the latest enhancements and fixes, Citrix recommends you follow the procedure described in this document, rather than copying and pasting the example script.
Understand the script
The following section explains what each part of the script produced by Studio is doing. This will help you with the customization of your own script. Line numbers and line breaks have been added to the script for readability.
1. Start-LogHighLevelOperation -AdminAddress 'test-ddc.mydomain.com:80'
-Source 'Studio' -StartTime 31/07/2013 10:08:58 -Text 'Create Delivery Group `'Win7 PvD
Desktops`''
<!--NeedCopy-->
Starts a logged operation and returns a log ID which is supplied to subsequent operations to associate them with the wider task.
2. New-BrokerDesktopGroup -AdminAddress 'test-ddc.mydomain.com:80' -ColorDepth 'TwentyFourBit' -DeliveryType 'DesktopsOnly' -DesktopKind 'Private' -InMaintenanceMode
$False -IsRemotePC $False -LoggingId 846f2d42-a994-4bce-ab58-be05c8d73b99 -MinimumFunctionalLevel 'L7' -Name 'Win7 PvD Desktops' -OffPeakBufferSizePercent 10 -PeakBufferSizePercent 10 -PublishedName 'Win7 PvD Desktops' -Scope @() -SecureIcaRequired \$False -SessionSupport 'SingleSession -ShutdownDesktopsAfterUse \$False -TimeZone 'GMT Standard Time'
<!--NeedCopy-->
Creates a new Delivery Group with options collected by the Studio wizard.
3. Add-BrokerMachinesToDesktopGroup -AdminAddress 'test-ddc.mydomain.com:80' -Catalog 'win7-pvd' -Count 2 -DesktopGroup 'Win7 PvD Desktops' -LoggingId 846f2d42-a994-4bce-ab58-be05c8d73b99
<!--NeedCopy-->
Adds the number of machines requested from the nominated catalog to the new Delivery Group.
4. Set-Variable -Name 'brokerUsers' -Value @('S-1-5-21-3291547628-200264090-930806513-1104','S-1-5-21-3291547628-200264090-930806513-1105') Get-BrokerUser -AdminAddress 'test-ddc.mydomain.com:80' -Filter {(SID -in $brokerUsers)} -MaxRecordCount 2147483647 Remove-Variable -Name 'brokerUsers' New-BrokerUser -AdminAddress 'test-ddc.mydomain.com:80' -Name
'MYDOMAIN\user1' New-BrokerUser -AdminAddress 'test-ddc.mydomain.com:80' -Name
'MYDOMAIN\user2'
<!--NeedCopy-->
The above commands are not required, Studio is verifying users.
5. Test-BrokerAssignmentPolicyRuleNameAvailable -AdminAddress 'test-ddc.mydomain.com:80' -Name @('Win7 PvD Desktops')
<!--NeedCopy-->
Studio checks that the policy assignment name is available to use.
6. New-BrokerAssignmentPolicyRule -AdminAddress 'test-ddc.mydomain.com:80' -DesktopGroupUid 41 -Enabled $True -IncludedUserFilterEnabled $False -LoggingId 846f2d42-a994-4bce-ab58-be05c8d73b99 -MaxDesktops 1 -Name 'Win7 PvD Desktops'
<!--NeedCopy-->
Create the new policy assignment rule for the Delivery Group. No users are specified here so all control is through the access policy rule.
7. Set-Variable -Name 'brokerUsers' -Value @('S-1-5-21-3291547628-200264090-930806513-1104','S-1-5-21-3291547628-200264090-930806513-1105')
Get-BrokerUser -AdminAddress 'test-ddc.mydomain.com:80' -Filter {(SID -in \$brokerUsers)} -MaxRecordCount 2147483647
Remove-Variable -Name 'brokerUsers'
New-BrokerUser -AdminAddress 'test-ddc.mydomain.com:80' -Name 'MYDOMAIN\\user1'
New-BrokerUser -AdminAddress 'test-ddc.mydomain.com:80' -Name 'MYDOMAIN\\user2'
<!--NeedCopy-->
The above commands are not required, Studio is performing further checks.
8. Test-BrokerAccessPolicyRuleNameAvailable -AdminAddress 'test-ddc.mydomain.com:80' -Name @('Win7 PvD Desktops\_Direct')
<!--NeedCopy-->
Studio tests that the access policy rule name is available to use.
9. New-BrokerAccessPolicyRule -AdminAddress 'test-ddc.mydomain.com:80' -AllowedConnections 'NotViaAG' -AllowedProtocols @('HDX','RDP') -AllowRestart $True -DesktopGroupUid
41 -Enabled \$True -IncludedSmartAccessFilterEnabled $True -IncludedUserFilterEnabled $True -IncludedUsers @('MYDOMAIN\user1','MYDOMAIN\user2') -LoggingId 846f2d42-a994-4bce-ab58-be05c8d73b99 -Name 'Win7 PvD Desktops_Direct'
<!--NeedCopy-->
Creates the access policy rule for the new desktop for non-NetScaler Gateway connections.
10. Test-BrokerAccessPolicyRuleNameAvailable -AdminAddress 'test-ddc.mydomain.com:80' -Name @('Win7 PvD Desktops_AG') New-BrokerAccessPolicyRule -AdminAddress 'test-ddc.mydomain.com:80' -AllowedConnections 'ViaAG' -AllowedProtocols @('HDX','RDP') -AllowRestart $True -DesktopGroupUid 41 -Enabled $True -IncludedSmartAccessFilterEnabled $True -IncludedSmartAccessTags @() -IncludedUserFilterEnabled $True -IncludedUsers
@('MYDOMAIN\user1','MYDOMAIN\user2') -LoggingId 846f2d42-a994-4bce-ab58-be05c8d73b99 -Name 'Win7 PvDDesktops_AG'
<!--NeedCopy-->
Studio repeats this process for NetScaler Gateway connections.
11. Test-BrokerPowerTimeSchemeNameAvailable -AdminAddress 'test-ddc.mydomain.com:80' -Name @('Win7 PvD Desktops_Weekdays') New-BrokerPowerTimeScheme -AdminAddress 'test-ddc.mydomain.com:80' -DaysOfWeek 'Weekdays' -DesktopGroupUid 41 -DisplayName 'Weekdays' -LoggingId 846f2d42-a994-4bce-ab58-be05c8d73b99 -Name 'Win7 PvD Desktops_Weekdays' -PeakHours @($False,$False,$False,$False,$False,$False,$False,$True,$True,$True,$True,$True,$True,$True,$True, $True,$True,$True,$True,$False,$False,$False,$False,$False) -PoolSize @(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0) Test-BrokerPowerTimeSchemeNameAvailable -AdminAddress 'test-ddc.mydomain.com:80' -Name @('Win7 PvD Desktops_Weekend') New-BrokerPowerTimeScheme -AdminAddress 'test-ddc.mydomain.com:80' -DaysOfWeek 'Weekend' -DesktopGroupUid 41 -DisplayName 'Weekend' -LoggingId 846f2d42-a994-4bce-ab58-be05c8d73b99 -Name 'Win7 PvD Desktops_Weekend' -PeakHours @($False,$False,$False,$False,$False,$False,$False,$True,$True,$True,$True,$True,$True,$True,$True,$True,$True,$True,$True,$False,$False,$False,$False,$False) -PoolSize @(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
<!--NeedCopy-->
Studio checks that the names for the (optional) weekday and weekend power schemes are available, and adds these.
12. Stop-LogHighLevelOperation -AdminAddress 'test-ddc.mydomain.com:80' -EndTime 31/07/2013 10:09:05 -HighLevelOperationId '846f2d42-a994-4bce-ab58-be05c8d73b99' -IsSuccessful $True
<!--NeedCopy-->
Stops the logged operation begun in step 1 and indicates it was successful.
Customize the script
This section shows how to convert and adapt the Studio output into a script that is more consumable.
The script creates a Delivery Group containing PvD desktops. The catalog specified in the parameters must exist already and be populated appropriately (with an allocation type of static and a PvD disk). The script is designed to be run from a Powershell command line logged on as a Citrix administrator. No checks are made for permissions; the script will fail if the user does not have the appropriate permissions.
<\#
Sample usage:
.\CreatePvDGroup.ps1 `
-GroupName "Win7 PvD Desktops" `
-SrcCatalog "win7-pvd" `
-NumDesktops 2 `
-Users @('mydomain\user1','mydomain\user2') `
\#>
Param(
[Parameter(Mandatory=\$true)\] \[string\] \$GroupName,
\[Parameter(Mandatory=\$true)\] \[string\] \$SrcCatalog,
\[Parameter(Mandatory=\$true)\] \[int\] \$NumDesktops,
\[Parameter(Mandatory=\$true)\] \[array\] \$Users
\[string\] \$AdminAddress
)
<!--NeedCopy-->
The table explains the parameters used in the script.
Parameter | Description |
---|---|
SrcCatalog | The name of the catalog to be used to create the PvD desktop. Create the catalog by specifying an allocation type of static. Machines must also have PvD disks. |
GroupName | The name of the catalog to be used to create the PvD desktop. Create the catalog by specifying an allocation type of static. Machines must also have PvD disks. |
NumDesktops | The number of machines to add to the PvD desktop group. If insufficient machines are available, as many as possible are added. |
Users | Which users can access the group. This is a list of users or groups; for example, @(‘mydomain\Domain Users’) or @(‘mydomain\user1’,’mydomain\user2’) |
Set-HypAdminConnection -AdminAddress $adminAddress
<!--NeedCopy-->
Specify the hypervisor admin connection to use. Removes the need for the -AdminAddress for some of the commands.
$peakPoolSize = 2
$weekendPoolSizeByHour = new-object int[] 24
$weekdayPoolSizeByHour = new-object int[] 24
9..17 | %{ $weekdayPoolSizeByHour[$_] = $peakPoolSize }
$peakHours = (0..23 | %{ $_ -ge 9 -and $_ -le 17 })
<!--NeedCopy-->
This creates 24 element arrays with a 1 or a 0 in each entry. Use these to specify when peak hours are for the power schedules for the Delivery Groups. Elements 9 to 17 (hours starting 09:00 to 17:00) for weekdays are set to 1, others are left at 0. Two unassigned machines are powered up during peak times, if available.
$logId = Start-LogHighLevelOperation` -Text "Create PvD desktop group" `
-Source "Create PvD Desktop Group Script"
<!--NeedCopy-->
Start a new logged operation. This returns a log ID which is passed into subsequent operations to associate them with the create group task.
$grp = New-BrokerDesktopGroup `
-DesktopKind 'Private' `
-DeliveryType 'DesktopsOnly' `
-LoggingId $logId.Id `
-Name $GroupName `
-PublishedName $GroupName `
-SessionSupport 'SingleSession' `
-ShutdownDesktopsAfterUse $False
$count = Add-BrokerMachinesToDesktopGroup `
-Catalog $SrcCatalog `
-Count $NumDesktops `
-DesktopGroup \$GroupName `
-LoggingId $logId.Id
"$count machines added to the PvD desktop group"
<!--NeedCopy-->
Create the new Delivery Group, delivering private desktops. The catalog used must have been populated with suitable machines (permanent with a PvD disk). PublishedName is the name seen by end users; the following uses the same name as the group name.
New-BrokerAssignmentPolicyRule \`
-DesktopGroupUid \$grp.Uid \`
-IncludedUserFilterEnabled \$False \`
-LoggingId \$logId.Id \`
-MaxDesktops 1 \`
-Name (\$GroupName + '\_AssignRule') \`
| Out-Null
<!--NeedCopy-->
Assigned desktops need an assignment policy. Disable user filter so that access is controlled entirely by access policy rules.
New-BrokerAccessPolicyRule `
-AllowedConnections 'NotViaAG' `
-AllowedProtocols @('HDX','RDP') `
-AllowRestart $True `
-DesktopGroupUid $grp.Uid `
-IncludedSmartAccessFilterEnabled $True `
-IncludedUserFilterEnabled $True `
-IncludedUsers $Users `
-LoggingId $logId.Id `
-Name ($GroupName + '_Direct') `
| Out-Null
New-BrokerAccessPolicyRule `
-AllowedConnections 'ViaAG' `
-AllowedProtocols @('HDX','RDP') `
-AllowRestart $True `
-DesktopGroupUid $grp.Uid `
-IncludedSmartAccessFilterEnabled $True `
-IncludedSmartAccessTags @() `
-IncludedUserFilterEnabled $True `
-IncludedUsers $Users `
-LoggingId $logId.Id `
-Name ($GroupName + '_AG') `
| Out-Null
<!--NeedCopy-->
Specify any access restrictions: allow direct access using NetScaler Gateway, using HDX & RDP protocols. The user can request the desktop be restarted, if necessary.
New-BrokerPowerTimeScheme `
-DaysOfWeek 'Weekdays' `
-DesktopGroupUid $grp.Uid `
-DisplayName 'Weekdays' `
-LoggingId $logId.Id `
-Name ($GroupName + '_Weekdays') `
-PeakHours $peakHours `
-PoolSize $weekdayPoolSizeByHour `
| Out-Null
New-BrokerPowerTimeScheme `
-DaysOfWeek 'Weekend' `
-DesktopGroupUid $grp.Uid `
-DisplayName 'Weekend' `
-LoggingId $logId.Id `
-Name ($GroupName + '_Weekend') `
-PeakHours $peakHours `
-PoolSize $weekendPoolSizeByHour `
| Out-Null
<!--NeedCopy-->
Optional: Specify power schedules.
Stop-LogHighLevelOperation -HighLevelOperationId
$logId.Id -IsSuccessful $True
<!--NeedCopy-->
Stop configuration logging and indicate if successful or not.
Share
Share
In this article
This Preview product documentation is Citrix Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Citrix Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Citrix product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.