Files
qmi-cloud-tf-modules/win-common/scripts/resize-disk-tomax.ps1
Manuel Romero 7fcefed82f fix
2022-10-06 16:56:12 +02:00

8 lines
242 B
PowerShell

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