File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ VMS5 * D:\VMS
68
68
69
69
This command retrieves the SMB shares on the computer.
70
70
71
- ### Example 2: Get SMB shares on a specific computer
71
+ ### Example 2: Get a specific SMB share on a specific computer
72
72
```
73
73
PS C:\>Get-SmbShare -Name "VMS1"
74
74
Name ScopeName Path Description
@@ -78,7 +78,7 @@ VMS1 Contoso-FS I:\VMS
78
78
79
79
This command retrieves the SMB shares on the computer named VMS1.
80
80
81
- ### Example 3: Display information about the SMB share named 'VMS1' on the local computer
81
+ ### Example 3: Display information about the SMB share named 'VMS1' on the local computer in a list
82
82
```
83
83
PS C:\>Get-SmbShare -Name "VMS1" | Format-List
84
84
Name : VMS1
@@ -89,7 +89,7 @@ Description :
89
89
90
90
This command displays the information about the SMB share named 'VMS1' on the local computer as a formatted list.
91
91
92
- ### Example 3: Display all properties about a specific SMB share on the local computer
92
+ ### Example 3: Display all properties about a specific SMB share on the local computer in a list
93
93
```
94
94
PS C:\>Get-SmbShare -Name "VMS1" | Format-List -Property *
95
95
PresetPathAcl : System.Security.AccessControl.DirectorySecurity
You can’t perform that action at this time.
0 commit comments