mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-04 05:43:47 +00:00
23 lines
667 B
Plaintext
23 lines
667 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, windows]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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')`
|