管理 Microsoft Azure 目录
注意:
自 2023 年 7 月起,Microsoft 已将 Azure Active Directory (Azure AD) 重命名为 Microsoft Entra ID。在本文档中,任何提及 Azure Active Directory、Azure AD 或 AAD 的内容现在均指 Microsoft Entra ID。
管理计算机目录介绍了用于管理计算机目录的向导。以下信息涵盖了特定于 Microsoft Azure Resource Manager 云环境的详细信息。
注意:
在管理 Microsoft Azure 目录之前,您需要完成创建 Microsoft Azure 目录。请参阅创建 Microsoft Azure 目录。
关闭 VM 时将存储类型更改为较低的层
关闭 VM 时,您可以通过将托管磁盘的存储类型切换到较低的层来节省存储成本。为此,请使用 StorageTypeAtShutdown
自定义属性。
关闭 VM 时,磁盘的存储类型更改为较低层(如 StorageTypeAtShutdown
自定义属性中所指定)。打开 VM 的电源后,存储类型将更改回原始类型(如 StorageType
自定义属性或 WBCDiskStorageType
自定义属性中所指定)。
重要:
在 VM 至少打开电源一次之前,磁盘不存在。因此,您无法在首次打开 VM 电源时更改存储类型。
要求
- 适用于托管磁盘。这意味着您将自定义属性
UseManagedDisks
设置为 true。 - 适用于具有永久操作系统磁盘的永久和非永久目录。这意味着您将自定义属性
persistOsDisk
设置为 true。 - 适用于具有永久 WBC 磁盘的非永久目录。这意味着您将自定义属性
persistWBC
设置为 true。
限制
- 根据 Microsoft 的说法,您每天只能更改两次磁盘类型。请参阅 Microsoft 文档。根据 Citrix 的说法,每当 VM 执行“启动”或“取消分配”操作时,就会进行
StorageType
更新。因此,请将每个 VM 的电源操作次数限制为每天两次。例如,早上执行一次电源操作以启动 VM,晚上执行一次电源操作以取消分配 VM。
将存储类型更改为较低的层
-
添加自定义属性
StorageTypeAtShutdown
,将值设置为 Standard_LRS (HDD),然后使用New-ProvScheme
创建目录。有关使用 PowerShell 创建目录的信息,请参阅 https://developer-docs.citrix.com/projects/citrix-virtual-apps-desktops-sdk/en/latest/creating-a-catalog/。注意:
如果
StorageTypeAtShutdown
除空值或 Standard_LRS (HDD) 之外还有其他任何值,操作将失败。创建永久目录时设置自定义属性的示例:
$customProperties='<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property xsi:type="StringProperty" Name="UseManagedDisks" Value="true" /> <Property xsi:type="StringProperty" Name="StorageType" Value="Premium_LRS" /> <Property xsi:type="StringProperty" Name="ResourceGroups" Value="" /> <Property xsi:type="StringProperty" Name="LicenseType" Value="Windows_Client" /> <Property xsi:type="StringProperty" Name="SchemaVersion" Value="2" /> <Property xsi:type="StringProperty" Name="OsType" Value="Windows" /> <Property xsi:type="StringProperty" Name="StorageTypeAtShutdown" Value="Standard_LRS" /> </CustomProperties>' <!--NeedCopy-->
创建非永久目录时设置自定义属性的示例:
$customProperties='<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property xsi:type="StringProperty" Name="UseManagedDisks" Value="true" /> <Property xsi:type="StringProperty" Name="StorageType" Value="Premium_LRS" /> <Property xsi:type="StringProperty" Name="WbcDiskStorageType" Value="Standard_SSD_LRS" /> <Property xsi:type="StringProperty" Name="ResourceGroups" Value="" /> <Property xsi:type="StringProperty" Name="LicenseType" Value="Windows_Client" /> <Property xsi:type="StringProperty" Name="SchemaVersion" Value="2" /> <Property xsi:type="StringProperty" Name="OsType" Value="Windows" /> <Property xsi:type="BooleanProperty" Name="persistWBC" Value=true /> <Property xsi:type="BooleanProperty" Name="persistOsDisk" Value=true /> <Property xsi:type="StringProperty" Name="StorageTypeAtShutdown" Value="Standard_LRS" /> </CustomProperties>' <!--NeedCopy-->
注意:
使用计算机配置文件时,自定义属性优先于在
MachineProfile
中定义的属性。 - 关闭 VM 并在 Azure 门户中检查 VM 的存储类型。磁盘的存储类型更改为较低的层,如
StorageTypeAtShutdown
自定义属性中所指定。 - 打开 VM。磁盘的存储类型切换回下面提及的存储类型:
- 操作系统磁盘的
StorageType
自定义属性 - 仅当您在
CustomProperties
中指定了 WBC 磁盘的WBCDiskStorageType
自定义属性时。否则,它会切换回StorageType
中提到的存储类型。
- 操作系统磁盘的
将 StorageTypeAtShutdown
应用到现有目录
使用 Set-ProvScheme
向现有目录中添加 VM。该功能适用于运行 Set-ProvScheme
后添加的新 VM。现有计算机不受影响。
将 VM 添加到现有目录时设置自定义属性的示例:
$customProperties='<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Property xsi:type="StringProperty" Name="UseManagedDisks" Value="true" />
<Property xsi:type="StringProperty" Name="StorageType" Value="Premium_LRS" />
<Property xsi:type="StringProperty" Name="WbcDiskStorageType" Value="Standard_SSD_LRS" />
<Property xsi:type="StringProperty" Name="ResourceGroups" Value="" />
<Property xsi:type="StringProperty" Name="LicenseType" Value="Windows_Client" />
<Property xsi:type="StringProperty" Name="SchemaVersion" Value="2" />
<Property xsi:type="StringProperty" Name="OsType" Value="Windows" />
<Property xsi:type="BooleanProperty" Name="persistWBC" Value=true />
<Property xsi:type="BooleanProperty" Name="persistOsDisk" Value=true />
<Property xsi:type="StringProperty" Name="StorageTypeAtShutdown" Value="Standard_LRS" />
</CustomProperties>'
$ProvScheme = Get-Provscheme -ProvisioningSchemeName $CatalogName
Set-ProvScheme -ProvisioningSchemeName $ProvScheme.ProvisioningSchemeName -CustomProperties $customProperties
<!--NeedCopy-->
关闭时将现有 VM 的存储类型更改为较低的层级
当 VM 关闭时,您可以通过将现有 VM 的存储类型更改为较低的层级来节省存储成本。为此,请使用 StorageTypeAtShutdown
自定义属性。
要在 VM 关闭时将目录中的现有计算机的存储类型更改为较低的层级,请执行以下操作:
- 打开 PowerShell 窗口。
- 运行
asnp citrix*
以加载 Citrix 特定的 PowerShell 模块。 - 运行
Get-Provscheme -ProvisioningSchemeName $CatalogName
。 -
更改自定义属性字符串。
$customProperties = '<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property xsi:type="StringProperty" Name="StorageTypeAtShutdown" Value="Standard_LRS" /> </CustomProperties>' <!--NeedCopy-->
-
更新现有目录的预配方案。该更新适用于运行
Set-ProvScheme
后添加的新 VM。Set-ProvScheme -ProvisioningSchemeName $CatalogName -CustomProperties $customProperties <!--NeedCopy-->
-
更新现有 VM 以启用
StorageTypeAtShutdown
。Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName $CatalogName -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
- 下次打开计算机电源时,计算机的
StorageTypeAtShutdown
属性会更新。存储类型在下次关闭时发生变化。 -
运行以下命令可查看目录中每个 VM 的
StorageTypeAtShutdown
值:Get-ProvVM -ProvisioningSchemeName <catalog-name> | foreach { $vmName = $_.VMName; $storageTypeAtShutdown = ($_.CustomVmData | ConvertFrom-Json).StorageTypeAtShutdown.DiskStorageAccountType; return New-Object psobject -Property @{ "VMName" = $vmName; "StorageTypeAtShutdown" = $storageTypeAtShutdown } } <!--NeedCopy-->
将预配的计算机更新为当前预配方案状态
Set-ProvScheme
命令更改了预配方案。但是,它不会影响现有计算机。可以使用 PowerShell 命令 Set-ProvVMUpdateTimeWindow
将当前的预配方案应用到现有的永久计算机或非永久计算机或者一组计算机。还可以为现有的预配了 MCS 的计算机的配置更新安排一个时段。在安排的时段内打开电源或重新启动都会对计算机应用安排的预配方案更新。目前,在 Azure 中,您可以更新 ServiceOffering
、MachineProfile
以及以下自定义属性:
StorageType
WBCDiskStorageType
IdentityDiskStorageType
LicenseType
DedicatedHostGroupId
PersistWBC
PersistOsDisk
PersistVm
注意:
- 在 Azure 环境中,只能使用托管磁盘更新目录的
StorageType
、WBCDiskStorageType
和IdentityDiskStorageType
自定义属性。- 如果您运行
Set-ProvVMUpdateTimeWindow
两次,最新的命令将生效。
可以更新以下对象:
- 单个 VM
- 与预配方案 ID 关联的特定 VM 或所有现有 VM 的列表
- 与预配方案名称(计算机目录名称)关联的特定 VM 或所有现有 VM 的列表
对预配方案做以下更改后,将在 Azure 中为永久目录重新创建 VM 实例:
- 更改
MachineProfile
- 删除
LicenseType
- 删除
DedicatedHostGroupId
注意:
现有计算机的操作系统磁盘及其所有数据保持原样,新的 VM 已连接到该磁盘。
在更新现有 VM 之前:
-
检查现有计算机的配置。例如,
Get-ProvScheme | select ProvisioningSchemeName, ProvisioningSchemeVersion <!--NeedCopy-->
-
更新预配方案。例如,
-
使用 VM 作为计算机配置文件输入:
Set-ProvScheme -ProvisioningSchemeName "my-catalog" -MachineProfile "XDHyp:\HostingUnits<hosting-unit>\machineprofile.folder<resource-group>.resourcegroup<virtual-machine>.vm" <!--NeedCopy-->
-
使用模板规范作为计算机配置文件输入:
Set-ProvScheme -ProvisioningSchemeName "my-catalog" -MachineProfile "XDHyp:\HostingUnits<hosting-unit>\machineprofile.folder<resource-group>.resourcegroup<template-spec>.templatespec<template-spec-version>.templatespecversion" -ServiceOffering "XDHyp:\HostingUnits<hosting-unit>\serviceoffering.folder<service-offering>.serviceoffering" <!--NeedCopy-->
-
仅提供服务:
Set-ProvScheme -ProvisioningSchemeName "my-catalog" -ServiceOffering "XDHyp:\HostingUnits<hosting-unit>\serviceoffering.folder<service-offering>.serviceoffering" <!--NeedCopy-->
-
-
检查 VM 的当前属性是否与当前的预配方案相匹配,以及 VM 上是否有任何待处理的更新操作。例如,
Get-ProvVM | select VMName, ProvisioningSchemeUpdateRequested, ProvisioningSchemeVersion <!--NeedCopy-->
还可以查找具有特定版本的计算机。例如,
Get-ProvVM -Filter "ProvisioningSchemeVersion -eq 1" | select VMName, ProvisioningSchemeVersion <!--NeedCopy-->
要请求在下次重新启动时应用现有计算机的更新,请执行以下操作:
-
运行以下命令以更新现有计算机并在下次重新启动时应用更新。
-
更新所有现有计算机。例如,
Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName my-catalog -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
-
更新特定计算机的列表。例如,
Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName my-catalog -VMName <List-Of-Vm-Names> -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
-
根据 Get-ProvVM 的输出更新计算机。例如,
Get-ProvVM -ProvisioningSchemeName "my-catalog" | Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName my-catalog -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
注意:
-
StartsNow
表示计划的开始时间为当前时间。 - 使用负数(例如 —1)的
DurationInMinutes
表示计划的时间范围没有上限。
-
-
查找已安排更新的计算机。例如,
Get-ProvVM -Filter "ProvisioningSchemeUpdateAfter" | select VMName, ProvisioningSchemeUpdateAfter <!--NeedCopy-->
-
请重新启动计算机。下次启动时,属性更改将应用到现有计算机。可以使用以下命令检查更新后的状态。例如,
Get-ProvVM | select VMName, ProvisioningSchemeUpdateRequested, ProvisioningSchemeVersion <!--NeedCopy-->
要安排 VM 下次在计划的时间范围内启动时更新到最新的预配设置,请执行以下操作:
-
运行以下命令:
-
使用开始时间为当前时间来安排更新
Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName my-catalog -VMName vm1 -StartsNow -DurationInMinutes 120 <!--NeedCopy-->
-
安排在周末更新
Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName “ my-catalog “ -VMName “vm1” -StartTimeInUTC “10/15/2022 9:00am” -DurationInMinutes (New –TimeSpan –Days 2).TotalMinutes <!--NeedCopy-->
注意:
-
VMName
是可选的。如果未指定,则安排对整个目录进行更新。 - 使用
StartsNow
代替StartTimeInUTC
来表示计划开始时间为当前时间。 -
DurationInMinutes
是可选的。默认值为 120 分钟。负数(例如 —1)表示计划的时间范围没有上限。
-
-
检查更新状态。
Get-ProvVM | select VMName, ProvisioningSchemeUpdateRequested, ProvisioningSchemeUpdateUntil, ProvisioningSchemeVersion <!--NeedCopy-->
-
打开 VM 的电源。如果您在安排的时段之后打开计算机电源,则不会应用配置更新。如果您在安排的时段内打开计算机电源,
-
如果计算机已关闭电源,并且
- 您未打开计算机电源,未应用配置更新
- 您打开了计算机电源,应用了配置更新
-
如果计算机已打开电源,并且
- 您未重新启动计算机,未应用配置更新
- 您重新启动了计算机,应用了配置更新
-
要取消配置更新,请执行以下操作:
也可以取消单个 VM、多个 VM 或整个目录的配置更新。要取消配置更新,请执行以下操作:
-
运行
Clear-ProvVMUpdateTimeWindow
。例如:-
要取消为单个 VM 安排的配置更新,请执行以下操作:
Clear-ProvVMUpdateTimeWindow -ProvisioningSchemeName “ my-catalog “ -VMName “vm1” <!--NeedCopy-->
-
要取消为多个 VM 安排的配置更新,请执行以下操作:
Clear-ProvVMUpdateTimeWindow -ProvisioningSchemeName "my-catalog" -VMName "vm1","vm2" <!--NeedCopy-->
注意:
VM 必须来自同一个目录。
-
更新各个 VM 的属性
您可以使用 PowerShell 命令 Set-ProvVM
更新永久 MCS 计算机目录中各个 VM 的属性。但是,更新不会立即应用。要应用更新,必须使用 PowerShell 命令 Set-ProvVMUpdateTimeWindow
设置时间范围。
此实现可以帮助您高效地管理各个 VM,而无需更新整个计算机目录。目前,此功能仅适用于 Azure 环境。
当前,您可以更新的属性包括:
CustomProperties
ServiceOffering
MachineProfile
通过此功能,您可以:
在更新 VM 的属性之前,请执行以下操作:
- 打开 PowerShell 窗口。
- 运行
asnp citrix*
以加载 Citrix 特定的 PowerShell 模块。 -
检查现有计算机目录的配置。例如:
Get-ProvScheme -ProvisioningSchemeName AzureCatalog <!--NeedCopy-->
-
检查要对其应用更新的 VM 的配置。例如:
Get-ProvVM -ProvisioningSchemeName AzureCatalog -VMName machine1 <!--NeedCopy-->
更新 VM 的属性
请执行以下操作以更新 VM 的属性:
- 关闭要对其应用更新的 VM。
-
更新 VM 的属性。例如,如果要更新 VM 的存储类型 (
StorageType
) 自定义属性,请运行以下命令:Set-ProvVM -ProvisioningSchemeName AzureCatalog -VMName machine1 -CustomProperties "...<Property Name='StorageType' Value='Premium_LRS' />..." <!--NeedCopy-->
您可以同时更新计算机目录中两个 VM 的属性。例如:
Set-ProvVM -ProvisioningSchemeName AzureCatalog -VMName machine1 -CustomProperties "...<Property Name='StorageType' Value='Premium_LRS' />..." <!--NeedCopy-->
Set-ProvVM -ProvisioningSchemeName AzureCatalog -VMName machine2 -CustomProperties "...<Property Name='StorageType' Value='StandardSSD_LRS' />..." <!--NeedCopy-->
注意:
更新不会立即应用。
-
获取指定要更新的属性的列表以及配置版本。例如:
Get-ProvVMConfiguration -ProvisioningSchemeName AzureCatalog -VMName machine1 <!--NeedCopy-->
检查
Version
的属性值以及要更新的属性(在此例中为StorageType
)。 -
检查配置版本。例如:
Get-ProvVM -ProvisioningSchemeName AzureCatalog -VMName machine1 <!--NeedCopy-->
检查
ProvVMConfigurationVersion
的属性值。此更新尚未应用。VM 仍采用旧配置。 -
请求计划的更新。例如:
Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName AzureCatalog -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
有关计划的更新的详细信息,请参阅将预配的计算机更新为当前预配方案状态。
注意:
还将应用任何挂起的预配方案更新。
-
重新启动 VM。例如:
New-BrokerHostingPowerAction -MachineName machine1 -Action TurnOn <!--NeedCopy-->
-
检查配置版本。例如:
Get-ProvVM -ProvisioningSchemeName AzureCatalog -VMName machine1 <!--NeedCopy-->
检查
ProvVMConfigurationVersion
的属性值。更新现已应用。VM 现在采用新配置。 - 要对 VM 进一步应用配置更新,请关闭 VM 并重复执行这些步骤。
在更新计算机目录后,保留在 VM 上更新的属性
请执行以下操作以保留在 VM 上更新的属性:
- 关闭要对其应用更新的 VM。
-
更新计算机目录。例如,如果要更改 VM 大小 (
ServiceOffering
) 和存储类型 (StorageType
),请运行以下命令:Set-ProvScheme -ProvisioningSchemeName AzureCatalog -ServiceOffering Standard_E4_v3 -CustomProperties "...<Property Name='StorageType' Value='StandardSSD_LRS' />..." <!--NeedCopy-->
-
获取计算机目录的配置详细信息。例如:
Get-ProvScheme -ProvisioningSchemeName AzureCatalog <!--NeedCopy-->
ProvisioningSchemeVersion
现在以 1 为增量。VM 大小和存储类型也已更新。 -
更新 VM 的属性。例如,向 VM 提供计算机配置文件。
Set-ProvVM -ProvisioningSchemeName AzureCatalog -VMName machine1 -MachineProfile "XDHyp:\HostingUnits<hosting-unit>\machineprofile.folder<resource-group>.resourcegroup<template-spec>.templatespec<template-spec-version>.templatespecversion" <!--NeedCopy-->
注意:
计算机配置文件输入包含标记并指定了不同的 VM 大小 (
ServiceOffering
)。 -
获取将 VM 上的配置更新与计算机目录更新合并后 VM 将拥有的属性的列表。例如:
Get-ProvVMConfigurationResultantSet -ProvisioningSchemeName AzureCatalog -VMName machine1 <!--NeedCopy-->
注意:
VM 上的任何更新都将覆盖在计算机目录上完成的更新。
-
请求对 VM 进行计划的更新。例如:
Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName AzureCatalog -VMName machine1 -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
-
重新启动 VM。例如:
New-BrokerHostingPowerAction -MachineName machine1 -Action TurnOn <!--NeedCopy-->
VM 会保留更新后的 VM 大小,该大小派生自计算机配置文件。计算机配置文件中指定的标记值也会应用于 VM。但是,存储类型派生自最新的预配方案。
-
获取 VM 的配置版本。例如:
Get-ProvVM -ProvisioningSchemeName AzureCatalog -VMName machine1 <!--NeedCopy-->
ProvisioningSchemeVersion
和ProvVMConfigurationVersion
现在显示的是最新版本。
还原应用于 VM 的配置更新
- 对 VM 应用更新后,关闭 VM。
-
请运行以下命令以删除应用于 VM 的更新。例如:
Set-ProvVM -RevertToProvSchemeConfiguration -ProvisioningSchemeName AzureCatalog -VMName machine1 <!--NeedCopy-->
-
请求对 VM 进行计划的更新。例如:
Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName AzureCatalog -VMName machine1 -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
-
重新启动 VM。例如:
New-BrokerHostingPowerAction -MachineName machine1 -Action TurnOn <!--NeedCopy-->
-
检查 VM 的配置版本。例如:
Get-ProvVM -ProvisioningSchemeName AzureCatalog -VMName machine1 <!--NeedCopy-->
ProvVMConfigurationVersion
值现在是计算机目录的配置版本。
更改磁盘加密
可以更改 Azure 虚拟环境中的磁盘加密,然后执行以下操作:
-
使用
New-ProvScheme
命令创建具有不同于主映像 DES 的磁盘加密集 (DES) 的 MCS 计算机目录。例如:$customProperties = @" <CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property xsi:type="DiskEncryptionSetId" Name="Zones" Value="/subscriptions/XXXXXXXXXXXXXXXXXXXXXXXXXXXXX/resourceGroups/testrsg/providers/Microsoft.Compute/diskEncryptionSets/test-diskEncryptionSet"/> </CustomProperties> "@ New-ProvScheme -CleanOnBoot ` -ProvisioningSchemeName $provisioningSchemeName ` -HostingUnitName $hostingUnitName ` -IdentityPoolName $identityPoolName ` -InitialBatchSizeHint $numberOfVms ` -masterImagePath $masterImagePath ` -NetworkMapping $networkMapping ` -CustomProperties $customProperties <!--NeedCopy-->
-
使用
Set-ProvScheme
和Set-ProvVMUpdateTimeWindow
命令将现有 MCS 计算机目录和现有 VM 的磁盘加密类型从一个 DES 密钥更改为另一个 DES 密钥。重新启动 VM 后,您可以看到更新后的 DES 密钥。例如:$customProperties = '<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property xsi:type="StringProperty" Name="DiskEncryptionSetId" Value="/subscriptions/456c683e2ed7/resourceGroups/testrg/providers/Microsoft.Compute/diskEncryptionSets/diskEncryptionSet1" /> </CustomProperties>' Set-ProvScheme -ProvisioningSchemeName azure-catalog -CustomProperties $customProperties Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName azure-catalog -VMName azu01, azu02 -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
-
更新以前未启用 CMEK 的 MCS 计算机目录和 VM,使其具有客户管理的加密密钥 (CMEK) 加密 (DES)、主机上的磁盘加密或使用
Set-ProvScheme
和Set-ProvVMUpdateTimeWindow
命令进行的双重加密。有关不同加密类型的信息,请参阅 Azure 服务器端加密、主机上的 Azure 磁盘加密和托管磁盘上的双重加密。 -
将之前使用
Set-ProvScheme
和Set-ProvVMUpdateTimeWindow
命令加密的现有 MCS 计算机目录和 VM 更新为未加密状态。例如:$customProperties = '<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property xsi:type="StringProperty" Name="DiskEncryptionSetId" Value="" /> </CustomProperties>' Set-ProvScheme -ProvisioningSchemeName azure-catalog -CustomProperties $customProperties Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName azure-catalog -VMName azu01, azu02 -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
-
通过专用端点(使用启用了
ProxyHypervisorTrafficThroughConnector
的主机连接的 MCS 计算机目录)启用磁盘加密。有关如何通过专用端点启用磁盘加密的信息,请参阅通过专用端点启用磁盘加密。
通过专用端点启用磁盘加密
根据 Azure 的限制,您当前不能对专用端点使用通过客户管理的密钥进行的服务器端加密。但是,您可以将现有 MCS 计算机目录和带有专用端点的 VM 更新为使用 DES 密钥进行加密。
通过专用端点更新现有计算机目录
通过专用端点更新现有计算机目录的详细步骤如下:
- 通过
ProxyHypervisorTrafficThroughConnector
创建没有磁盘加密的目录。 -
运行
Set-ProvScheme
以使用DiskEncryptionSetId
更新目录。注意:
可以通过
CustomProperties
或MachineProfile
配置DiskEcryptionSetId
。在CustomProperties
和MachineProfile
中均对其进行了定义时,将应用在CustomProperties
中定义的属性。使用
CustomProperties
时的示例:$customProperties = '<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property xsi:type="StringProperty" Name="DiskEncryptionSetId" Value="/subscriptions/456c683e2ed7/resourceGroups/testrg/providers/Microsoft.Compute/diskEncryptionSets/diskEncryptionSet1"/> </CustomProperties>' Set-ProvScheme -ProvisioningSchemeName azure-catalog -CustomProperties $customProperties <!--NeedCopy-->
使用 MachineProfile 时的示例:使用启用了磁盘加密的 VM 或者具有磁盘加密设置的模板规范:
Set-ProvScheme -ProvisioningSchemeName azure-catalog -MachineProfile "XDHyp:\HostingUnits\azureunit\machineprofile.folder\testrg.resourcegroup\new-template.vm" <!--NeedCopy-->
或者,您可以使用“完整配置”界面更新计算机配置文件。
-
运行
Set-ProvVMUpdateTimeWindow
以更新现有的目录 VM。例如:Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName azure-catalog -VMName azu01, azu02 -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
- 重新启动 VM 后,您可以在 Azure 门户中看到 VM 的磁盘上更新后的磁盘加密。
-
在添加新的目录 VM 之前,请运行
Set-ProvScheme
以取消磁盘加密。注意:
此步骤是必需的,因为您正在更新专用端点目录。如果不执行此步骤,则在尝试向目录中添加新 VM 时会出错。
例如:
$customProperties = '<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property xsi:type="StringProperty" Name="DiskEncryptionSetId" Value="" /> </CustomProperties>' Set-ProvScheme -ProvisioningSchemeName azure-catalog -CustomProperties $customProperties <!--NeedCopy-->
- 将新 VM 添加到目录中。
更新单个目录 VM
更新单个目录 VM 的详细步骤如下:
- 通过
ProxyHypervisorTrafficThroughConnector
创建没有磁盘加密的目录。 -
运行
Set-ProvVM
以使用DiskEncryptionSetId
更新目录 VM。注意:
可以通过
CustomProperties
或MachineProfile
配置DiskEcryptionSetId
。使用
CustomProperties
时的示例:$customProperties = '<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property xsi:type="StringProperty" Name="DiskEncryptionSetId" Value="/subscriptions/456c683e2ed7/resourceGroups/testrg/providers/Microsoft.Compute/diskEncryptionSets/diskEncryptionSet1" /> </CustomProperties>' Set-ProvVM -ProvisioningSchemeName azure-catalog -VMName azu01 -CustomProperties $customProperties <!--NeedCopy-->
使用 MachineProfile 时的示例:
Set-ProvVM -ProvisioningSchemeName azure-catalog -VMName azu01 -MachineProfile "XDHyp:\HostingUnits\azureunit\machineprofile.folder\testrg.resourcegroup\new-template.vm" <!--NeedCopy-->
-
运行
Set-ProvVMUpdateTimeWindow
以更新现有的目录 VM。例如:Set-ProvVMUpdateTimeWindow -ProvisioningSchemeName azure-catalog -VMName azu01 -StartsNow -DurationInMinutes -1 <!--NeedCopy-->
- 重新启动 VM 后,您可以在 Azure 门户中看到 VM 磁盘上更新后的磁盘加密。
- 将新 VM 添加到目录中。
检索 Azure VM、快照、操作系统磁盘和库映像定义的信息
可以显示 Azure VM 的信息,包括操作系统磁盘和类型、快照和库映像定义。分配计算机目录时,将为主映像上的资源显示此信息。使用此功能可以查看和选择 Linux 或 Windows 映像。PowerShell 属性 TemplateIsWindowsTemplate
已添加到 AdditionDatafield
参数中。此字段包含 Azure 特定的信息:VM 类型、操作系统磁盘、库映像信息和操作系统类型信息。将 TemplateIsWindowsTemplate
设置为 True 表示操作系统类型为 Windows;将 TemplateIsWindowsTemplate
设置为 False 表示操作系统类型为 Linux。
提示:
TemplateIsWindowsTemplate
PowerShell 属性显示的信息来自 Azure API。有时,此字段可能为空。例如,数据磁盘中的快照不包含TemplateIsWindowsTemplate
字段,因为无法从快照中检索操作系统类型。
例如,使用 PowerShell 将 Windows 操作系统类型的 Azure VM AdditionData
参数设置为 True:
PS C:\Users\username> (get-item XDHyp:\HostingUnits\mynetwork\image.folder\username-dev-testing-rg.resourcegroup\username-dev-tsvda.vm).AdditionalData
Key Value
ServiceOfferingDescription Standard_B2ms
HardDiskSizeGB 127
ResourceGroupName FENGHUAJ-DEV-TESTING-RG
ServiceOfferingMemory 8192
ServiceOfferingCores 2
TemplateIsWindowsTemplate True
ServiceOfferingWithTemporaryDiskSizeInMb 16384
SupportedMachineGenerations Gen1,Gen2
<!--NeedCopy-->
识别 MCS 创建的资源
下面是 MCS 为资源添加的标记。表中的标签表示方式为 “key”:”value”。
资源名称 | 标记 |
---|---|
ID 磁盘 | “CitrixProvisioningSchemeId” : “xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” |
“CitrixResource” : “Internal” | |
映像 | “CitrixProvisioningSchemeId” : “xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” |
“CitrixResource” : “Internal” | |
NIC | “CitrixProvisioningSchemeId” : “xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” |
“CitrixResource” : “Internal” | |
操作系统磁盘 | “CitrixProvisioningSchemeId” : “xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” |
“CitrixResource” : “Internal” | |
PrepVM | “CitrixProvisioningSchemeId” : “xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” |
“CitrixResource” : “Internal” | |
已发布的快照 | “CitrixProvisioningSchemeId” : “xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” |
“CitrixResource” : “Internal” | |
资源组 | “CitrixResource” : “Internal” |
CitrixSchemaVersion:2.0 | |
“CitrixProvisioningSchemeId” : “xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” | |
存储帐户 | “CitrixProvisioningSchemeId” : “xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” |
“CitrixResource” : “Internal” | |
目录中的 VM | “CitrixProvisioningSchemeId” : “xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” |
“CitrixResource” : “Internal” | |
WBC 磁盘 | “CitrixProvisioningSchemeId” : “xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” |
“CitrixResource” : “Internal” |
注意:
如果添加了 CitrixResource 标记以将某个 VM 标识为 MCS 创建的资源,该 VM 在 Citrix 清单中将不可见。您可以删除或重命名该标记以使其可见。
删除标记
创建目录或 VM 时,将在以下资源上创建标记:
- 资源组
- 虚拟机
- 操作系统磁盘
- 身份磁盘
- 网络接口
- 存储帐户
可以从 Citrix 数据库中删除 VM 和计算机目录并删除标记。可以使用以下图标:
- 带
ForgetVM
参数的Remove-ProvVM
用于从单个 VM 中删除 VM 和标记,或者从计算机目录中删除 VM 列表。 - 带
ForgetVM
参数的Remove-ProvScheme
用于从 Citrix 数据库中删除计算机目录并从整个计算机目录中删除标记。
此功能仅适用于永久 VM。
为此,您需要:
- 打开 PowerShell 窗口。
- 运行 asnp citrix* 以加载特定于 Citrix 的 PowerShell 模块。
-
运行
Remove-ProvVM
以从 Citrix 数据库中删除 VM 并从 VM 中删除标记。 例如:Remove-ProvVM -ProvisioningSchemeName “ProvisioningSchemeName” -VMName “vmname” -ForgetVM <!--NeedCopy-->
-
运行
Remove-ProvScheme
以从 Citrix 数据库中删除计算机目录并从计算机目录中删除标记。例如:Remove-ProvScheme -ProvisioningSchemeName “ProvisioningSchemeName” -ForgetVM <!--NeedCopy-->
注意:
在
Remove-ProvScheme
中使用ForgetVM
参数后,如果自带资源组 (BYORG) 或 Citrix 托管资源组中存在预配方案,MCS 将删除所有快照,包括基础磁盘快照。