Resize Windows Disk C Drive

From UVOO Tech Wiki
Revision as of 02:52, 20 June 2021 by Busk (talk | contribs) (Created page with "``` $cred = Get-Credential Invoke-Command -ComputerName myhost -ScriptBlock { Update-Disk -Number 0; Resize-Partition -DriveLetter C -Size $(Get-Partitio nSupportedSize -Driv...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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