PowerTip: Create a nested PowerShell custom object

Doctor Scripto

Summary: Learn how to create a nested PowerShell custom object.

Hey, Scripting Guy! Question How do I create a nested PowerShell custom object to store layers (nested) of information?

Hey, Scripting Guy! Answer Use a hashtable with the PSCustomObject type accelerator, and specify PSCustomObject as the value to the Property Name (Key):

[PSCustomObject]@{ PropertyName = [PSCustomObject]@{ NestedPropertyName = ‘NestedPropertyValue’ } }

7610.Dr.ScriptoForTips

0 comments

Discussion is closed.

Feedback usabilla icon