Skip to content

Commit eaa8f5e

Browse files
authored
Merge pull request MicrosoftDocs#8267 from priyanshamishra/patch-6
Update Set-CsClsConfiguration.md
2 parents 3a5bda5 + a4ff8ad commit eaa8f5e

File tree

1 file changed

+101
-0
lines changed

1 file changed

+101
-0
lines changed

skype/skype-ps/skype/Set-CsClsConfiguration.md

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Set-CsClsConfiguration [[-Identity] <XdsIdentity>] [-CacheFileLocalFolders <Stri
2929
[-Force] [-MinimumClsAgentServiceVersion <UInt32>] [-Regions <PSListModifier>] [-Scenarios <PSListModifier>]
3030
[-SearchTerms <PSListModifier>] [-SecurityGroups <PSListModifier>] [-TmfFileSearchPath <String>] [-WhatIf]
3131
[-NetworkUsagePacketSize <UInt32>] [-NetworkUsageThreshold <UInt32>] [-Version <String>] [<CommonParameters>]
32+
[-ETLMinFreeSpaceInDiskInBytes<Int64>] [-ETLEnoughFreeSpaceInDiskInBytes<Int64>] [-ETLMinQuotaInBytes <Int64>] [-ETLMaxQuotaInBytes <Int64>] [-ETLEnoughQuotaInBytes <Int64>] [EtlMaxRetentionInDays <UInt32>]
3233
```
3334

3435
### Instance
@@ -40,6 +41,7 @@ Set-CsClsConfiguration [-CacheFileLocalFolders <String>] [-CacheFileLocalMaxDisk
4041
[-MinimumClsAgentServiceVersion <UInt32>] [-Regions <PSListModifier>] [-Scenarios <PSListModifier>]
4142
[-SearchTerms <PSListModifier>] [-SecurityGroups <PSListModifier>] [-TmfFileSearchPath <String>] [-WhatIf]
4243
[-NetworkUsagePacketSize <UInt32>] [-NetworkUsageThreshold <UInt32>] [-Version <String>] [<CommonParameters>]
44+
[-ETLMinFreeSpaceInDiskInBytes<Int64>] [-ETLEnoughFreeSpaceInDiskInBytes<Int64>] [-ETLMinQuotaInBytes <Int64>] [-ETLMaxQuotaInBytes <Int64>] [-ETLEnoughQuotaInBytes <Int64>] [EtlMaxRetentionInDays <UInt32>]
4345
```
4446

4547
## DESCRIPTION
@@ -496,6 +498,105 @@ Accept pipeline input: False
496498
Accept wildcard characters: False
497499
```
498500

501+
### -ETLMinFreeSpaceInDiskInBytes
502+
Minimum allowed free disk space to have on the ETL folder drive.
503+
If disk reaches this size and ETL Folder size is more than ETLMinQuotaInBytes, Purge executes.
504+
505+
```yaml
506+
Type: Int64
507+
Parameter Sets: (All)
508+
Aliases:
509+
Applicable: Skype for Business Server 2019
510+
511+
Required: False
512+
Position: Named
513+
Default value: 2000000000
514+
Accept pipeline input: False
515+
Accept wildcard characters: False
516+
```
517+
518+
### -ETLEnoughFreeSpaceInDiskInBytes
519+
Enough free disk space to make purge stop due low free disk space.
520+
If disk size reaches this size, purge stops.
521+
522+
```yaml
523+
Type: Int64
524+
Parameter Sets: (All)
525+
Aliases:
526+
Applicable: Skype for Business Server 2019
527+
528+
Required: False
529+
Position: Named
530+
Default value: 4000000000
531+
Accept pipeline input: False
532+
Accept wildcard characters: False
533+
```
534+
535+
### -ETLMinQuotaInBytes
536+
Min quota allowed for ETL files, even if disk size is less than ETLMinFreeSpaceInDiskInBytes.
537+
538+
```yaml
539+
Type: Int64
540+
Parameter Sets: (All)
541+
Aliases:
542+
Applicable: Skype for Business Server 2019
543+
544+
Required: False
545+
Position: Named
546+
Default value: 3221225472
547+
Accept pipeline input: False
548+
Accept wildcard characters: False
549+
```
550+
551+
### -ETLMaxQuotaInBytes
552+
Max allowed quota used by ETL files before purge starts
553+
554+
```yaml
555+
Type: Int64
556+
Parameter Sets: (All)
557+
Aliases:
558+
Applicable: Skype for Business Server 2019
559+
560+
Required: False
561+
Position: Named
562+
Default value: 400000000000
563+
Accept pipeline input: False
564+
Accept wildcard characters: False
565+
```
566+
567+
### -ETLEnoughQuotaInBytes
568+
Enough ETL usage quota to make purge stop due max quota condition reached
569+
570+
```yaml
571+
Type: Int64
572+
Parameter Sets: (All)
573+
Aliases:
574+
Applicable: Skype for Business Server 2019
575+
576+
Required: False
577+
Position: Named
578+
Default value: 250000000000
579+
Accept pipeline input: False
580+
Accept wildcard characters: False
581+
```
582+
583+
584+
### -ETLMaxRetentionInDays
585+
Maximum retention time in days for ETL files
586+
587+
```yaml
588+
Type: UInt32
589+
Parameter Sets: (All)
590+
Aliases:
591+
Applicable: Skype for Business Server 2019
592+
593+
Required: False
594+
Position: Named
595+
Default value: 14
596+
Accept pipeline input: False
597+
Accept wildcard characters: False
598+
```
599+
499600
### CommonParameters
500601
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
501602

0 commit comments

Comments
 (0)