Hi,
So I want to combine the output from the following two cmdlets:
Get-NcLunMap | Select-Object Vserver,Path,InitiatorGroup,LunId
Get-NcIgroup | Select-Object InitiatorGroupAluaEnabled,InitiatorGroupOsType,InitiatorGroupType,Initiators
I've been looking at the Don Jones video, https://www.youtube.com/watch?v=TLUzPvA0HUo&t=42s, and I think I need to create a custom object. The cmdlets in the video return a single item, e.g. for a particular computer the Win32_OperatingSystem, however Get-NcLun/Igroup returns all of the LUNs/Igroups from a cluster. I can see how the Don Jones example would work for a single item but I don't understand how to upscale that when there are multiple objects returned.
Also as an aside, is there any way I can get an online/offline status for initiators into my completed table?
As you can probably tell, I'm a novice, any thoughts please?
Thanks