Citrix Provisioning

Create Hybrid Azure AD joined catalogs

You can create a Hybrid Azure AD joined catalog using one of the following:

  • The Citrix Virtual Desktops Setup Wizard in Citrix Provisioning Console.
  • Studio UI or PowerShell commands.

This article describes how to create a Hybrid Azure AD joined catalog using the two different ways.

Key Steps

  1. Set up a Hybrid Azure AD environment.
  2. Set up Citrix Provisioning server.
  3. Join your farm with Citrix Cloud or Citrix Virtual Apps and Desktops site: when using the Studio UI or PowerShell.
  4. Create a master target device.
  5. Run the Imaging Wizard to create a vDisk.
  6. Create a Hybrid Azure AD joined catalog.

Set up Hybrid Azure AD environment

Set up Hybrid Azure AD and enable Microsoft Entra Connect Sync on the Domain Controller. For information, see Configure Microsoft Entra hybrid join.

Set up Citrix Provisioning

To set up Citrix Provisioning, begin by configuring your provisioning server and other infrastructure. See Install Citrix Provisioning software components.

Join your farm with Citrix Cloud or Citrix Virtual Apps and Desktops site

If you want to create a Hybrid Azure AD joined catalog using the Studio UI or PowerShell, then run the Configuration Wizard to join the Citrix Provisioning servers in a farm to Citrix Cloud or Citrix Virtual Apps and Desktops site.

See Join Citrix Cloud or Citrix Virtual Apps and Desktops site.

Create a master target device

  1. Create a master target device.
  2. Run the command dsregcmd /leave to leave the master target device from Hybrid Azure AD joined.

Run Imaging Wizard to create a vDisk

Use the Imaging Wizard to create the vDisk from the master target device. For more information, see Using the Imaging Wizard to create a virtual disk.

While running the Image Wizard to create a vDisk, select Prepare for Hybrid Azure AD join in the Edit Optimization Settings dialog if you want to create a Hybrid Azure AD joined catalog.

Prepare for Hybrid Azure AD join

Create a Hybrid Azure AD joined catalog

You can create a Citrix Provisioning Hybrid Azure AD joined catalog using one of the following:

  • The Citrix Virtual Desktops Setup Wizard in Citrix Provisioning Console.
  • MCS provisioning (Studio UI or PowerShell commands).

Using Citrix Virtual Desktops Setup Wizard

  1. For information on how to create target devices using Citrix Virtual Desktops Setup Wizard, see Deploying virtual desktops to VMs using the Citrix Virtual Apps and Desktops Setup Wizard.
  2. After the target devices are created, see the Citrix Provisioning catalog on the Full configuration interface.
  3. Complete creating delivery groups.
  4. After approximately 90 minutes, locate the delivery group in the Delivery Group list, and check the Details tab. When the target devices complete Hybrid Azure AD join, the value of the Unregistered Machines must be zero.

Note:

The joining time can vary. However, the target devices must join within 90 minutes.

Studio provisioning

You can use the Studio UI or PowerShell commands to create a Citrix Provisioning Hybrid Azure AD joined catalog. If you use Studio provisioning, then target devices join Hybrid Azure AD immediately.

Currently, the following hypervisors are supported:

Hypervisor CVAD release required Supported Citrix Provisioning version
Azure 2311 2311 and later

Note:

Currently, you can create the Citrix Provisioning Hybrid Azure AD joined catalog in Azure environments using only the PowerShell commands.

Using PowerShell

Do the following steps to create the catalog using PowerShell commands:

  1. Create Hybrid Azure AD Identity Pool using New-AcctIdentityPool command.

    Note:

    When creating the identity pool, make sure the specified Domain and Organizational Unit (OU) are the same as the ones you created when setting up the Hybrid Azure AD environment.

  2. Create AD Accounts using the New-AcctADAccount command.
  3. Set userCertificate for AD Accounts using Set-AcctAdAccountUserCert command.
  4. Create a provisioning scheme using the New-ProvScheme command.
  5. Create a broker catalog using the New-BrokerCatalog command.
  6. You can add VMs to the catalog using Full Configuration interface > Machine Catalogs. Alternatively, you can use the PowerShell command New-ProvVmNew-BrokerMachine.

Example: This is a sample script for the same enhancement used for Citrix Provisioning on Azure.

asnp citrix*
# General variable settings
$ipName = "ip-ex"
$domainPrefix = "abcdef"
$domainExtension = "com"
$ou = "mixxxx-haad"
$username = "username"
$password = "password"
# ProvScheme configurations
$provSchemeName = "haad-ex"
$hostingUnit = "hosting unit"
$resourceGroup= "mixxxx"
$machineProfile = "XDHyp:\HostingUnits\$hostingUnit\machineprofile.folder\$resourceGroup.resourcegroup\mixxxx -standard.templatespec\v1.templatespecversion"
$serviceOffering = "XDHyp:\HostingUnits\$hostingUnit\serviceoffering.folder\Standard_D2s_v3.serviceoffering"
$networkMapping = @{"0"=“XDHyp:\HostingUnits\$hostingUnit\virtualprivatecloud.folder\$resourceGroup.resourcegroup\mixxxx-vnet.virtualprivatecloud\default.network"}
# PVS settings
$pvsFarmName = "mixxxx-farm"
$pvsSiteName = "mixxxx-site"
$pvsDiskName = "pvs-vda-haad"
# Basic PVS objects
$pvsSite = Get-HypPvsSite -SiteName $pvsSiteName -FarmName $pvsFarmName
$vDisk = Get-HypPvsDiskInfo -SiteId $pvsSite.SiteId | ? { $_.DiskLocatorName -eq "$pvsDiskName" }
$customProperties = @"
<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Property xsi:type="StringProperty" Name="PersistWBC" Value="True" />
<Property xsi:type="StringProperty" Name="ResourceGroups" Value="$resourceGroup" />
</CustomProperties>
"@
# 1. Create a IdentityPool
New-AcctIdentityPool `
  -IdentityPoolName $ipName `
  -IdentityType HybridAzureAD `
  -NamingScheme "$($provSchemeName)##" `
  -NamingSchemeType Numeric `
  -Domain "$domainPrefix.$domainExtension" `
  -OU "OU=$ou,DC=$domainPrefix,DC=$domainExtension"
# 2. Create ADAccounts
$password = ConvertTo-SecureString $password -AsPlainText -Force
New-AcctADAccount `
  -IdentityPoolName $ipName `
  -Count 1 `
  -StartCount 1 `
  -ADUserName $username `
  -ADPassword $password `
  -OutVariable result
# 3. Set ADAccount userCertificate
Set-AcctAdAccountUserCert `
  -IdentityPoolName $ipName `
  -ADUserName "$domainPrefix\$username" `
  -ADPassword $password `
  -All
# 4. Create a ProvScheme
$ps = New-ProvScheme -CleanOnBoot `
  -ProvisioningSchemeName $provSchemeName `
  -HostingUnitName $hostingUnit `
  -IdentityPoolName $ipName `
  -MachineProfile $machineProfile `
  -ServiceOffering $serviceOffering `
  -NetworkMapping $networkMapping `
  -PVSSite $pvsSite.SiteId `
  -PVSvDisk $vDisk.DiskLocatorId `
  -ProvisioningSchemeType PVS `
  -UseWriteBackCache -WriteBackCacheDiskSize 127 -WriteBackCacheMemorySize 256 `
  -CustomProperties $customProperties
# 5. Create a Broker Catalog
New-BrokerCatalog `
  -AllocationType Random `
  -Name $provSchemeName `
  -PersistUserChanges Discard `
  -ProvisioningType "MCS" `
  -SessionSupport SingleSession `
  -ProvisioningSchemeId $ps.ProvisioningSchemeUid
  <!--NeedCopy-->
Create Hybrid Azure AD joined catalogs