Skip to content

Commit 11974c1

Browse files
author
Angela Fleischmann
authored
Merge pull request MicrosoftDocs#3016 from MicrosoftDocs/main
Publish 06/24/2022 3:30 PM PT
2 parents 8cf92b2 + a64b0e3 commit 11974c1

File tree

10 files changed

+1876
-216
lines changed

10 files changed

+1876
-216
lines changed

docset/winserver2016-ps/appx/Get-AppxPackage.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,21 +78,14 @@ Accept wildcard characters: False
7878
7979
### -PackageTypeFilter
8080
Specifies one or more comma-separated types of packages that the cmdlet gets from the package repository.
81-
Valid values are:
82-
83-
- Bundle
84-
- Framework
85-
- Main
86-
- Resource
87-
- None
8881
8982
By default, this cmdlet returns only packages of types Main and Framework.
9083
9184
```yaml
9285
Type: PackageTypes
9386
Parameter Sets: (All)
9487
Aliases:
95-
Accepted values: None, Main, Framework, Resource, Bundle, Xap
88+
Accepted values: None, Main, Framework, Resource, Bundle, Xap, Optional
9689

9790
Required: False
9891
Position: Named

docset/winserver2019-ps/appx/Get-AppxPackage.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,21 +78,14 @@ Accept wildcard characters: False
7878
7979
### -PackageTypeFilter
8080
Specifies one or more comma-separated types of packages that the cmdlet gets from the package repository.
81-
Valid values are:
82-
83-
- Bundle
84-
- Framework
85-
- Main
86-
- Resource
87-
- None
8881
8982
By default, this cmdlet returns only packages of types Main and Framework.
9083
9184
```yaml
9285
Type: PackageTypes
9386
Parameter Sets: (All)
9487
Aliases:
95-
Accepted values: None, Main, Framework, Resource, Bundle, Xap
88+
Accepted values: None, Main, Framework, Resource, Bundle, Xap, Optional
9689

9790
Required: False
9891
Position: Named

docset/winserver2022-ps/appx/Get-AppxPackage.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,21 +78,14 @@ Accept wildcard characters: False
7878
7979
### -PackageTypeFilter
8080
Specifies one or more comma-separated types of packages that the cmdlet gets from the package repository.
81-
Valid values are:
82-
83-
- Bundle
84-
- Framework
85-
- Main
86-
- Resource
87-
- None
8881
8982
By default, this cmdlet returns only packages of types Main and Framework.
9083
9184
```yaml
9285
Type: PackageTypes
9386
Parameter Sets: (All)
9487
Aliases:
95-
Accepted values: None, Main, Framework, Resource, Bundle, Xap
88+
Accepted values: None, Main, Framework, Resource, Bundle, Xap, Optional
9689

9790
Required: False
9891
Position: Named

docset/winserver2022-ps/smbshare/Get-SmbClientConfiguration.md

Lines changed: 46 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
33
external help file: SmbClientConfiguration.cdxml-help.xml
44
Module Name: SmbShare
5-
ms.date: 12/20/2016
5+
ms.date: 06/23/2022
66
online version: https://docs.microsoft.com/powershell/module/smbshare/get-smbclientconfiguration?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Get-SmbClientConfiguration
@@ -16,54 +16,69 @@ Retrieves the SMB client configuration.
1616
## SYNTAX
1717

1818
```
19-
Get-SmbClientConfiguration [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-AsJob] [-WhatIf] [-Confirm]
20-
[<CommonParameters>]
19+
Get-SmbClientConfiguration [-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-AsJob] [-WhatIf]
20+
[-Confirm] [<CommonParameters>]
2121
```
2222

2323
## DESCRIPTION
24-
The **Get-SmbClientConfiguration** cmdlet retrieves the Server Message Block (SMB) client configuration.
24+
25+
The `Get-SmbClientConfiguration` cmdlet retrieves the Server Message Block (SMB) client
26+
configuration.
2527

2628
## EXAMPLES
2729

2830
### Example 1: Get the client configuration
31+
32+
```powershell
33+
Get-SmbClientConfiguration
2934
```
30-
PS C:\>Get-SmbClientConfiguration
35+
36+
```Output
37+
SkipCertificateCheck : False
3138
ConnectionCountPerRssNetworkInterface : 4
3239
DirectoryCacheEntriesMax : 16
33-
DirectoryCacheEntrySizeMax : 65536
40+
DirectoryCacheEntrySizeMax : 0
3441
DirectoryCacheLifetime : 10
42+
DormantFileLimit : 1023
3543
EnableBandwidthThrottling : True
3644
EnableByteRangeLockingOnReadOnlyFiles : True
3745
EnableLargeMtu : True
46+
EnableLoadBalanceScaleOut : True
3847
EnableMultiChannel : True
39-
DormantFileLimit : 1023
40-
EnableSecuritySignature : True
4148
ExtendedSessionTimeout : 1000
4249
FileInfoCacheEntriesMax : 64
4350
FileInfoCacheLifetime : 10
4451
FileNotFoundCacheEntriesMax : 128
4552
FileNotFoundCacheLifetime : 5
53+
ForceSMBEncryptionOverQuic : False
4654
KeepConn : 600
4755
MaxCmds : 50
4856
MaximumConnectionCountPerServer : 32
4957
OplocksDisabled : False
50-
RequireSecuritySignature : False
5158
SessionTimeout : 60
5259
UseOpportunisticLocking : True
5360
WindowSizeThreshold : 1
61+
EncryptionCiphers : AES_128_GCM, AES_128_CCM, AES_256_GCM, AES_256_CCM
5462
```
5563

5664
This command retrieves the SMB client configuration.
5765

66+
> [!NOTE]
67+
> The **EncryptionCiphers** parameter is available beginning with 2022-06 Cumulative Update for
68+
> Microsoft server operating system version 21H2 for x64-based Systems
69+
> ([KB5014665](https://support.microsoft.com/help/5014665)), and Cumulative Update for Windows 11,
70+
> version 22H2 ([KB5014668](https://support.microsoft.com/help/5014668)).
71+
5872
## PARAMETERS
5973

6074
### -AsJob
75+
6176
Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete.
6277

6378
```yaml
6479
Type: SwitchParameter
6580
Parameter Sets: (All)
66-
Aliases:
81+
Aliases:
6782

6883
Required: False
6984
Position: Named
@@ -73,9 +88,11 @@ Accept wildcard characters: False
7388
```
7489
7590
### -CimSession
76-
Runs the cmdlet in a remote session or on a remote computer.
77-
Enter a computer name or a session object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967) or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet.
78-
The default is the current session on the local computer.
91+
92+
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
93+
object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967)
94+
or [Get-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227966) cmdlet. The default is the
95+
current session on the local computer.
7996
8097
```yaml
8198
Type: CimSession[]
@@ -90,14 +107,17 @@ Accept wildcard characters: False
90107
```
91108
92109
### -ThrottleLimit
93-
Specifies the maximum number of concurrent operations that can be established to run the cmdlet.
94-
If this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer.
95-
The throttle limit applies only to the current cmdlet, not to the session or to the computer.
110+
111+
Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If
112+
this parameter is omitted or a value of `0` is entered, then Windows PowerShell calculates an
113+
optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the
114+
computer. The throttle limit applies only to the current cmdlet, not to the session or to the
115+
computer.
96116

97117
```yaml
98118
Type: Int32
99119
Parameter Sets: (All)
100-
Aliases:
120+
Aliases:
101121
102122
Required: False
103123
Position: Named
@@ -107,6 +127,7 @@ Accept wildcard characters: False
107127
```
108128

109129
### -Confirm
130+
110131
Prompts you for confirmation before running the cmdlet.
111132

112133
```yaml
@@ -122,8 +143,8 @@ Accept wildcard characters: False
122143
```
123144

124145
### -WhatIf
125-
Shows what would happen if the cmdlet runs.
126-
The cmdlet is not run.
146+
147+
Shows what would happen if the cmdlet runs. The cmdlet is not run.
127148

128149
```yaml
129150
Type: SwitchParameter
@@ -138,7 +159,11 @@ Accept wildcard characters: False
138159
```
139160

140161
### CommonParameters
141-
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).
162+
163+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
164+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
165+
-WarningAction, and -WarningVariable. For more information, see
166+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
142167

143168
## INPUTS
144169

@@ -147,6 +172,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
147172
## OUTPUTS
148173

149174
### Microsoft.Management.Infrastructure.CimInstance#root/Microsoft/Windows/SMB/MSFT_SmbClientConfiguration
175+
150176
The **MSFT_SmbClientConfiguration** object represents the configuration of the SMB client.
151177

152178
## NOTES

0 commit comments

Comments
 (0)