Top "Psobject" questions

PSObject is used for object encapsulation in PowerShell and is used for a consistent view in its environment.

Difference between PSObject, Hashtable, and PSCustomObject

Can anybody explain the details? If I create an object using $var = [PSObject]@{a=1;b=2;c=3} and then I look …

powershell powershell-3.0 psobject
Powershell - how do I edit an existing property in a custom object

I looking for way how update noteproperty in existing psobject, for example I have system.array of psobjects ($a): Group …

powershell edit psobject
Access PSObject property by name in C#

For example I have a PSObject transaction with two properties: id and transactionName , so that it looks like: transaction { id: 123 …

c# powershell psobject
Remove duplicate entries from PowerShell object while keeping PSObject intact

I have created a PSObject with multiple properties. I would like to remove duplicate entries from the PSObject using a …

powershell duplicates psobject
Change value of a psobject property

I have an array full of psobjects. Now I want to change some properties in each of the objects in …

powershell custom-object psobject