Azure 混合虚拟机验证

Azure hybrid VM verification

我正在处理一个新项目并测试 Azure Vm。我注意到我在创建 Vm 或现有 Vm 时可以激活 azure hybrid。我已经做到了,但我不明白怎么做?微软不会要求我至少输入我应该拥有的许可证吗?有什么动作可以验证吗?

另一个问题是,如果我有 1 个服务器或客户端许可证,并且我有 2 个相同类型的 VM(服务器或客户端 win10),相同的许可证是否适用于每个或仅适用于一个 VM?

我曾尝试调查 MS 社区,但我认为没有人问过类似的问题。

你可以看看Azure Hybrid Benefit FAQ

如何为 Windows 服务器激活 Azure 混合权益?

To use Windows virtual machines with the Azure Hybrid Benefit, do one of the following.

  • Deploy VMs from one of the Windows Server images provided on the Azure Marketplace.
  • Upload a custom VM and deploy using a Resource Manager template or Azure PowerShell.
  • Convert existing VM in Azure to the Azure Hybrid Benefit cost for Windows Server.
  • Apply Azure Hybrid Benefit for Windows Server on virtual machine scale set as well.

Learn more.

如果您通过 Azure 门户为 Windows 服务器创建具有 Azure 混合权益的 VM,请使用 省钱 部分下的切换。

How to verify your VM is utilizing the licensing benefit

以下 PowerShell 示例显示了单个 VM 的许可证类型。

Get-AzVM -ResourceGroup "myResourceGroup" -Name "myVM"

输出:

Copy
Type                     : Microsoft.Compute/virtualMachines
Location                 : westus
LicenseType              : Windows_Server

希望对您有所帮助。