@@ -37,7 +37,7 @@ being displayed by the computer.
3737### Example 1: Get SMB shares on a local computer
3838
3939``` powershell
40- PS C:\\> Get-SMBShare
40+ Get-SMBShare
4141Name ScopeName Path Description
4242---- --------- ---- -----------
4343ADMIN$ * C:\\Windows Remote Admin
@@ -53,7 +53,7 @@ This command retrieves the SMB shares on the computer.
5353### Example 2: Get a specific SMB share on the local computer
5454
5555``` powershell
56- PS C:\\> Get-SmbShare -Name "VMS1"
56+ Get-SmbShare -Name "VMS1"
5757Name ScopeName Path Description
5858---- --------- ---- -----------
5959VMS1 * I:\VMS
@@ -64,7 +64,7 @@ This command retrieves information about the SMB share named `VMS1` on the local
6464### Example 3: Display information about the SMB shares on a remote computer
6565
6666``` powershell
67- PS C:\\>get-smbshare -CimSession "NEDFS1"
67+ Get-SmbShare -CimSession "NEDFS1"
6868
6969Name ScopeName Path Description PSComputerName
7070---- --------- ---- ----------- --------------
@@ -76,15 +76,14 @@ IPC$ * Remote IPC ae-dfsr-sr-01
7676IT dept * D:\\data\IT dept ae-dfsr-sr-01
7777procedures * D:\\hr\procedures ae-dfsr-sr-01
7878VHD and ISO * D:\\data\VHD and ISO ae-dfsr-sr-01
79-
8079```
8180
8281This command displays the information about the SMB shares on the remote computer ` NEDFS1 ` .
8382
8483### Example 4: Display all properties about a specific SMB share on the local computer in a list
8584
8685``` powershell
87- PS C:\\> Get-SmbShare -Name "VMS1" | Format-List -Property *
86+ Get-SmbShare -Name "VMS1" | Format-List -Property *
8887PresetPathAcl : System.Security.AccessControl.DirectorySecurity
8988ShareState : Online
9089AvailabilityType : Clustered
@@ -119,7 +118,7 @@ as a formatted list.
119118### Example 5: Get shares on the local failover cluster computer that have scale out availability
120119
121120``` powershell
122- PS C:\\> Get-SmbShare | Where-Object -Property AvailabilityType -Eq ScaleOut
121+ Get-SmbShare | Where-Object -Property AvailabilityType -Eq ScaleOut
123122Name ScopeName Path Description
124123---- --------- ---- -----------
125124ClusterStorage$ Contoso-SO C:\\ClusterStorage Cluster Shared Volumes Def...
@@ -132,7 +131,7 @@ This command retrieves the SMB shares on the computer that have scaled out avail
132131### Example 6: Get shares that are connected to a local failover cluster file server resource named "Contoso-FS"
133132
134133``` powershell
135- PS C:\\> Get-SmbShare -ScopeName "Contoso-FS"
134+ Get-SmbShare -ScopeName "Contoso-FS"
136135Name ScopeName Path Description
137136---- --------- ---- -----------
138137I$ Contoso-FS I:\ Cluster Default Share
@@ -222,7 +221,7 @@ Accept wildcard characters: False
222221### -CimSession
223222
224223Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
225- object, such as the output of a [New-CimSession](https://go.microsoft.com/fwlink/p/?LinkId=227967 )
224+ object, such as the output of a [New-CimSession](/powershell/module/cimcmdlets/new-cimsession )
226225or [Get-CimSession](/powershell/module/cimcmdlets/get-cimsession) cmdlet. The default is the
227226current session on the local computer.
228227
@@ -337,8 +336,8 @@ Accept wildcard characters: False
337336
338337### -IsolatedTransport
339338
340- Specifies whether to use an isolated transport for the SMB share. An isolated transport provides
341- additional security by encrypting and signing SMB traffic. The default value is ` $false` .
339+ Treats this share to be a distinct file server instance. Clients will establish a new set of
340+ connections to access the share .
342341
343342` ` ` yaml
344343Type : Boolean[]
@@ -488,8 +487,12 @@ Accept wildcard characters: False
488487
489488# ## -SmbInstance
490489
491- Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this
492- cmdlet.
490+ Specifies the SMB share instance type. Accepted values are :
491+
492+ - `Default` : Used for operations where a client device opens a file on a share on the server.
493+ - `CSV` : Used by Windows Failover Clusters.
494+ - `SBL` : Used by Storage Spaces Direct.
495+ - `SR` : Used by Storage Replica.
493496
494497` ` ` yaml
495498Type: SmbInstance
@@ -546,7 +549,7 @@ Accept wildcard characters: False
546549This cmdlet supports the common parameters : -Debug, -ErrorAction, -ErrorVariable,
547550-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
548551-WarningAction, and -WarningVariable. For more information, see
549- [about_CommonParameters](http://go. microsoft.com/fwlink/?LinkID=113216 ).
552+ [about_CommonParameters](/powershell/module/ microsoft.powershell.core/about/about_commonparameters ).
550553
551554# # INPUTS
552555
0 commit comments