-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
update docs for -CustomPipeName #4032
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ title: Enter-PSHostProcess | |
# Enter-PSHostProcess | ||
|
||
## SYNOPSIS | ||
|
||
TylerLeonhardt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Connects to and enters into an interactive session with a local process. | ||
|
||
## SYNTAX | ||
|
@@ -39,6 +40,12 @@ Enter-PSHostProcess [-Name] <String> [[-AppDomainName] <String>] [<CommonParamet | |
Enter-PSHostProcess [-HostProcessInfo] <PSHostProcessInfo> [[-AppDomainName] <String>] [<CommonParameters>] | ||
``` | ||
|
||
### PipeNameParameterSet | ||
|
||
``` | ||
Enter-PSHostProcess -CustomPipeName <String> [<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
|
||
The **Enter-PSHostProcess** cmdlet connects to and enters into an interactive session with a local process. | ||
|
@@ -112,7 +119,7 @@ PS C:\> | |
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Parameter Sets: ProcessIdParameterSet, ProcessParameterSet, ProcessNameParameterSet, PSHostProcessInfoParameterSet | ||
Aliases: | ||
|
||
Required: False | ||
|
@@ -188,6 +195,24 @@ Accept pipeline input: True (ByValue) | |
Accept wildcard characters: False | ||
``` | ||
|
||
### -CustomPipeName | ||
|
||
Gets or sets the custom named pipe name to connect to. | ||
This is usually used in conjunction with | ||
`pwsh -CustomPipeName`. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: PipeNameParameterSet | ||
Aliases: | ||
|
||
Required: True | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
|
||
### CommonParameters | ||
|
||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix "about_CommonParameters" to be a valid hyperlink. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update ms.date to the current date in both articles There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixed. |
||
|
@@ -209,4 +234,4 @@ That is, they have loaded the PowerShell engine. | |
|
||
## RELATED LINKS | ||
|
||
[Exit-PSHostProcess](Exit-PSHostProcess.md) | ||
[Exit-PSHostProcess](Exit-PSHostProcess.md) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update ms.date to the current date.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed.