Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions reference/3.0/Microsoft.PowerShell.Utility/Get-Member.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ title: Get-Member
Gets the properties and methods of objects.
## SYNTAX

```
Get-Member [-InputObject <PSObject>] [[-Name] <String[]>] [-MemberType <PSMemberTypes>]
[-View <PSMemberViewTypes>] [-Static] [-Force] [<CommonParameters>]
```powershell
Get-Member [[-Name] <String[]>] [-InputObject <PSObject>]
[-MemberType <PSMemberTypes>] [-View <PSMemberViewTypes>] [-Static] [-Force]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -332,7 +333,7 @@ Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Expand Down
9 changes: 5 additions & 4 deletions reference/4.0/Microsoft.PowerShell.Utility/Get-Member.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ Gets the properties and methods of objects.

## SYNTAX

```
Get-Member [-InputObject <PSObject>] [[-Name] <String[]>] [-MemberType <PSMemberTypes>]
[-View <PSMemberViewTypes>] [-Static] [-Force] [<CommonParameters>]
```powershell
Get-Member [[-Name] <String[]>] [-InputObject <PSObject>]
[-MemberType <PSMemberTypes>] [-View <PSMemberViewTypes>] [-Static] [-Force]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -342,7 +343,7 @@ Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Expand Down
7 changes: 4 additions & 3 deletions reference/5.0/Microsoft.PowerShell.Utility/Get-Member.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ Gets the properties and methods of objects.

## SYNTAX

```
Get-Member [-InputObject <PSObject>] [[-Name] <String[]>] [-MemberType <PSMemberTypes>]
[-View <PSMemberViewTypes>] [-Static] [-Force] [<CommonParameters>]
```powershell
Get-Member [[-Name] <String[]>] [-InputObject <PSObject>]
[-MemberType <PSMemberTypes>] [-View <PSMemberViewTypes>] [-Static] [-Force]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down
7 changes: 4 additions & 3 deletions reference/5.1/Microsoft.PowerShell.Utility/Get-Member.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ Gets the properties and methods of objects.

## SYNTAX

```
Get-Member [-InputObject <PSObject>] [[-Name] <String[]>] [-MemberType <PSMemberTypes>]
[-View <PSMemberViewTypes>] [-Static] [-Force] [<CommonParameters>]
```powershell
Get-Member [[-Name] <String[]>] [-InputObject <PSObject>]
[-MemberType <PSMemberTypes>] [-View <PSMemberViewTypes>] [-Static] [-Force]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down
57 changes: 5 additions & 52 deletions reference/6/Microsoft.PowerShell.Utility/Get-Member.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ Gets the properties and methods of objects.

## SYNTAX

```
Get-Member [-InputObject <PSObject>] [[-Name] <String[]>] [-MemberType <PSMemberTypes>]
[-View <PSMemberViewTypes>] [-Static] [-Force] [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
```powershell
Get-Member [[-Name] <String[]>] [-InputObject <PSObject>]
[-MemberType <PSMemberTypes>] [-View <PSMemberViewTypes>] [-Static] [-Force]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -267,53 +267,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -InformationAction
The following list describes the properties that are added when you use the Force parameter:

-- PSBase: The original properties of the .NET Framework object without extension or adaptation. These are the properties defined for the object class and listed in MSDN.

-- PSAdapted: The properties and methods defined in the Windows PowerShell extended type system.

-- PSExtended: The properties and methods that were added in the Types.ps1xml files or by using the Add-Member cmdlet.

-- PSObject: The adapter that converts the base object to a Windows PowerShell PSObject object.

-- PSTypeNames: A list of object types that describe the object, in order of specificity. When formatting the object, Windows PowerShell searches for the types in the Format.ps1xml files in the Windows PowerShell installation directory ($pshome). It uses the formatting definition for the first type that it finds.```yaml
Type: ActionPreference
Parameter Sets: (All)
Aliases: infa
Accepted values: SilentlyContinue, Stop, Continue, Inquire, Ignore, Suspend

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -InformationVariable
The following list describes the properties that are added when you use the Force parameter:

-- PSBase: The original properties of the .NET Framework object without extension or adaptation. These are the properties defined for the object class and listed in MSDN.

-- PSAdapted: The properties and methods defined in the Windows PowerShell extended type system.

-- PSExtended: The properties and methods that were added in the Types.ps1xml files or by using the Add-Member cmdlet.

-- PSObject: The adapter that converts the base object to a Windows PowerShell PSObject object.

-- PSTypeNames: A list of object types that describe the object, in order of specificity. When formatting the object, Windows PowerShell searches for the types in the Format.ps1xml files in the Windows PowerShell installation directory ($pshome). It uses the formatting definition for the first type that it finds.```yaml
Type: String
Parameter Sets: (All)
Aliases: iv

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -InputObject
Specifies the object whose members are retrieved.

Expand Down Expand Up @@ -393,7 +346,7 @@ Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Expand Down