Hi Sir,
Regarding VMM report , you may try to integrate VMM with SCOM :
http://blogs.technet.com/b/scvmm/archive/2012/05/03/reporting-in-system-center-2012-virtual-machine-manager-part-1.aspx
https://technet.microsoft.com/en-us/library/hh882401.aspx
Regarding how to integrate with SCOM:
https://technet.microsoft.com/en-us/library/hh427287.aspx
SCVMM console doesn't provide the view of VM's IP address , please try the follow script (run it on VMM server ) to add IP address into custom property :
param ( $VMMServer = 'localhost')
$CustomProp = Get-SCCustomProperty -Name Custom1
$VMs = get-SCVirtualMachine -VMMServer $VMMServer
foreach ($VM in $VMs)
{
$NetAdp = get-SCVirtualNetworkAdapter -VM $VM.name
if ($NetAdp.IPv4Addresses)
{
[String[]]$str = $NetAdp.IPv4Addresses
Set-SCCustomPropertyValue -CustomProperty $CustomProp -InputObject $VM -Value "$str"
}
}
It quoted from the similar thread:
https://social.technet.microsoft.com/Forums/systemcenter/en-US/3128bfce-ecda-4aee-98e6-cfd654faa028/how-to-get-the-vm-ip-address-in-scvmm-2012?forum=virtualmachinemanager
Best Regards,
Elton
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com .