forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelect-DefaultView.ps1
76 lines (63 loc) · 2.09 KB
/
Select-DefaultView.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
Function Select-DefaultView
{
<#
This command enables us to send full on objects to the pipeline without the user seeing it
See it in action in Get-DbaSnapshot and Remove-DbaDatabaseSnapshot
a lot of this is from boe, thanks boe!
https://learn-powershell.net/2013/08/03/quick-hits-set-the-default-property-display-in-powershell-on-custom-objects/
TypeName creates a new type so that we can use ps1xml to modify the output
#>
[CmdletBinding()]
param (
[parameter(ValueFromPipeline = $true)]
[object]$InputObject,
[string[]]$Property,
[string[]]$ExcludeProperty,
[string]$TypeName
)
process
{
if ($InputObject -eq $null) { return }
if ($TypeName)
{
$InputObject.PSObject.TypeNames.Insert(0, "dbatools.$TypeName")
}
if ($ExcludeProperty)
{
if ($InputObject.GetType().Name.ToString() -eq 'DataRow')
{
$ExcludeProperty += 'Item', 'RowError', 'RowState', 'Table', 'ItemArray', 'HasErrors'
}
$properties = ($InputObject.PsObject.Members | Where-Object MemberType -ne 'Method' | Where-Object { $_.Name -notin $ExcludeProperty }).Name
$defaultset = New-Object System.Management.Automation.PSPropertySet('DefaultDisplayPropertySet', [string[]]$properties)
}
else
{
# property needs to be string
if ("$property" -like "* as *")
{
$newproperty = @()
foreach ($p in $property)
{
if ($p -like "* as *")
{
$old, $new = $p -isplit " as "
# Do not be tempted to not pipe here
$inputobject | Add-Member -MemberType AliasProperty -Name $new -Value $old -Force -ErrorAction SilentlyContinue
$newproperty += $new
}
else
{
$newproperty += $p
}
}
$property = $newproperty
}
$defaultset = New-Object System.Management.Automation.PSPropertySet('DefaultDisplayPropertySet', [string[]]$Property)
}
$standardmembers = [System.Management.Automation.PSMemberInfo[]]@($defaultset)
# Do not be tempted to not pipe here
$inputobject | Add-Member -MemberType MemberSet -Name PSStandardMembers -Value $standardmembers -Force -ErrorAction SilentlyContinue
$inputobject
}
}