Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to be able to set the default text rendering of a PSObject I create. For example, I'd like this code:

new-object psobject -property @{ name = 'bob'; job = 'janitor' }

which currently outputs this:

name  job
----  ---
bob   janitor

to instead output this:

name  job
----  ---
bob   he is a janitor, he is

I.e. attach script block to the PSObject's ToString() that just does this:

{ 'he is a {0}, he is' -f $job }

I don't need to do an add-type with some C# for the type, do I? I hope not. I make lots of local psobjects and would like to scatter to-strings on them to help make their output nicer, but if it's a lot of code it probably won't be worth it.

share|improve this question

1 Answer

up vote 5 down vote accepted

Use the Add-Member cmdlet to override the default ToString method:

$pso = new-object psobject -property @{ name = 'bob'; job = 'janitor' }
$pso | add-member scriptmethod tostring { 'he is a {0}, he is' -f $this.job } -force 
$pso.tostring()
share|improve this answer
Wow it really is that simple. Thank you. – Scott Bilas Mar 28 '12 at 19:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.