Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix parameter's position in Tee-Object.md #1970

Merged
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
11 changes: 7 additions & 4 deletions reference/3.0/Microsoft.PowerShell.Utility/Tee-Object.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,20 @@ Saves command output in a file or variable and also sends it down the pipeline.

### File (Default)
```
Tee-Object [-InputObject <PSObject>] [-FilePath] <String> [-Append] [<CommonParameters>]
Tee-Object [-FilePath] <String> [-InputObject <PSObject>] [-Append]
[<CommonParameters>]
```

### LiteralFile
```
Tee-Object [-InputObject <PSObject>] -LiteralPath <String> [<CommonParameters>]
Tee-Object -LiteralPath <String> [-InputObject <PSObject>]
[<CommonParameters>]
```

### Variable
```
Tee-Object [-InputObject <PSObject>] -Variable <String> [<CommonParameters>]
Tee-Object -Variable <String> [-InputObject <PSObject>]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -103,7 +106,7 @@ Parameter Sets: File
Aliases:

Required: True
Position: 1
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
Expand Down
11 changes: 7 additions & 4 deletions reference/4.0/Microsoft.PowerShell.Utility/Tee-Object.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,20 @@ Saves command output in a file or variable and also sends it down the pipeline.

### File (Default)
```
Tee-Object [-InputObject <PSObject>] [-FilePath] <String> [-Append] [<CommonParameters>]
Tee-Object [-FilePath] <String> [-InputObject <PSObject>] [-Append]
[<CommonParameters>]
```

### LiteralFile
```
Tee-Object [-InputObject <PSObject>] -LiteralPath <String> [<CommonParameters>]
Tee-Object -LiteralPath <String> [-InputObject <PSObject>]
[<CommonParameters>]
```

### Variable
```
Tee-Object [-InputObject <PSObject>] -Variable <String> [<CommonParameters>]
Tee-Object -Variable <String> [-InputObject <PSObject>]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -109,7 +112,7 @@ Parameter Sets: File
Aliases:

Required: True
Position: 1
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
Expand Down
9 changes: 6 additions & 3 deletions reference/5.0/Microsoft.PowerShell.Utility/Tee-Object.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,20 @@ Saves command output in a file or variable and also sends it down the pipeline.

### File (Default)
```
Tee-Object [-InputObject <PSObject>] [-FilePath] <String> [-Append] [<CommonParameters>]
Tee-Object [-FilePath] <String> [-InputObject <PSObject>] [-Append]
[<CommonParameters>]
```

### LiteralFile
```
Tee-Object [-InputObject <PSObject>] -LiteralPath <String> [<CommonParameters>]
Tee-Object -LiteralPath <String> [-InputObject <PSObject>]
[<CommonParameters>]
```

### Variable
```
Tee-Object [-InputObject <PSObject>] -Variable <String> [<CommonParameters>]
Tee-Object -Variable <String> [-InputObject <PSObject>]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down
9 changes: 6 additions & 3 deletions reference/5.1/Microsoft.PowerShell.Utility/Tee-Object.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,20 @@ Saves command output in a file or variable and also sends it down the pipeline.

### File (Default)
```
Tee-Object [-InputObject <PSObject>] [-FilePath] <String> [-Append] [<CommonParameters>]
Tee-Object [-FilePath] <String> [-InputObject <PSObject>] [-Append]
[<CommonParameters>]
```

### LiteralFile
```
Tee-Object [-InputObject <PSObject>] -LiteralPath <String> [<CommonParameters>]
Tee-Object -LiteralPath <String> [-InputObject <PSObject>]
[<CommonParameters>]
```

### Variable
```
Tee-Object [-InputObject <PSObject>] -Variable <String> [<CommonParameters>]
Tee-Object -Variable <String> [-InputObject <PSObject>]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down
41 changes: 7 additions & 34 deletions reference/6/Microsoft.PowerShell.Utility/Tee-Object.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ Saves command output in a file or variable and also sends it down the pipeline.

### File (Default)
```
Tee-Object [-InputObject <PSObject>] [-FilePath] <String> [-Append] [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
Tee-Object [-FilePath] <String> [-InputObject <PSObject>] [-Append]
[<CommonParameters>]
```

### LiteralFile
```
Tee-Object [-InputObject <PSObject>] -LiteralPath <String> [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
Tee-Object -LiteralPath <String> [-InputObject <PSObject>]
[<CommonParameters>]
```

### Variable
```
Tee-Object [-InputObject <PSObject>] -Variable <String> [-InformationAction <ActionPreference>]
[-InformationVariable <String>] [<CommonParameters>]
Tee-Object -Variable <String> [-InputObject <PSObject>]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -109,34 +109,7 @@ Parameter Sets: File
Aliases:

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

### -InformationAction
This parameter is introduced in Windows PowerShell 3.0.```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
This parameter is introduced in Windows PowerShell 3.0.```yaml
Type: String
Parameter Sets: (All)
Aliases: iv

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