@@ -78,7 +78,7 @@ VMS1 Contoso-FS I:\VMS
7878
7979This command retrieves the SMB shares on the computer named VMS1.
8080
81- ### Example 3: Display information about SMB shares on a specific computer
81+ ### Example 3: Display information about the SMB share named 'VMS1' on the local computer
8282```
8383PS C:\>Get-SmbShare -Name "VMS1" | Format-List
8484Name : VMS1
@@ -87,9 +87,9 @@ Path : I:\VMS
8787Description :
8888```
8989
90- This command displays the information about the SMB shares on the computer named VMS1 as a formatted list.
90+ This command displays the information about the SMB share named 'VMS1' on the local computer as a formatted list.
9191
92- ### Example 3: Display all properties about SMB shares on a specific computer
92+ ### Example 3: Display all properties about a specific SMB share on the local computer
9393```
9494PS C:\>Get-SmbShare -Name "VMS1" | Format-List -Property *
9595PresetPathAcl : System.Security.AccessControl.DirectorySecurity
@@ -120,9 +120,9 @@ CimInstanceProperties : {AvailabilityType, CachingMode, CATimeout, ConcurrentUse
120120CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties
121121```
122122
123- This command displays all of the information about the SMB shares on the computer named VMS1 as a formatted list.
123+ This command displays all of the information about the SMB share named 'VMS1' on the local computer as a formatted list.
124124
125- ### Example 5: Get shares on a computer that has scaled out availability
125+ ### Example 5: Get shares on the local computer that have scaled out availability
126126```
127127PS C:\>Get-SmbShare | Where-Object -Property AvailabilityType -Eq ScaleOut
128128Name ScopeName Path Description
@@ -132,7 +132,7 @@ VMS3 Contoso-SO C:\ClusterStorage\Vo
132132VMS4 Contoso-SO C:\ClusterStorage\Volume2\VMS
133133```
134134
135- This command retrieves the SMB shares on the computer that has scaled out availability.
135+ This command retrieves the SMB shares on the computer that have scaled out availability.
136136
137137### Example 6: Get shares that are connected to a specific server
138138```
0 commit comments