-
Notifications
You must be signed in to change notification settings - Fork 603
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3909 from Xelu86/DedupUpdate
NEW ReFS Dedup command set for WS25
- Loading branch information
Showing
15 changed files
with
729 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
...t/winserver2025-ps/Microsoft.ReFsDedup.Commands/Clear-ReFSDedupScrubSchedule.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
--- | ||
external help file: Microsoft.ReFsDedup.Commands.dll-Help.xml | ||
Module Name: Microsoft.ReFsDedup.Commands | ||
ms.date: 11/20/2024 | ||
online version: https://learn.microsoft.com/powershell/module/microsoft.refsdedup.commands/clear-refsdedupscrubschedule?view=windowsserver2025-ps&wt.mc_id=ps-gethelp | ||
schema: 2.0.0 | ||
title: Clear-ReFSDedupScrubSchedule | ||
--- | ||
|
||
# Clear-ReFSDedupScrubSchedule | ||
|
||
## SYNOPSIS | ||
Clears the deduplication scrub schedule on a specified ReFS volume. | ||
|
||
## SYNTAX | ||
|
||
``` | ||
Clear-ReFSDedupScrubSchedule [-Volume] <String> [<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
|
||
The `Clear-ReFSDedupScrubSchedule` cmdlet clears the deduplication scrub schedule on a specified | ||
ReFS volume. When you clear the schedule, any pending scrub jobs will be cancelled and the schedule | ||
will be reset. | ||
|
||
## EXAMPLES | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Clear-ReFSDedupScrubSchedule -Volume "D:" | ||
``` | ||
|
||
This example clears the deduplication scrub schedule on the `D:` ReFS volume. | ||
|
||
## PARAMETERS | ||
|
||
### -Volume | ||
|
||
Specifies the volume on which to clear the ReFS deduplication scrub schedule. Enter one or more | ||
volume IDs, drive letters, or volume GUID paths. For drive letters, use the format `D:`. For volume | ||
GUID paths, use the format `\\?\Volume{{GUID}}\`. Separate multiple volumes with a comma. | ||
|
||
```yaml | ||
Type: String | ||
Parameter Sets: (All) | ||
Aliases: | ||
|
||
Required: True | ||
Position: 0 | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### CommonParameters | ||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, | ||
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, | ||
-WarningAction, and -WarningVariable. For more information, see | ||
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). | ||
## INPUTS | ||
### None | ||
## OUTPUTS | ||
### System.Object | ||
## NOTES | ||
## RELATED LINKS | ||
[Get-ReFSDedupScrubSchedule](Get-ReFSDedupScrubSchedule.md) | ||
[Set-ReFSDedupScrubSchedule](Set-ReFSDedupScrubSchedule.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.