set-volume, enable-pnpdevice, get-dedupproperties: add pages (#12831)

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: spageektti <git@spageektti.cc>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
kabir1439
2024-06-08 17:34:32 +05:30
committed by GitHub
parent 4a958a4a08
commit 28cce30f5d
3 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# Set-Volume
> Sets or changes the file system label of an existing volume.
> Note: This command can only be used through PowerShell.
> More information: <https://learn.microsoft.com/powershell/module/storage/set-volume>.
- Change the file system label of a volume identified by drive letter:
`Set-Volume -DriveLetter "D" -NewFileSystemLabel "DataVolume"`
- Change the file system label of a volume identified by the system label:
`Set-Volume -FileSystemLabel "OldLabel" -NewFileSystemLabel "NewLabel"`
- Modify the properties of a volume using a volume object:
`Set-Volume -InputObject $(Get-Volume -DriveLetter "E") -NewFileSystemLabel "Backup"`
- Specify the Data Deduplication mode for the volume:
`Set-Volume -DriveLetter "D" -DedupMode Backup`