Skip to content

Commit 27a7d51

Browse files
committed
Servicing updates for the SmbShare module
1 parent 0d1d533 commit 27a7d51

7 files changed

+1462
-64
lines changed

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

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,35 +26,42 @@ The **Get-SmbClientConfiguration** cmdlet retrieves the Server Message Block (SM
2626
## EXAMPLES
2727

2828
### Example 1: Get the client configuration
29+
```PowerShell
30+
Get-SmbClientConfiguration
2931
```
30-
PS C:\>Get-SmbClientConfiguration
32+
```Output
33+
SkipCertificateCheck : False
3134
ConnectionCountPerRssNetworkInterface : 4
3235
DirectoryCacheEntriesMax : 16
33-
DirectoryCacheEntrySizeMax : 65536
36+
DirectoryCacheEntrySizeMax : 0
3437
DirectoryCacheLifetime : 10
38+
DormantFileLimit : 1023
3539
EnableBandwidthThrottling : True
3640
EnableByteRangeLockingOnReadOnlyFiles : True
3741
EnableLargeMtu : True
42+
EnableLoadBalanceScaleOut : True
3843
EnableMultiChannel : True
39-
DormantFileLimit : 1023
40-
EnableSecuritySignature : True
4144
ExtendedSessionTimeout : 1000
4245
FileInfoCacheEntriesMax : 64
4346
FileInfoCacheLifetime : 10
4447
FileNotFoundCacheEntriesMax : 128
4548
FileNotFoundCacheLifetime : 5
49+
ForceSMBEncryptionOverQuic : False
4650
KeepConn : 600
4751
MaxCmds : 50
4852
MaximumConnectionCountPerServer : 32
4953
OplocksDisabled : False
50-
RequireSecuritySignature : False
5154
SessionTimeout : 60
5255
UseOpportunisticLocking : True
5356
WindowSizeThreshold : 1
57+
EncryptionCiphers : AES_128_GCM, AES_128_CCM, AES_256_GCM, AES_256_CCM
5458
```
5559

5660
This command retrieves the SMB client configuration.
5761

62+
> [!NOTE]
63+
> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652).
64+
5865
## PARAMETERS
5966

6067
### -AsJob

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

Lines changed: 52 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -26,53 +26,63 @@ The **Get-SmbServerConfiguration** cmdlet retrieves the Server Message Block (SM
2626
## EXAMPLES
2727

2828
### Example 1: Get SMB server configuration
29+
```PowerShell
30+
Get-SmbServerConfiguration
2931
```
30-
PS C:\>Get-SmbServerConfiguration
31-
AnnounceServer : False
32-
AsynchronousCredits : 64
33-
AutoShareServer : True
34-
AutoShareWorkstation : True
35-
CachedOpenLimit : 5
36-
AnnounceComment :
37-
EnableDownlevelTimewarp : False
38-
EnableLeasing : True
39-
EnableMultiChannel : True
40-
EnableStrictNameChecking : True
41-
AutoDisconnectTimeout : 0
42-
DurableHandleV2TimeoutInSeconds : 30
43-
EnableAuthenticateUserSharing : False
44-
EnableForcedLogoff : True
45-
EnableOplocks : True
46-
EnableSecuritySignature : False
47-
ServerHidden : True
48-
IrpStackSize : 15
49-
KeepAliveTime : 2
50-
MaxChannelPerSession : 32
51-
MaxMpxCount : 50
52-
MaxSessionPerConnection : 16384
53-
MaxThreadsPerQueue : 20
54-
MaxWorkItems : 1
55-
NullSessionPipes :
56-
NullSessionShares :
57-
OplockBreakWait : 35
58-
PendingClientTimeoutInSeconds : 120
59-
RequireSecuritySignature : False
60-
EnableSMB1Protocol : True
61-
EnableSMB2Protocol : True
62-
Smb2CreditsMax : 2048
63-
Smb2CreditsMin : 128
64-
SmbServerNameHardeningLevel : 0
65-
TreatHostAsStableStorage : False
66-
ValidateAliasNotCircular : True
67-
ValidateShareScope : True
68-
ValidateShareScopeNotAliased : True
69-
ValidateTargetName : True
70-
EncryptData : False
71-
RejectUnencryptedAccess : True
32+
```Output
33+
AnnounceComment :
34+
AnnounceServer : False
35+
AsynchronousCredits : 512
36+
AuditSmb1Access : False
37+
AutoDisconnectTimeout : 15
38+
AutoShareServer : True
39+
AutoShareWorkstation : True
40+
CachedOpenLimit : 10
41+
DisableSmbEncryptionOnSecureConnection : True
42+
DurableHandleV2TimeoutInSeconds : 180
43+
EnableAuthenticateUserSharing : False
44+
EnableDownlevelTimewarp : False
45+
EnableForcedLogoff : True
46+
EnableLeasing : True
47+
EnableMultiChannel : True
48+
EnableOplocks : True
49+
EnableSecuritySignature : False
50+
EnableSMB1Protocol : False
51+
EnableSMB2Protocol : True
52+
EnableStrictNameChecking : True
53+
EncryptData : False
54+
IrpStackSize : 15
55+
KeepAliveTime : 2
56+
MaxChannelPerSession : 32
57+
MaxMpxCount : 50
58+
MaxSessionPerConnection : 16384
59+
MaxThreadsPerQueue : 20
60+
MaxWorkItems : 1
61+
NullSessionPipes :
62+
NullSessionShares :
63+
OplockBreakWait : 35
64+
PendingClientTimeoutInSeconds : 120
65+
RejectUnencryptedAccess : True
66+
RequireSecuritySignature : False
67+
ServerHidden : True
68+
Smb2CreditsMax : 8192
69+
Smb2CreditsMin : 512
70+
SmbServerNameHardeningLevel : 0
71+
TreatHostAsStableStorage : False
72+
ValidateAliasNotCircular : True
73+
ValidateShareScope : True
74+
ValidateShareScopeNotAliased : True
75+
ValidateTargetName : True
76+
RestrictNamedpipeAccessViaQuic : True
77+
EnableSMBQUIC : True
78+
EncryptionCiphers : AES_128_GCM, AES_128_CCM, AES_256_GCM, AES_256_CCM
7279
```
7380

7481
This command retrieves the SMB server configuration.
7582

83+
> [!NOTE]
84+
> The EncryptionCiphers parameter is available beginning with 2022-06 Cumulative Update for Windows Server 2022 (build 20348.681), and Cumulative Update for Windows 11 (build 22000.652).
85+
7686
## PARAMETERS
7787

7888
### -AsJob

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy