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") |
|||
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 | ||
+ | ``` |
Revision as of 17:46, 16 November 2022
`` $size = Get-PartitionSupportedSize -DriveLetter C Resize-Partition -DriveLetter C -Size $size.SizeMax
<br />
Resize-Partition -DriveLetter C -Size $(Get-PartitionSupportedSize -DriveLetter C).SizeMax ```