Difference between revisions of "Windows Disks"
Jump to navigation
Jump to search
(Created page with "Resize-Partition -DriveLetter C -Size $(Get-PartitionSupportedSize -DriveLetter C).SizeMax") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | ``` | ||
+ | $size = Get-PartitionSupportedSize -DriveLetter C | ||
+ | Resize-Partition -DriveLetter C -Size $size.SizeMax | ||
+ | ``` | ||
+ | |||
+ | ``` | ||
Resize-Partition -DriveLetter C -Size $(Get-PartitionSupportedSize -DriveLetter C).SizeMax | Resize-Partition -DriveLetter C -Size $(Get-PartitionSupportedSize -DriveLetter C).SizeMax | ||
+ | ``` |
Latest revision as of 17:46, 16 November 2022
$size = Get-PartitionSupportedSize -DriveLetter C Resize-Partition -DriveLetter C -Size $size.SizeMax
Resize-Partition -DriveLetter C -Size $(Get-PartitionSupportedSize -DriveLetter C).SizeMax