Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docset/windows/smbshare/get-smbshare.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ VMS5 * D:\VMS

This command retrieves the SMB shares on the computer.

### Example 2: Get SMB shares on a specific computer
### Example 2: Get a specific SMB share on a specific computer
```
PS C:\>Get-SmbShare -Name "VMS1"
Name ScopeName Path Description
Expand All @@ -78,7 +78,7 @@ VMS1 Contoso-FS I:\VMS

This command retrieves the SMB shares on the computer named VMS1.

### Example 3: Display information about the SMB share named 'VMS1' on the local computer
### Example 3: Display information about the SMB share named 'VMS1' on the local computer in a list
```
PS C:\>Get-SmbShare -Name "VMS1" | Format-List
Name : VMS1
Expand All @@ -89,7 +89,7 @@ Description :

This command displays the information about the SMB share named 'VMS1' on the local computer as a formatted list.

### Example 3: Display all properties about a specific SMB share on the local computer
### Example 3: Display all properties about a specific SMB share on the local computer in a list
```
PS C:\>Get-SmbShare -Name "VMS1" | Format-List -Property *
PresetPathAcl : System.Security.AccessControl.DirectorySecurity
Expand Down