3 lines
156 B
PowerShell
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 |