Skip to content

Commit 28f4dc8

Browse files
Merge pull request #72 from rodmhgl/patch-1
Corrects examples in Get-SMBShare.md
2 parents f8b7af7 + 00c6ec5 commit 28f4dc8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docset/windows/smbshare/get-smbshare.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ VMS1 Contoso-FS I:\VMS
7878

7979
This 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
```
8383
PS C:\>Get-SmbShare -Name "VMS1" | Format-List
8484
Name : VMS1
@@ -87,9 +87,9 @@ Path : I:\VMS
8787
Description :
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
```
9494
PS C:\>Get-SmbShare -Name "VMS1" | Format-List -Property *
9595
PresetPathAcl : System.Security.AccessControl.DirectorySecurity
@@ -120,9 +120,9 @@ CimInstanceProperties : {AvailabilityType, CachingMode, CATimeout, ConcurrentUse
120120
CimSystemProperties : 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
```
127127
PS C:\>Get-SmbShare | Where-Object -Property AvailabilityType -Eq ScaleOut
128128
Name ScopeName Path Description
@@ -132,7 +132,7 @@ VMS3 Contoso-SO C:\ClusterStorage\Vo
132132
VMS4 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

Comments
 (0)