Files
qmi-cloud-tf-modules/win-common/scripts/resize-disk-tomax.ps1
2022-10-04 13:51:00 +02:00

8 lines
238 B
PowerShell

Write-Host "--- Resize Partition C to max size"
try {
$size = Get-PartitionSupportedSize -DriveLetter C
Resize-Partition -DriveLetter C -Size $size.SizeMax -AsJob
} catch {
Write-Host "--- Disk already at its maximum size."
}