3 lines
155 B
PowerShell
3 lines
155 B
PowerShell
Write-Log "Resize Partition C to max size"
|
|
$size = Get-PartitionSupportedSize -DriveLetter C
|
|
Resize-Partition -DriveLetter C -Size $size.SizeMax | Out-Null |