Deployment Planner Incorrect OS Type

Brenda Rojas 1 Reputation point
2020-07-06T16:11:08.433+00:00

Hi,

We ran the Deployment Planner and when the report came up on some servers (they all are Windows Server 2016) shows Windows 10 64bit on the OS Type, my doubt is why it shows another OS Type as the servers are Windows 2016?

Azure Site Recovery
Azure Site Recovery
An Azure native disaster recovery service. Previously known as Microsoft Azure Hyper-V Recovery Manager.
672 questions
{count} votes

1 answer

Sort by: Most helpful
  1. SadiqhAhmed-MSFT 40,446 Reputation points Microsoft Employee
    2020-08-20T13:12:21.65+00:00

    @Brenda Rojas The OS type is fetched from VMware APIs. It could be based on the VMware VM configuration template.

    Please run the below commands to get the OS Type from VMware API.

    Run the below commands on VMware PowerCLI installed machine.

    PS > Connect-VIServer -Server <> -User <> -Password <>
    PS > $vm = Get-VM -Name <>
    PS > $vm.ExtensionData.Summary.Config.GuestFullName

    19079-dp-vmware-snip.png

    2 people found this answer helpful.