Files
qmi-cloud-tf-modules/win-common/scripts/resize-disk-tomax.ps1
2020-12-15 10:53:45 +01:00

3 lines
156 B
PowerShell

Write-Host "Resize Partition C to max size"
$size = Get-PartitionSupportedSize -DriveLetter C
Resize-Partition -DriveLetter C -Size $size.SizeMax | Out-Null