
* windows/get*: add Korean translation * get-wuapiversion: fix typo * get-wuapiversion: fix typo Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * pages.ko/windows/getmac: fix typo Co-authored-by: Chooooo <contact@choo.ooo> * pages.ko/windows/get-wuapiversion: fix typo Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Chooooo <contact@choo.ooo>
647 B
647 B
Get-DedupProperties
데이터 중복 제거 정보 가져오기. 참고: 이 명령은 PowerShell을 통해서만 사용할 수 있습니다. 더 많은 정보: https://learn.microsoft.com/powershell/module/storage/get-dedupproperties.
- 드라이브의 데이터 중복 제거 정보 가져오기:
Get-DedupProperties -DriveLetter 'C'
- 드라이브 레이블을 사용하여 데이터 중복 제거 정보 가져오기:
Get-DedupProperties -FileSystemLabel 'Label'
- 입력 객체를 사용하여 드라이브의 데이터 중복 제거 정보 가져오기:
Get-DedupProperties -InputObject $(Get-Volume -DriveLetter 'E')