Resize Windows Disk C Drive
Jump to navigation
Jump to search
$cred = Get-Credential Invoke-Command -ComputerName myhost -ScriptBlock { Update-Disk -Number 0; Resize-Partition -DriveLetter C -Size $(Get-Partitio nSupportedSize -DriveLetter C).SizeMax} -cred $cred