HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

Get-DedupProperties — Get Data Deduplication information. Note: This command can only be used through PowerShell. More inf

Submitted by: @import:tldr-pages··
0
Viewed 0 times
get-deduppropertiescommandnoteclideduplicationinformationdataget
windows

Problem

How to use the Get-DedupProperties command: Get Data Deduplication information. Note: This command can only be used through PowerShell. More information: <https://learn.microsoft.com/powershell/module/storage/get-dedupproperties>.

Solution

Get-DedupProperties — Get 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')

Code Snippets

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')

Context

tldr-pages: windows/Get-DedupProperties

Revisions (0)

No revisions yet.