Skip to content

Commit e23d8cb

Browse files
committed
Applied feedback
1 parent 95caca4 commit e23d8cb

File tree

4 files changed

+29
-30
lines changed

4 files changed

+29
-30
lines changed

docset/winserver2025-ps/smbshare/Get-SmbClientCertificateMapping.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ Get-SmbClientCertificateMapping [[-Namespace] <String[]>] [[-Subject] <String[]>
2525
## DESCRIPTION
2626

2727
The `Get-SmbClientCertificateMapping` cmdlet retrieves the client certificate mappings for the SMB
28-
protocol. These mappings are used to authenticate clients that connect to SMB servers using
29-
certificates.
28+
protocol, such as when using SMB over QUIC. These mappings are used to authenticate clients that
29+
connect to SMB servers using certificates.
3030

3131
## EXAMPLES
3232

3333
### Example 1: Retrieve all certificate mappings for a specific store
3434

3535
```powershell
36-
Get-SmbClientCertificateMapping -StoreName "MyCertificateStore"
36+
Get-SmbClientCertificateMapping -StoreName "My"
3737
```
3838

3939
This retrieves all certificate mappings that have been stored in a specific certificate store.
@@ -68,7 +68,7 @@ Accept wildcard characters: False
6868
### -CimSession
6969
7070
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
71-
object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967)
71+
object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession)
7272
or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the
7373
current session on the local computer.
7474
@@ -86,7 +86,7 @@ Accept wildcard characters: False
8686
8787
### -DisplayName
8888
89-
Specifies a friendly name to display for the mapping.
89+
Specifies the friendly name of the certificate.
9090
9191
```yaml
9292
Type: String[]
@@ -107,7 +107,7 @@ are:
107107

108108
- `None`: Remove all flags
109109
- `AllowNamedPipe`: Enable use of named pipes in SMB over QUIC connections for this mapping (off by
110-
default, overrides value of RestrictNamedPipeAccessOverQuic)
110+
default, overrides value of the **RestrictNamedPipeAccessOverQuic** parameter)
111111
- `DefaultCert`: Not used
112112

113113
```yaml
@@ -264,7 +264,7 @@ Accept wildcard characters: False
264264
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
265265
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
266266
-WarningAction, and -WarningVariable. For more information, see
267-
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
267+
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
268268

269269
## INPUTS
270270

docset/winserver2025-ps/smbshare/New-SmbClientCertificateMapping.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ SMB client name.
3636
```powershell
3737
$params = @{
3838
Thumbprint = "a1b2c3d4e5f6g7h8"
39-
StoreName = "MyCertificateStore"
39+
StoreName = "My"
4040
IssuerName = "CN=MyCertificateAuthority"
4141
Subject = "CN=MyClientCertificate"
4242
DisplayName = "MyClientCertificateMapping"
@@ -73,7 +73,7 @@ Accept wildcard characters: False
7373
### -CimSession
7474
7575
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
76-
object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967)
76+
object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession)
7777
or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the
7878
current session on the local computer.
7979
@@ -91,7 +91,7 @@ Accept wildcard characters: False
9191
9292
### -DisplayName
9393
94-
Specifies a friendly name to display for the mapping.
94+
Specifies the friendly name of the certificate.
9595
9696
```yaml
9797
Type: String[]
@@ -112,7 +112,7 @@ are:
112112

113113
- `None`: Remove all flags
114114
- `AllowNamedPipe`: Enable use of named pipes in SMB over QUIC connections for this mapping (off by
115-
default, overrides value of RestrictNamedPipeAccessOverQuic)
115+
default, overrides value of the **RestrictNamedPipeAccessOverQuic** parameter)
116116
- `DefaultCert`: Not used
117117

118118
```yaml
@@ -162,8 +162,8 @@ Accept wildcard characters: False
162162

163163
### -Namespace
164164

165-
Specifies the namespace in which the certificate mappings are located. By default, the cmdlet
166-
searches in the `root\cimv2\Security\MicrosoftTlsCertificateMappingProvider` namespace.
165+
Specifies the namespace of the QUIC server. For example, `server1.contoso.com`. By default, the
166+
cmdlet searches in the `root\cimv2\Security\MicrosoftTlsCertificateMappingProvider` namespace.
167167

168168
```yaml
169169
Type: String
@@ -301,7 +301,7 @@ Accept wildcard characters: False
301301
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
302302
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
303303
-WarningAction, and -WarningVariable. For more information, see
304-
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
304+
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
305305

306306
## INPUTS
307307

docset/winserver2025-ps/smbshare/Remove-SmbClientCertificateMapping.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,18 @@ client name.
4545
### Example 1: Remove all certificate mappings from a specific store
4646

4747
```powershell
48-
Remove-SmbClientCertificateMapping -StoreName "MyCertificateStore" -Force
48+
Remove-SmbClientCertificateMapping -StoreName "My" -Force
4949
```
5050

5151
This force removes all certificate mappings that have been stored in a specific certificate store.
5252

5353
### Example 2: Remove a certificate mapping by thumbprint
5454

5555
```powershell
56-
Remove-SmbClientCertificateMapping -Thumbprint "MyThumbprint" -IncludeHidden -Force
56+
Remove-SmbClientCertificateMapping -Thumbprint "MyThumbprint" -Force
5757
```
5858

59-
This force removes a certificate mapping with a specific thumbprint, including any hidden
60-
certificate mappings.
59+
This force removes a certificate mapping with a specific thumbprint.
6160

6261
## PARAMETERS
6362

@@ -81,7 +80,7 @@ Accept wildcard characters: False
8180
### -CimSession
8281
8382
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
84-
object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967)
83+
object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession)
8584
or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the
8685
current session on the local computer.
8786
@@ -99,7 +98,7 @@ Accept wildcard characters: False
9998
10099
### -DisplayName
101100
102-
Specifies a friendly name to display for the mapping.
101+
Specifies the friendly name of the certificate.
103102
104103
```yaml
105104
Type: String[]
@@ -120,7 +119,7 @@ are:
120119
121120
- `None`: Remove all flags.
122121
- `AllowNamedPipe`: Enable use of named pipes in SMB over QUIC connections for this mapping (off by
123-
default, overrides the value of RestrictNamedPipeAccessOverQuic).
122+
default, overrides the value of the **RestrictNamedPipeAccessOverQuic** parameter).
124123
- `DefaultCert`: Not used.
125124

126125
```yaml
@@ -154,7 +153,7 @@ Accept wildcard characters: False
154153

155154
### -IncludeHidden
156155

157-
Includes removal of any hidden certificate mappings.
156+
Not used.
158157

159158
```yaml
160159
Type: SwitchParameter
@@ -202,8 +201,8 @@ Accept wildcard characters: False
202201

203202
### -Namespace
204203

205-
Specifies the namespace in which the certificate mappings are located. By default, the cmdlet
206-
searches in the `root\cimv2\Security\MicrosoftTlsCertificateMappingProvider` namespace.
204+
Specifies the namespace of the QUIC server. For example, `server1.contoso.com`. By default, the
205+
cmdlet searches in the `root\cimv2\Security\MicrosoftTlsCertificateMappingProvider` namespace.
207206

208207
```yaml
209208
Type: String[]
@@ -357,7 +356,7 @@ Accept wildcard characters: False
357356
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
358357
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
359358
-WarningAction, and -WarningVariable. For more information, see
360-
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
359+
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
361360

362361
## INPUTS
363362

docset/winserver2025-ps/smbshare/Set-SmbClientCertificateMapping.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Accept wildcard characters: False
6060
### -CimSession
6161
6262
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
63-
object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967)
63+
object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession)
6464
or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the
6565
current session on the local computer.
6666
@@ -83,7 +83,7 @@ are:
8383

8484
- `None`: Remove all flags
8585
- `AllowNamedPipe`: Enable use of named pipes in SMB over QUIC connections for this mapping (off by
86-
default, overrides value of RestrictNamedPipeAccessOverQuic)
86+
default, overrides value of the **RestrictNamedPipeAccessOverQuic** parameter)
8787
- `DefaultCert`: Not used
8888

8989
```yaml
@@ -117,8 +117,8 @@ Accept wildcard characters: False
117117

118118
### -Namespace
119119

120-
Specifies the namespace in which the certificate mappings are located. By default, the cmdlet
121-
searches in the `root\cimv2\Security\MicrosoftTlsCertificateMappingProvider` namespace.
120+
Specifies the namespace of the QUIC server. For example, `server1.contoso.com`. By default, the
121+
cmdlet searches in the `root\cimv2\Security\MicrosoftTlsCertificateMappingProvider` namespace.
122122

123123
```yaml
124124
Type: String
@@ -221,7 +221,7 @@ Accept wildcard characters: False
221221
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
222222
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
223223
-WarningAction, and -WarningVariable. For more information, see
224-
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
224+
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
225225

226226
## INPUTS
227227

0 commit comments

Comments
 (0)