Currently we are using script to resolve IPAddress by powershell :
$VM = Get-SCVirtualMachine -Name "VMname"
$ValuesMap = @{}
$ValuesMap.Add("NetworkAddressIPv4", $null)
$map=Read-SCGuestInfo -VM $VM -KvpMap $ValuesMap
$map.KvpMap.
So this script is working fine till Windows 8.1 VM Machine and as we run on Windows 10 VM it throw the error as : "The following Msvm_KvpExchangeDataItem.Name
keys are deprecated: NetworkAddressIPv4, NetworkAddressIPv6, RDPAddressIPv4
, and RDPAddressIPv6. Please configure guest IP addresses using Msvm_
Please help me with this.
Mau