Skip to content

Commit a1321e1

Browse files
authored
Merge pull request MicrosoftDocs#3377 from MicrosoftDocs/main
Publish to live, Friday 10:30AM PST, 4/28
2 parents 1c1866a + 58eafab commit a1321e1

File tree

5 files changed

+202
-100
lines changed

5 files changed

+202
-100
lines changed

docset/winserver2022-ps/ServerManager/Disable-ServerManagerStandardUserRemoting.md

+40-15
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ title: Disable-ServerManagerStandardUserRemoting
1111
# Disable-ServerManagerStandardUserRemoting
1212

1313
## SYNOPSIS
14-
Disables access for specified standard users to event, service, performance counter, and role and feature inventory data that is collected by Server Manager for a server.
15-
This cmdlet performs the opposite action, for specified users, of the Enable-ServerManagerStandardUserRemoting cmdlet.
14+
15+
Disables access for specified standard users to event, service, performance counter, and role and
16+
feature inventory data that is collected by Server Manager for a server. This cmdlet performs the
17+
opposite action, for specified users, of the `Enable-ServerManagerStandardUserRemoting` cmdlet.
1618

1719
## SYNTAX
1820

@@ -21,40 +23,57 @@ Disable-ServerManagerStandardUserRemoting [-User] <String[]> [-Force] [-WhatIf]
2123
```
2224

2325
## DESCRIPTION
24-
Disables access for one or more standard, non-Administrator users to event, service, performance counter, and role and feature inventory data for a server that you are managing by using Server Manager.
25-
The cmdlet restores the default, administrator-only access to this data, and must be run locally on the server that is being managed by using Server Manager.
26-
The cmdlet works by performing the following actions:
2726

28-
- Deletes access rights for specified standard users to the root\cimv2 namespace on the local server (for access to role and feature inventory information).
27+
Disables access for one or more standard, non-Administrator users to event, service, performance
28+
counter, and role and feature inventory data for a server that you are managing by using Server
29+
Manager. The cmdlet restores the default, administrator-only access to this data, and must be run
30+
locally on the server that is being managed by using Server Manager. The cmdlet works by performing
31+
the following actions:
32+
33+
- Deletes access rights for specified standard users to the `root\cimv2` namespace on the local server
34+
(for access to role and feature inventory information).
2935

30-
- Removes specified standard users from user groups (Remote Management Users, Event Log Readers, and Performance Log Readers) that allow remote access to event and performance counter logs on the local server.
36+
- Removes specified standard users from user groups (Remote Management Users, Event Log Readers, and
37+
Performance Log Readers) that allow remote access to event and performance counter logs on the
38+
local server.
3139

32-
- Removes access rights in the Service Control Manager for specified standard users who have access to the status of services on the local server.
40+
- Removes access rights in the Service Control Manager for specified standard users who have access
41+
to the status of services on the local server.
3342

3443
## EXAMPLES
3544

3645
### Example 1
46+
3747
```powershell
3848
Disable-ServerManagerStandardUserRemoting -User JennyL
3949
```
4050

41-
In the following example, the administrator disables access to event, performance counter, service status, and role and feature inventory data for a server that is being managed by using either a local or remote Server Manager console, and for which there is a standard user named JennyL.
51+
In this example, the administrator disables access to event, performance counter, service
52+
status, and role and feature inventory data for a server that is being managed by using either a
53+
local or remote Server Manager console, and for which there is a standard user named JennyL.
4254

4355
### Example 2
56+
4457
```powershell
4558
Disable-ServerManagerStandardUserRemoting -User JennyL -WhatIf
4659
```
4760

48-
In the following example, the administrator views the outcome of running a command to deny a standard user named JennyL access to event, performance counter, service status, and role and feature inventory data for a server that is being managed by using the Server Manager console running on either the local or a remote computer.
49-
The `WhatIf` parameter is added, meaning that the command actions are not carried out.
61+
In this example, the administrator views the outcome of running a command to deny a standard user
62+
named `JennyL` access to event, performance counter, service status, and role and feature inventory
63+
data for a server that is being managed by using the Server Manager console running on either the
64+
local or a remote computer. The **WhatIf** parameter is added, meaning that the command actions are
65+
not carried out.
5066

5167
### Example 3
68+
5269
```powershell
5370
Disable-ServerManagerStandardUserRemoting -User JennyL -Confirm
5471
```
5572

56-
In the following example, the administrator denies a standard user named JennyL access to event, performance counter, service status, and role and feature inventory data for a server that is being managed by using the Server Manager console running on either the local or a remote computer.
57-
The `Confirm` parameter is added, meaning that the command prompts for confirmation before performing the action.
73+
In this example, the administrator denies a standard user named `JennyL` access to event, performance
74+
counter, service status, and role and feature inventory data for a server that is being managed by
75+
using the Server Manager console running on either the local or a remote computer. The **Confirm**
76+
parameter is added, meaning that the command prompts for confirmation before performing the action.
5877

5978
## PARAMETERS
6079

@@ -75,7 +94,10 @@ Accept wildcard characters: False
7594
```
7695
7796
### -User
78-
Specifies the user account name of a standard user who runs Server Manager, and no longer requires access to event, performance counter, service, and role and feature inventory data for a server that is being managed by using either a local or remote Server Manager console.
97+
98+
Specifies the user account name of a standard user who runs Server Manager and no longer requires
99+
access to event, performance counter, service, and role and feature inventory data for a server that
100+
is being managed by using either a local or remote Server Manager console.
79101
80102
```yaml
81103
Type: String[]
@@ -90,6 +112,7 @@ Accept wildcard characters: False
90112
```
91113
92114
### -Confirm
115+
93116
Prompts you for confirmation before running the cmdlet.
94117
95118
```yaml
@@ -105,7 +128,8 @@ Accept wildcard characters: False
105128
```
106129
107130
### -WhatIf
108-
Shows what would happen if the cmdlet runs.
131+
132+
Shows what would happen if the cmdlet were run.
109133
The cmdlet is not run.
110134
111135
```yaml
@@ -121,6 +145,7 @@ Accept wildcard characters: False
121145
```
122146
123147
### CommonParameters
148+
124149
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).
125150
126151
## INPUTS

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

+15-7
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,23 @@ Uninstall-AdcsOnlineResponder [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2020
```
2121

2222
## DESCRIPTION
23-
The **Uninstall-AdcsOnlineResponder** cmdlet uninstalls the Online Responder role service.
23+
24+
The `Uninstall-AdcsOnlineResponder` cmdlet uninstalls the Online Responder role service.
2425

2526
## EXAMPLES
2627

2728
### Example 1: Uninstall the Online Responder role service
28-
```
29-
PS C:\> Uninstall-AdcsOnlineResponder -Force
29+
30+
```powershell
31+
Uninstall-AdcsOnlineResponder -Force
3032
```
3133

3234
This command removes Online Responder role service without requiring confirmation.
3335

3436
## PARAMETERS
3537

3638
### -Confirm
39+
3740
Prompts you for confirmation before running the cmdlet.
3841

3942
```yaml
@@ -49,6 +52,7 @@ Accept wildcard characters: False
4952
```
5053
5154
### -Force
55+
5256
Forces the command to run without asking for user confirmation.
5357
5458
```yaml
@@ -64,6 +68,7 @@ Accept wildcard characters: False
6468
```
6569
6670
### -WhatIf
71+
6772
Shows what would happen if the cmdlet runs. The cmdlet is not run.
6873
6974
```yaml
@@ -79,7 +84,11 @@ Accept wildcard characters: False
7984
```
8085
8186
### CommonParameters
82-
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).
87+
88+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
89+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
90+
-WarningAction, and -WarningVariable. For more information, see
91+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
8392
8493
## INPUTS
8594
@@ -90,11 +99,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
9099
### Microsoft.CertificateServices.Deployment.Common.OCSP.OnlineResponderResult
91100
92101
## NOTES
93-
* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation.
94102
95-
103+
- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to
104+
bypass the prompt for confirmation.
96105
97106
## RELATED LINKS
98107
99108
[Install-AdcsOnlineResponder](./Install-AdcsOnlineResponder.md)
100-

docset/winserver2022-ps/adcsdeployment/Uninstall-AdcsWebEnrollment.md

+16-7
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,24 @@ Uninstall-AdcsWebEnrollment [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2020
```
2121

2222
## DESCRIPTION
23-
The **Uninstall-AdcsWebEnrollment** cmdlet removes the Certification Authority (CA) Web Enrollment role service.
23+
24+
The `Uninstall-AdcsWebEnrollment` cmdlet removes the Certification Authority (CA) Web Enrollment
25+
role service.
2426

2527
## EXAMPLES
2628

2729
### Example 1: Uninstall the CA Web Enrollment role service
28-
```
29-
PS C:\> Uninstall-AdcsWebEnrollment -Force
30+
31+
```powershell
32+
Uninstall-AdcsWebEnrollment -Force
3033
```
3134

3235
This command uninstalls the CA Web Enrollment role service without requiring confirmation.
3336

3437
## PARAMETERS
3538

3639
### -Confirm
40+
3741
Prompts you for confirmation before running the cmdlet.
3842

3943
```yaml
@@ -49,6 +53,7 @@ Accept wildcard characters: False
4953
```
5054
5155
### -Force
56+
5257
Forces the command to run without asking for user confirmation.
5358
5459
```yaml
@@ -64,6 +69,7 @@ Accept wildcard characters: False
6469
```
6570
6671
### -WhatIf
72+
6773
Shows what would happen if the cmdlet runs.
6874
The cmdlet is not run.
6975
@@ -80,7 +86,11 @@ Accept wildcard characters: False
8086
```
8187
8288
### CommonParameters
83-
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).
89+
90+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
91+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
92+
-WarningAction, and -WarningVariable. For more information, see
93+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
8494
8595
## INPUTS
8696
@@ -91,11 +101,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
91101
### Microsoft.CertificateServices.Deployment.Common.WEP.WebEnrollmentResult
92102
93103
## NOTES
94-
* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation.
95104
96-
105+
- Ensure you run Windows PowerShell as an administrator. You can use the **Force** parameter to
106+
bypass the prompt for confirmation.
97107
98108
## RELATED LINKS
99109
100110
[Install-AdcsWebEnrollment](./Install-AdcsWebEnrollment.md)
101-

0 commit comments

Comments
 (0)