Skip to content

Commit 9510afc

Browse files
Merge pull request MicrosoftDocs#3374 from Snozzberries/MicrosoftDocs#3373
Quality: PowerShell Summit MicrosoftDocsGH-3373
2 parents 4f47633 + f0d5f0c commit 9510afc

File tree

1 file changed

+33
-17
lines changed

1 file changed

+33
-17
lines changed

docset/winserver2022-ps/adcsdeployment/Install-AdcsOnlineResponder.md

Lines changed: 33 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ Installs the Online Responder service.
1616
## SYNTAX
1717

1818
```
19-
Install-AdcsOnlineResponder [-Force] [-Credential <PSCredential>] [-WhatIf] [-Confirm] [<CommonParameters>]
19+
Install-AdcsOnlineResponder [-Force] [-Credential <PSCredential>] [-WhatIf]
20+
[-Confirm] [<CommonParameters>]
2021
```
2122

2223
## DESCRIPTION
23-
The **Install-AdcsOnlineResponder** cmdlet installs the Online Responder service, which provides Online Certificate Status Protocol (OSCP) services.
24-
To remove the role service, use the **Uninstall-AdcsOnlineResponder** cmdlet.
24+
25+
The `Install-AdcsOnlineResponder` cmdlet installs the Online Responder service, which provides
26+
Online Certificate Status Protocol (OSCP) services. To remove the role service, use the
27+
`Uninstall-AdcsOnlineResponder` cmdlet.
2528

2629
You can import the cmdlet by running the following commands from Windows PowerShell:
2730

@@ -31,22 +34,25 @@ You can import the cmdlet by running the following commands from Windows PowerSh
3134
## EXAMPLES
3235

3336
### Example 1: Install the Online Responder role service
34-
```
35-
PS C:\> Install-AdcsOnlineResponder
37+
38+
```powershell
39+
Install-AdcsOnlineResponder
3640
```
3741

3842
This command installs the Online Responder role service.
3943

4044
### Example 2: Force the installation of the Online Responder role service
41-
```
42-
PS C:\> Install-AdcsOnlineResponder -Force
45+
46+
```powershell
47+
Install-AdcsOnlineResponder -Force
4348
```
4449

4550
This command forces the installation of the Online Responder role service.
4651

4752
## PARAMETERS
4853

4954
### -Confirm
55+
5056
Prompts you for confirmation before running the cmdlet.
5157

5258
```yaml
@@ -62,12 +68,14 @@ Accept wildcard characters: False
6268
```
6369
6470
### -Credential
65-
Specifies a **PSCredential** object for the Online Responder service.
66-
To obtain a credential object, use the **Get-Credential** cmdlet.
67-
For more information, type `Get-Help Get-Credential`.
68-
You can install the Online Responder role service only on servers that are members of Active Directory Domain Services (AD DS) domains.
69-
If you are installing an online responder configured to use a standalone certification authority (CA), then an account that is a member of the local Administrators group of the target server is required.
70-
If you are installing an online responder to target an Enterprise CA, then an account that is a member of the Domain Admins group is required.
71+
72+
Specifies a **PSCredential** object for the Online Responder service. To obtain a credential object,
73+
use the `Get-Credential` cmdlet. For more information, type `Get-Help Get-Credential`. You can
74+
install the Online Responder role service only on servers that are members of Active Directory
75+
Domain Services (AD DS) domains. If you are installing an online responder configured to use a
76+
standalone certification authority (CA), then an account that is a member of the local
77+
Administrators group of the target server is required. If you are installing an online responder to
78+
target an Enterprise CA, then an account that is a member of the Domain Admins group is required.
7179

7280
```yaml
7381
Type: PSCredential
@@ -82,6 +90,7 @@ Accept wildcard characters: False
8290
```
8391

8492
### -Force
93+
8594
Forces the command to run without asking for user confirmation.
8695

8796
```yaml
@@ -97,6 +106,7 @@ Accept wildcard characters: False
97106
```
98107

99108
### -WhatIf
109+
100110
Shows what would happen if the cmdlet runs.
101111
The cmdlet is not run.
102112

@@ -113,7 +123,11 @@ Accept wildcard characters: False
113123
```
114124

115125
### CommonParameters
116-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
126+
127+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
128+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
129+
-WarningAction, and -WarningVariable. For more information, see
130+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
117131

118132
## INPUTS
119133

@@ -124,12 +138,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
124138
### Microsoft.CertificateServices.Deployment.Common.OCSP.OnlineResponderResult
125139

126140
## NOTES
127-
* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation.
128-
To see parameters, run the following command: `Install-AdcsOnlineResponder -?`
141+
142+
- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to
143+
bypass the prompt for confirmation. To see parameters, run the following command:
144+
145+
`Install-AdcsOnlineResponder -?`
129146

130147
## RELATED LINKS
131148

132149
[Uninstall-AdcsOnlineResponder](./Uninstall-AdcsOnlineResponder.md)
133150

134151
[Get-Credential](https://go.microsoft.com/fwlink/?LinkID=293936)
135-

0 commit comments

Comments
 (0)