$nic1 = gwmi win32_networkadapterconfiguration -filter " ipenabled = 'true' "
# one object (NIC) is returened
$nic1.-------> all needed properties (like ip address) are available
$NICs = gwmi win32_networkadapterconfiguration -filter "description like '%hyper%' "
# two objects (NICs) is returened
$NICs.-------> some needed properties are not available here
what should i do so that when i type $NICs.----> ip address property be appeared & available to select ?
thanks in advanced