NAME
Get-SmbConnection
SYNOPSIS
Retrieves the connections established from the SMB client to the SMB servers.SYNTAX
Get-SmbConnection [[-ServerName]
] [[-UserName] ] [-CimSession ] [-SmbInstance {Default | CSV}] [-ThrottleLimit
] [ ] DESCRIPTION
The Get-SmbConnection cmdlet retrieves the connections established from the Server Message Block (SMB) client to
the SMB servers. Users can connect to an SMB share using credentials different than the associated logon credentials so that there will be a connection listed per share per user logon per credential used.PARAMETERS
-CimSession [
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such] as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local
computer. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false-ServerName [
Specifies that the connections made to the server are enumerated. Required? false Position? 2 Default value none] Accept pipeline input? True (ByPropertyName)
Accept wildcard characters? false-SmbInstance [
Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this cmdlet. Required? false Position? named Default value none] Accept pipeline input? true(ByPropertyName)
Accept wildcard characters? false-ThrottleLimit [
Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0 is entered, then Windows PowerShellr calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -UserName [
Specifies that the connections made by the user are enumerated. Required? false Position? 3 Default value none] Accept pipeline input? True (ByPropertyName)
Accept wildcard characters? falseThis cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216). INPUTS
NoneOUTPUTS
Microsoft.Management.Infrastructure.CimInstance#root/Microsoft/Windows/SMB/MSFT_SmbConnection This cmdlet returns a MSFT_SmbConnection object that represents the per share per user logon per credentials used to connect.Example 1: Get connections from an SMB client to SMB servers
PS C:\>Get-SmbConnection
ServerName ShareName UserName Credential Dialect NumOpens
---------- --------- -------- ---------- ------- --------
Contoso-FS1 VMS5 Contoso\Contoso-HV1$ Contoso\Contoso-HV1$ 3.00 1
Contoso-FS1 VMS5 NT VIRTUAL MACHI... Contoso\Contoso-HV1$ 3.00 3
Contoso-FS VMS1 Contoso\Contoso-HV1$ Contoso\Contoso-HV1$ 3.00 1
Contoso-FS VMS1 NT VIRTUAL MACHI... Contoso\Contoso-HV1$ 3.00 5
Contoso-SO VMS3 Contoso\Contoso-HV1$ Contoso\Contoso-HV1$ 3.00 1
Contoso-SO VMS3 NT VIRTUAL MACHI... Contoso\Contoso-HV1$ 3.00 1
Contoso-SO VMS3 NT VIRTUAL MACHI... Contoso\Contoso-HV1$ 3.00 2
This command retrieves the connections established from the SMB client to the SMB servers.Example 2: Get connections from an SMB server
PS C:\>Get-SmbConnection -ServerName Contoso-FS | Select-Object -Property *
ContinuouslyAvailable : TrueCredential : Contoso\Contoso-HV1$
Dialect : 3.00 Encrypted : False NumOpens : 1ServerName : Contoso-FS
ShareName : VMS1
UserName : Contoso\Contoso-HV1$
PSComputerName :
CimClass : ROOT/Microsoft/Windows/SMB:MSFT_SmbConnection CimInstanceProperties : {ContinuouslyAvailable, Credential, Dialect, Encrypted...} CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties ContinuouslyAvailable : TrueCredential : Contoso\Contoso-HV1$
Dialect : 3.00 Encrypted : False NumOpens : 5ServerName : Contoso-FS
ShareName : VMS1
UserName : NT VIRTUAL MACHINE\F357A523-592B-4CA5-B61E-C06D5627E1C9
PSComputerName :
CimClass : ROOT/Microsoft/Windows/SMB:MSFT_SmbConnection CimInstanceProperties : {ContinuouslyAvailable, Credential, Dialect, Encrypted...} CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemPropertiesThis command retrieves the connections established from the SMB client to the SMB server named Contoso-FS.
RELATED LINKS
Get-SmbMultichannelConnection
Update-SmbMultichannelConnection