Skip to content

Commit b8e11c1

Browse files
committed
Applied feedback
1 parent 820f366 commit b8e11c1

File tree

4 files changed

+27
-22
lines changed

4 files changed

+27
-22
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Accept wildcard characters: False
6969
7070
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
7171
object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967)
72-
or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the
72+
or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the
7373
current session on the local computer.
7474
7575
```yaml
@@ -105,10 +105,10 @@ Accept wildcard characters: False
105105
Specifies if `NamedPipes` are enabled for SMB over QUIC. The acceptable values for this parameter
106106
are:
107107

108-
- `None:` Remove all flags
109-
- `AllowNamedPipe:` Enable use of named pipes in SMB over QUIC connections for this mapping (off by
108+
- `None`: Remove all flags
109+
- `AllowNamedPipe`: Enable use of named pipes in SMB over QUIC connections for this mapping (off by
110110
default, overrides value of RestrictNamedPipeAccessOverQuic)
111-
- `DefaultCert:` Not used
111+
- `DefaultCert`: Not used
112112

113113
```yaml
114114
Type: Flags[]
@@ -244,7 +244,7 @@ Accept wildcard characters: False
244244

245245
Specifies the type of certificate mapping. The acceptable value for this parameter is:
246246

247-
`QUIC:` Certificate mapping is for SMB over QUIC.
247+
`QUIC`: Certificate mapping is for SMB over QUIC.
248248

249249
```yaml
250250
Type: Type[]

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

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ Creates a new client certificate mapping for the Server Message Block (SMB) prot
1717

1818
```
1919
New-SmbClientCertificateMapping [-Namespace] <String> [-Thumbprint <String>] [-StoreName <String>]
20-
[-IssuerName <String>] [-Subject <String>] [-DisplayName <String>] [-Type <Type>] [-Flags <Flags>] [-Force]
21-
[-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-AsJob] [-WhatIf] [-Confirm] [<CommonParameters>]
20+
[-IssuerName <String>] [-Subject <String>] [-DisplayName <String>] [-Type <Type>] [-Flags <Flags>]
21+
[-Force] [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-AsJob] [-WhatIf] [-Confirm]
22+
[<CommonParameters>]
2223
```
2324

2425
## DESCRIPTION
@@ -46,7 +47,7 @@ New-SmbClientCertificateMapping @params
4647
This creates a new certificate mapping for an SMB client where a specific thumbprint, store name,
4748
issuer name, subject, and display name are specified for the certificate mapping.
4849

49-
For example, if you have an SMB client named "MySMBClient" that needs to connect to a server using
50+
For example, if you have an SMB client named `MySMBClient` that needs to connect to a server using
5051
a specific certificate, you could use this cmdlet to create a certificate mapping that associates
5152
the client with the certificate.
5253

@@ -73,7 +74,7 @@ Accept wildcard characters: False
7374
7475
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
7576
object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967)
76-
or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the
77+
or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the
7778
current session on the local computer.
7879
7980
```yaml
@@ -125,10 +126,10 @@ Accept wildcard characters: False
125126
Specifies if `NamedPipes` are enabled for SMB over QUIC. The acceptable values for this parameter
126127
are:
127128

128-
- `None:` Remove all flags
129-
- `AllowNamedPipe:` Enable use of named pipes in SMB over QUIC connections for this mapping (off by
129+
- `None`: Remove all flags
130+
- `AllowNamedPipe`: Enable use of named pipes in SMB over QUIC connections for this mapping (off by
130131
default, overrides value of RestrictNamedPipeAccessOverQuic)
131-
- `DefaultCert:` Not used
132+
- `DefaultCert`: Not used
132133

133134
```yaml
134135
Type: Flags[]
@@ -264,7 +265,7 @@ Accept wildcard characters: False
264265

265266
Specifies the type of certificate mapping. The acceptable value for this parameter is:
266267

267-
`QUIC:` Certificate mapping is for SMB over QUIC.
268+
`QUIC`: Certificate mapping is for SMB over QUIC.
268269

269270
```yaml
270271
Type: Type[]

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

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ Removes an existing client certificate mapping for the Server Message Block (SMB
1515

1616
## SYNTAX
1717

18+
### Query
19+
1820
```
1921
Remove-SmbClientCertificateMapping [-Namespace] <String[]> [[-Subject] <String[]>]
2022
[[-Thumbprint] <String[]>] [[-DisplayName] <String[]>] [[-StoreName] <String[]>]
@@ -23,6 +25,8 @@ Remove-SmbClientCertificateMapping [-Namespace] <String[]> [[-Subject] <String[]
2325
[<CommonParameters>]
2426
```
2527

28+
### InputObject
29+
2630
```
2731
Remove-SmbClientCertificateMapping -InputObject <CimInstance[]> [-Force]
2832
[-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-AsJob] [-PassThru] [-WhatIf] [-Confirm]
@@ -78,7 +82,7 @@ Accept wildcard characters: False
7882
7983
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
8084
object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967)
81-
or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the
85+
or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the
8286
current session on the local computer.
8387
8488
```yaml
@@ -130,10 +134,10 @@ Accept wildcard characters: False
130134
Specifies if Named Pipes are enabled for SMB over QUIC. The acceptable values for this parameter
131135
are:
132136
133-
- `None:` Remove all flags.
134-
- `AllowNamedPipe:` Enable use of named pipes in SMB over QUIC connections for this mapping (off by
137+
- `None`: Remove all flags.
138+
- `AllowNamedPipe`: Enable use of named pipes in SMB over QUIC connections for this mapping (off by
135139
default, overrides the value of RestrictNamedPipeAccessOverQuic).
136-
- `DefaultCert:` Not used.
140+
- `DefaultCert`: Not used.
137141

138142
```yaml
139143
Type: Flags[]
@@ -317,7 +321,7 @@ Accept wildcard characters: False
317321

318322
### -Type
319323

320-
`QUIC` Certificate mapping is for SMB over QUIC.
324+
`QUIC`: Certificate mapping is for SMB over QUIC.
321325

322326
```yaml
323327
Type: Type[]

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Accept wildcard characters: False
6161
6262
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
6363
object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967)
64-
or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the
64+
or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the
6565
current session on the local computer.
6666
6767
```yaml
@@ -97,10 +97,10 @@ Accept wildcard characters: False
9797
Specifies if `NamedPipes` are enabled for SMB over QUIC. The acceptable values for this parameter
9898
are:
9999

100-
- `None:` Remove all flags
101-
- `AllowNamedPipe:` Enable use of named pipes in SMB over QUIC connections for this mapping (off by
100+
- `None`: Remove all flags
101+
- `AllowNamedPipe`: Enable use of named pipes in SMB over QUIC connections for this mapping (off by
102102
default, overrides value of RestrictNamedPipeAccessOverQuic)
103-
- `DefaultCert:` Not used
103+
- `DefaultCert`: Not used
104104

105105
```yaml
106106
Type: Flags[]

0 commit comments

Comments
 (0)