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
2 changes: 2 additions & 0 deletions reference/6/Microsoft.PowerShell.Core/About/about_pwsh.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@ debugging and other cross-process communication. This offers a predictable
mechanism for connecting to other PowerShell instances. Typically used with the
**CustomPipeName** parameter on `Enter-PSHostProcess`.

This parameter was introduced in PowerShell 6.2.

For example:

```powershell
Expand Down
2 changes: 2 additions & 0 deletions reference/6/Microsoft.PowerShell.Core/Enter-PSHostProcess.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ Gets or sets the custom named pipe name to connect to.
This is usually used in conjunction with
`pwsh -CustomPipeName`.

This parameter was introduced in PowerShell 6.2.

```yaml
Type: String
Parameter Sets: PipeNameParameterSet
Expand Down
2 changes: 2 additions & 0 deletions reference/6/Microsoft.PowerShell.Utility/ConvertFrom-Json.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ Accept wildcard characters: False
Gets or sets the maximum depth the JSON input is allowed to have.
By default, it is 1024.

This parameter was introduced in PowerShell 6.2.

```yaml
Type: Int32
Parameter Sets: (All)
Expand Down
36 changes: 19 additions & 17 deletions reference/6/Microsoft.PowerShell.Utility/ConvertTo-Json.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,25 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -EscapeHandling

Controls how certain characters are escaped in the resulting JSON output. By default, only control
characters (e.g. newline) are escaped.

This parameter was introduced in PowerShell 6.2.

```yaml
Type: NewtonSoft.Json.StringEscapeHandling
Parameter Sets: (All)
Aliases:

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

### -InputObject

Specifies the objects to convert to JSON format. Enter a variable that contains the objects, or type
Expand All @@ -257,23 +276,6 @@ Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```

### -EscapeHandling

Controls how certain characters are escaped in the resulting JSON output. By default, only control
characters (e.g. newline) are escaped.

```yaml
Type: NewtonSoft.Json.StringEscapeHandling
Parameter Sets: (All)
Aliases:

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

### CommonParameters

This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`,
Expand Down
36 changes: 19 additions & 17 deletions reference/6/Microsoft.PowerShell.Utility/Send-MailMessage.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,23 +173,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ReplyTo

Specifies additional email addresses (other than the From address) to use to reply to this message.
Enter names (optional) and the email address, such as `Name <someone@fabrikam.com>`.

```yaml
Type: String[]
Parameter Sets: (All)
Aliases:

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

### -Credential

Specifies a user account that has permission to perform this action. The default is the current
Expand Down Expand Up @@ -331,6 +314,25 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ReplyTo

Specifies additional email addresses (other than the From address) to use to reply to this message.
Enter names (optional) and the email address, such as `Name <someone@fabrikam.com>`.

This parameter was introduced in PowerShell 6.2.

```yaml
Type: String[]
Parameter Sets: (All)
Aliases:

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

### -SmtpServer

Specifies the name of the SMTP server that sends the email message.
Expand Down
2 changes: 2 additions & 0 deletions reference/7/Microsoft.PowerShell.Core/About/about_pwsh.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ debugging and other cross-process communication. This offers a predictable
mechanism for connecting to other PowerShell instances. Typically used with the
**CustomPipeName** parameter on `Enter-PSHostProcess`.

This parameter was introduced in PowerShell 6.2.

For example:

```powershell
Expand Down
2 changes: 2 additions & 0 deletions reference/7/Microsoft.PowerShell.Core/Enter-PSHostProcess.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ Gets or sets the custom named pipe name to connect to.
This is usually used in conjunction with
`pwsh -CustomPipeName`.

This parameter was introduced in PowerShell 6.2.

```yaml
Type: String
Parameter Sets: PipeNameParameterSet
Expand Down
2 changes: 2 additions & 0 deletions reference/7/Microsoft.PowerShell.Utility/ConvertFrom-Json.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ Accept wildcard characters: False
Gets or sets the maximum depth the JSON input is allowed to have.
By default, it is 1024.

This parameter was introduced in PowerShell 6.2.

```yaml
Type: Int32
Parameter Sets: (All)
Expand Down
36 changes: 19 additions & 17 deletions reference/7/Microsoft.PowerShell.Utility/ConvertTo-Json.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,25 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -EscapeHandling

Controls how certain characters are escaped in the resulting JSON output. By default, only control
characters (e.g. newline) are escaped.

This parameter was introduced in PowerShell 6.2.

```yaml
Type: NewtonSoft.Json.StringEscapeHandling
Parameter Sets: (All)
Aliases:

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

### -InputObject

Specifies the objects to convert to JSON format. Enter a variable that contains the objects, or type
Expand All @@ -257,23 +276,6 @@ Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```

### -EscapeHandling

Controls how certain characters are escaped in the resulting JSON output. By default, only control
characters (e.g. newline) are escaped.

```yaml
Type: NewtonSoft.Json.StringEscapeHandling
Parameter Sets: (All)
Aliases:

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

### CommonParameters

This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`,
Expand Down
36 changes: 19 additions & 17 deletions reference/7/Microsoft.PowerShell.Utility/Send-MailMessage.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,23 +172,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ReplyTo

Specifies additional email addresses (other than the From address) to use to reply to this message.
Enter names (optional) and the email address, such as `Name <someone@fabrikam.com>`.

```yaml
Type: String[]
Parameter Sets: (All)
Aliases:

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

### -Credential

Specifies a user account that has permission to perform this action. The default is the current
Expand Down Expand Up @@ -330,6 +313,25 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ReplyTo

Specifies additional email addresses (other than the From address) to use to reply to this message.
Enter names (optional) and the email address, such as `Name <someone@fabrikam.com>`.

This parameter was introduced in PowerShell 6.2.

```yaml
Type: String[]
Parameter Sets: (All)
Aliases:

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

### -SmtpServer

Specifies the name of the SMTP server that sends the email message.
Expand Down