From 759c1862da49e8bf31d7cad6c9d7d44938e4f026 Mon Sep 17 00:00:00 2001 From: Matt Gucci Date: Sun, 19 Nov 2017 00:20:03 +0900 Subject: [PATCH] Update outputs of Get-Verb Since v6.0, `Get-Verb` returns not MemberDefinition but VerbInfo that has Verb and Group properties. --- reference/6/Microsoft.PowerShell.Utility/Get-Verb.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/reference/6/Microsoft.PowerShell.Utility/Get-Verb.md b/reference/6/Microsoft.PowerShell.Utility/Get-Verb.md index de62ee35c033..323eb2c0e1a6 100644 --- a/reference/6/Microsoft.PowerShell.Utility/Get-Verb.md +++ b/reference/6/Microsoft.PowerShell.Utility/Get-Verb.md @@ -144,15 +144,9 @@ Accept wildcard characters: True ## OUTPUTS -### Selected.Microsoft.PowerShell.Commands.MemberDefinition +### System.Management.Automation.VerbInfo ## NOTES -Get-Verb returns a modified version of a Microsoft.PowerShell.Commands.MemberDefinition object. -The object does not have the standard properties of a MemberDefinition object. -Instead it has Verb and Group properties. -The Verb property contains a string with the verb name. -The Group property contains a string with the verb group. - Windows PowerShell verbs are assigned to a group based on their most common use. The groups are designed to make the verbs easy to find and compare, not to restrict their use. You can use any approved verb for any type of command.