Certainly, Add-Member basically does what it says, it allows you to add Members(aka Properties) to objects. To get the desired result you wanted we needed to create a blank object, and then add in the data you wanted. Also, Add-Member doesn't just work on custom objects you created, it can work with the normal Pipeline objects as well. Check out the Powershell Team blog for a little more detail:
http://blogs.msdn.com/powershell/ar...stem.aspx. Hope that help Vishal.