"Disk Management", right-click the disk to allocate space, select "Shrink Volume", enter the space to be reduced size and click Reduce. Use the command prompt: Open the command prompt as an administrator, enter diskpart, list disk to find the disk number, select disk X to select the disk, shrink desired=Y to reduce the space, create partition primary size=Z to create a new partition, format fs=ntfs label="New Volu"/> "Disk Management", right-click the disk to allocate space, select "Shrink Volume", enter the space to be reduced size and click Reduce. Use the command prompt: Open the command prompt as an administrator, enter diskpart, list disk to find the disk number, select disk X to select the disk, shrink desired=Y to reduce the space, create partition primary size=Z to create a new partition, format fs=ntfs label="New Volu">

Home >System Tutorial >Windows Series >How to allocate disk space in win11

How to allocate disk space in win11

下次还敢
下次还敢Original
2024-04-14 16:21:141053browse

There are two ways to allocate disk space in Win11: use the disk management tool: right-click this computer, select "Manage" > "Disk Management", right-click the disk to allocate space, and select "Shrink Volume" ”, enter the amount of space you want to shrink and click Shrink. Use the command prompt: Open the command prompt as an administrator, enter diskpart, list disk to find the disk number, select disk X to select the disk, shrink desired=Y to reduce the space, create partition primary size=Z to create a new partition, format fs=ntfs label="New Volu

How to allocate disk space in win11

##How to allocate Win11 disk space

The method to allocate Win11 disk space is as follows:

1. Use the disk management tool

    Open File Explorer, right-click this computer and select "Manage".
  • On the computer In the management window, expand "Storage" and select "Disk Management"
  • Right-click the disk where you want to allocate space, select "Shrink Volume" and enter
  • in the "Shrink to" field. The amount of space to shrink (in MB).
  • Click the Shrink button.

2. Use the command prompt

    Open the command prompt as an administrator.
  • Enter the following command:
<code>diskpart</code>
    Enter the following command:
<code>list disk</code>
    Find the disk number to which you want to allocate space.
  • Enter the following command instead of X:
<code>select disk X</code>
    Enter the following command:
<code>shrink desired=Y</code>
    Replace Y with the amount of space you want to shrink (in MB).
  • Enter the following command:
<code>create partition primary size=Z</code>
    Replace Z with the size you want to allocate The size of the new partition in MB.
  • Enter the following command:
<code>format fs=ntfs label="New Volume"</code>
    Replace "New Volume" with the label of the new partition.
  • Enter the following command:
<code>exit</code>

The above is the detailed content of How to allocate disk space in win11. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn