Difference between revisions of "Resize Windows Disk C Drive"
Jump to navigation
Jump to search
(Created page with "``` $cred = Get-Credential Invoke-Command -ComputerName myhost -ScriptBlock { Update-Disk -Number 0; Resize-Partition -DriveLetter C -Size $(Get-Partitio nSupportedSize -Driv...") |
(No difference)
|
Revision as of 02:52, 20 June 2021
$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