1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-08 05:53:50 +02:00
tldr/pages/windows/get-dedupproperties.md
kabir1439 28cce30f5d
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>
2024-06-08 14:04:32 +02:00

17 lines
573 B
Markdown

# Get-DedupProperties
> Gets Data Deduplication information.
> Note: This command can only be used through PowerShell.
> More information: <https://learn.microsoft.com/powershell/module/storage/get-dedupproperties>.
- Get Data Deduplication information of the drive:
`Get-DedupProperties -DriveLetter 'C'`
- Get Data Deduplication information of the drive using the drive label:
`Get-DedupProperties -FileSystemLabel 'Label'`
- Get Data Dedpulication information of the drive using the input object:
`Get-DedupProperties -InputObject $(Get-Volume -DriveLetter 'E')`