본문 바로가기
IT/Powershell

[Powershell] Windows 디스크확장 파워쉘 명령어 Resize-Partition

by 퐁시냥 2022. 2. 10.

Windows OS에서 파워쉘 명령어로 디스크확장하는 방법을 소개하려 한다. 

Powershell Resize-Partition 명령어를 사용하면 쉽고 빠르게 디스크 확장을 할 수 있다. 

 

C드라이브나 D드라이브 용량이 부족해서 디스크 확장을 하고 싶을 때 보통 디스크 관리에서 디스크 볼륨을 확장하거나 축소하였을 텐데,

파워쉘 명령어를 입력하면 하면 더욱 쉽게 해결할 수 있다. 

난 Windows OS VM을 C드라이브 용량을 기존 50GB에서 60GB로 확장했다. 

 

파워쉘 명령어로 디스크 확장하기

Resize-Partiton

1. 시작 > "Windows Powershell" > 관리자로 실행 (관리자 권한으로 실행)

2. 아래 명령어를 입력(확장하려는 볼륨을 최대 크기로 조정, drive_letter는 확장하고 싶은 드라이브를 지정)

  • C 드라이브를 확장하고 싶을 때 
# Variable specifying the drive you want to extend
$drive_letter = "C"

# Script to get the partition sizes and then resize the volume
$size = (Get-PartitionSupportedSize -DriveLetter $drive_letter)
Resize-Partition -DriveLetter $drive_letter -Size $size.SizeMax
  • D 드라이브를 확장하고 싶을 때 
# Variable specifying the drive you want to extend
$drive_letter = "D"

# Script to get the partition sizes and then resize the volume
$size = (Get-PartitionSupportedSize -DriveLetter $drive_letter)
Resize-Partition -DriveLetter $drive_letter -Size $size.SizeMax

 

실행결과

디스크확장-Powershell-Resize-Partition
디스크확장 Powershell Resize-Partition

정상적으로 실행되면 파워쉘 화면에서 실행 중 퍼센트를 확인할 수 있다. 

C드라이브 파티션이 50GB -> 60GB 로 확장된 것을 확인할 수 있었다. 

 

 

참고

댓글