PSCustomObject
s are a great tool to add into your Powershell toolbelt. Let’s start with the basics and work our way into the more advanced features. The idea behind using a PSCustomObject
is to have a very simple way to create structured data. Take a look at the first example and you will have a better idea of what that means.
Index
- Index
- Creating a PSCustomObject
- Saving to a file
- Adding properties
- Remove properties
- Enumerating property names
- Testing for properties
- Adding object methods
- Objects vs Value types
- PSTypeName for custom object types
- Using DefaultPropertySet (the long way)
- Update-TypeData with ScriptProperty
- Function parameters
- Function OutputType
- Closing thoughts
Creating a PSCustomObject
I love using [PSCustomObject]
in Powershell. Creating a usable object has never been easier. Because of that, I am going to skip over all the other ways you can create an object but I do need to mention that most of this is Powershell v3.0 and newer.
$myObject = [PSCustomObject]@{
Name = 'Kevin'
Language = 'Powershell'
State = 'Texas'
}
This works well for me because I use hashtables for just about everything. But there are times when I would like Powershell to treat hashtables more like an object and this does it. The first place you notice the difference is when you want to use Format-Table
or Export-CSV
and you realize that a hashtable is just a collection of key/value pairs.
You can then access and use the values like you would a normal object.
$myObject.Name
Converting a hashtable
While I am on the topic, did you know you could do this:
$myHashtable = @{
Name = 'Kevin'
Language = 'Powershell'
State = 'Texas'
}
$myObject = [pscustomobject]$myHashtable
I do prefer to create the object from the start but there are times you have to work with a hashtable first. This works because the constructor takes a hastable for the object properties. One important note is that while this works, it is not an exact equivelent. The bigest difference is that the order of the properties is not preserved.
Legacy approach
You may have seen people use New-Object
to create custom objects.
$myHashtable = @{
Name = 'Kevin'
Language = 'Powershell'
State = 'Texas'
}
$myObject = New-Object -TypeName PSObject -Property $myHashtable
This way is quite a bit slower but it may be your best option on eary versions of PowerShell.
Saving to a file
I find the best way to save a hashtable to a file is to save it as JSON. You can import it back into a [PSCusomObject]
$myObject | ConvertTo-Json -depth 1- | Set-Content -Path $Path
$myObject = Get-Content -Path $Path | ConvertFrom-Json
I cover more ways to save objects to a file in my article on The many ways to read and write to files.
Adding properties
You can still add new properties to your PSCustomObject
with Add-Member
.
$myObject | Add-Member -MemberType NoteProperty -Name `ID` -Value 'KevinMarquette'
$myObject.ID
Remove properties
You can also remove properties off of an object.
$myObject.psobject.properties.remove('ID')
The psobject
is a hidden property that gives you access to base object metadata.
Enumerating property names
Sometimes you need a list of all the property names on an object.
$myObject | Get-Member -MemberType NoteProperty | Select -ExpandProperty Name
We can get this same list off of the psobject
property too.
$myobject.psobject.properties.name
Dynamically accessing properties
I already mentioned that you can access property values directly.
$myObject.Name
You can use a string for the property name and it will still work.
$myObject.'Name'
We can take this one more step and use a variable for the property name.
$property = 'Name'
$myObject.$property
I know that looks strange, but it works.
Convert pscustomboject into a hashtable
To continue on from the last seciton, you can dynamically walk the properties and create a hashtable from them.
$hashtable = @{}
foreach( $property in $myobject.psobject.properties.name )
{
$hashtable[$property] = $myObject.$property
}
Testing for properties
If you need to know if a property exists, you could just check for that property to have a value.
if( $null -ne $myObject.ID )
But if the value could be $null
and you still need to check for it, you can check the psobject.properties
for it.
if( $myobject.psobject.properties.match('ID') )
Adding object methods
If you need to add a script method to an object, you can do it with Add-Member
and a ScriptBlock
. You have to use the this
automatic variable reference the current object. Here is a scriptblock to turn a object into a hashtable. (same code form the last example)
$ScriptBlock = {
$hashtable = @{}
foreach( $property in $this.psobject.properties.name )
{
$hashtable[$property] = $this.$property
}
return $hashtable
}
Then we add it to our object as a script property.
$memberParam = @{
MemberType = "ScriptMethod"
InputObject = $myobject
Name = "ToHashtable"
Value = $scriptBlock
}
Add-Member @memberParam
Then we can call our function like this:
$myObject.ToHashtable()
Objects vs Value types
Objects and value types don’t handle variable assignments the same way. If you assign value types to each other, only the value get copied to the new variable.
$first = 1
$second = $first
$second = 2
In this case, $first
is 1 and $second
is 2.
Object variables hold a reference to the actual object. When you assign one object to a new variable, they still reference the same object.
$third = [PSCustomObject]@{Key=3}
$fourth = $third
$fourth.Key = 4
Because $third
and $fourth
reference the same instance of an object, both $third.key
and $fourth.Key
are 4.
psobject.copy()
If you need a true copy of an object, you can clone it.
$third = [PSCustomObject]@{Key=3}
$fourth = $third.psobject.copy()
$fourth.Key = 4
Clone creates a shallow copy of the object. They have different instances now and $third.key
is 3 and $fourth.Key
is 4 in this example.
I call this a shallow copy because if you have nested objects. (where the properties contain other objects). Only the top level values are copied. The child objects will reference each other.
PSTypeName for custom object types
Now that we have an object, there are a few more things we can do with it that may not be nearly as obvious. First thing we need to do is give it a PSTypeName
. This is the most common way I see people do it:
$myObject.PSObject.TypeNames.Insert(0,"My.Object")
I recently discovered another way to do this from this post by /u/markekraus. I did a little digging and more posts about the idea from Adam Bertram and Mike Shepard where they talk about this approach that allows you to define it inline.
$myObject = [PSCustomObject]@{
PSTypeName = 'My.Object'
Name = 'Kevin'
Language = 'Powershell'
State = 'Texas'
}
I love how nicely this just fits into the language. Now that we have an object with a proper type name, we can do some more things.
Using DefaultPropertySet (the long way)
Powershell decides for us what properties to display by default. A lot of the native commands have a .ps1xml
formating file that does all the heavy lifting. From this post by Boe Prox, there is another way for us to do this on our custom object using just Powershell. We can give it a MemberSet
for it to use.
$defaultDisplaySet = 'Name','Language'
$defaultDisplayPropertySet = New-Object System.Management.Automation.PSPropertySet(‘DefaultDisplayPropertySet’,[string[]]$defaultDisplaySet)
$PSStandardMembers = [System.Management.Automation.PSMemberInfo[]]@($defaultDisplayPropertySet)
$MyObject | Add-Member MemberSet PSStandardMembers $PSStandardMembers
Now when my object just falls to the shell, it will only show those properties by default.
Update-TypeData with DefaultPropertySet
This is really nice but I recently saw a better way when watching PowerShell unplugged 2016 with Jeffrey Snover & Don Jones. He was using Update-TypeData to specify the default properties.
$TypeData = @{
TypeName = 'My.Object'
DefaultDisplayPropertySet = 'Name','Language'
}
Update-TypeData @TypeData
That is simple enough that I could almost remember it if I didn’t have this post as a quick reference. Now I can easily create objects with lots of properties and still give it a nice clean view when looking at it from the shell. If I need to access or see those other properties, they are still there.
$myObject | Format-List *
Update-TypeData with ScriptProperty
Something else that I got out of that video was creating script properties for your objects. This would be a good time to point out that this works for existing objects too.
$TypeData = @{
TypeName = 'My.Object'
MemberType = 'ScriptProperty'
MemberName = 'UpperCaseName'
Value = {$this.Name.toUpper()}
}
Update-TypeData @TypeData
You can do this before your object is created or after and it will still work. This is what makes this different then using Add-Member
with a script property. When you use Add-Member
the way I referenced earlier, it only exists on that specific instance of the object. This one applies to all objects with this TypeName
.
Function parameters
You can now use these custom types for parameters in your functions and scripts. You can have one function create these custom objects and then pass them into other functions.
param( [PSTypeName('My.Object')]$Data )
Powershell will then require that the object be of the type you specified. It will throw a validation error if the type does not match automatically to save you the step of testing for it in your code. A great example of letting Powershell do what it does best.
Function OutputType
You can also define an OutputType
for your advanced functions.
function Get-MyObject
{
[OutputType('My.Object')]
[CmdletBinding()]
param
(
...
The OutputType attribute value is only a documentation note. It is not derived from the function code or compared to the actual function output.
The main reason you would use an output type is so that meta information about your function reflects your intentions. Things like Get-Command
,Get-Help
and your development environment can take advantage of that. If you want more information then take a look at the help for it: about_Functions_OutputTypeAttribute
With that said, if you are utilizing Pester to unit test your functions then it would be a good idea to validate the output objects match your OutputType
. This could catch variables that just fall to the pipe when they shouldn’t.
Closing thoughts
The context of this was all about [PSCustomObject]
, but a lot of this information applies to objects in general.
I have seen most of these features in passing before but never saw them presented as a collection of information on PSCustomObject
. Just this last week I stumbled upon another one and was surprised that I had not seen it before. I wanted to pull all these ideas together so you can hopefully see the bigger picture and be aware of them when you have an opportunity to use them. I hope you learned something and can find a way to work this into your scripts.