Skip to content

Commit 97a3278

Browse files
committed
2 parents 175a89d + 28f4dc8 commit 97a3278

File tree

2 files changed

+19
-15
lines changed

2 files changed

+19
-15
lines changed

docset/windows/fileserverresourcemanager/get-fsrmquota.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ The **Get-FsrmQuota** cmdlet gets a File Server Resource Manager (FSRM) quota or
3636

3737
### Example 1: Get all quotas
3838
```
39-
PS C:\> Get-FsrmQuotaTemplate
39+
PS C:\> Get-FsrmQuota
4040
```
4141

4242
This command gets all quotas on the server.
4343

4444
### Example 2: Get quotas by using a path
4545
```
46-
PS C:\> Get-FsrmQuotaTemplate -Path "C:\Shares\..."
46+
PS C:\> Get-FsrmQuota -Path "C:\Share01\..."
4747
```
4848

4949
This command gets all of the quotas in C:\Share01 plus all of the quotas in all subfolders of C:\Share01.
@@ -95,10 +95,10 @@ Specifies the local folder that contains the quota.
9595
This parameter supports recursive and wildcard paths.
9696
To specify a recursive path, add \...
9797
to a path.
98-
For example, C:\ Share01\...
99-
indicates all of the quotas in C:\ Share1 plus all the quotas in any and all subfolders of C:\ Share01.
100-
To specify a wildcard in a path, you can add the asterisk (*) and the question mark (?) to a path.
101-
For example, C:\ Share01\*A indicates all of the quotas in C:\ Share01 plus all the quotas in subfolders of C:\ Share01 that have a name that begins with the letter A.
98+
For example, C:\Share01\...
99+
indicates all of the quotas in C:\Share01 plus all the quotas in any and all subfolders of C:\Share01.
100+
To specify a wildcard in a path, you can add the asterisk (*) and the question mark (?) to a path.
101+
For example, C:\Share01\*A indicates all of the quotas in C:\Share01 plus all the quotas in subfolders of C:\Share01 that have a name that begins with the letter A.
102102
103103
```yaml
104104
Type: String
@@ -142,9 +142,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
142142

143143
## RELATED LINKS
144144

145-
[New-FsrmQuotaTemplate](./New-FsrmQuotaTemplate.md)
145+
[New-FsrmQuota](./New-FsrmQuota.md)
146146

147-
[Remove-FsrmQuotaTemplate](./Remove-FsrmQuotaTemplate.md)
147+
[Remove-FsrmQuota](./Remove-FsrmQuota.md)
148148

149-
[Set-FsrmQuotaTemplate](./Set-FsrmQuotaTemplate.md)
149+
[Reset-FsrmQuota](./Reset-FsrmQuota.md)
150+
151+
[Set-FsrmQuota](./Set-FsrmQuota.md)
152+
153+
[Update-FsrmQuota](./Update-FsrmQuota.md)
150154

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)