vote up 1 vote down star

Here is a blog post from Kirk Munro that explains how a script can set the DefaultDisplayPropertySet on its output objects:

Essential PowerShell: Define default properties for custom objects

His technique and example code doesn't appear to work in PowerShell v2. (Note, I have PowerTab and PSCX installed--perhaps those could be interfering.)

Anyone know how to get this to work on PowerShell v2?


UPDATE: Here's the example from the blog post, which isn't working for me (note, I've corrected the single quote characters):

$myObject = New-Object PSObject
$myObject | Add-Member NoteProperty Name 'My Object'
$myObject | Add-Member NoteProperty Property1 1
$myObject | Add-Member NoteProperty Property2 2
$myObject | Add-Member NoteProperty Property3 3
$myObject | Add-Member NoteProperty Property4 4
$myObject | Add-Member NoteProperty Property5 5
$myObject

  ## Output:
  # Name      : My Object
  # Property1 : 1
  # Property2 : 2
  # Property3 : 3
  # Property4 : 4
  # Property5 : 5

$defaultProperties = @('Name','Property2','Property4')
$defaultDisplayPropertySet = New-Object System.Management.Automation.PSPropertySet('DefaultDisplayPropertySet',[string[]]$defaultProperties)
$PSStandardMembers = [System.Management.Automation.PSMemberInfo[]]@($defaultDisplayPropertySet)
$myObject | Add-Member MemberSet PSStandardMembers $PSStandardMembers
$myObject

  ## Output:
  # Name      : My Object
  # Property1 : 1
  # Property2 : 2
  # Property3 : 3
  # Property4 : 4
  # Property5 : 5

The output should not be the same after adding DefaultDisplayPropertySet (i.e., it should only have Name, Property2, and Property4).

flag
I should also note that I'm running PowerShell v2 on Vista, via the Microsoft Windows Management Framework RC. blogs.msdn.com/powershell/archive/… – totorocat Sep 2 at 21:46

2 Answers

vote up 3 vote down check

Can you give an example of your non-working code? This should work perfectly in v2, if not, you've found a bug.

UPDATE:

(removed comments about quoting)

I've confirmed with the powershell team that this is indeed a regression (bug).

You can vote on the issue's importance to you here:

https://connect.microsoft.com/PowerShell/feedback/ViewFeedback.aspx?FeedbackID=487938

Thanks,

-Oisin (powershell MVP)

link|flag
I had already noticed the invalid single and double quote characters and corrected them. I've added the actual example code to the original question. Does it work for you? – totorocat Sep 2 at 21:40
Correction: it was just single quote characters. – totorocat Sep 2 at 21:48
updated answer: it's a bug in v2.0 – x0n Sep 3 at 17:50
Oisin, thanks for investigating. – totorocat Sep 4 at 2:20
vote up 0 vote down

I get the same results as you do - it displays all 5 properties. I'm running Powershell 2.0 RC on Vista. I don't have PowerTab or PSCX installed.

link|flag
Thanks for taking the time to confirm the issue... – totorocat Sep 4 at 2:25

Your Answer

Get an OpenID
or

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