To check disk space in Windows, you have several options. Here are the most common methods:
Method 1: Using File Explorer
- Open File Explorer: You can do this by clicking on the folder icon in the taskbar or pressing
Windows + E. - This PC: In the left sidebar, click on "This PC."
- Check Drives: You will see all your drives listed under "Devices and drives." Each drive will display a bar indicating how much space is used and how much is free. You can also right-click on a drive and select "Properties" to see detailed information.
Method 2: Using Command Prompt
-
Open Command Prompt: Press
Windows + R, typecmd, and hit Enter. -
Run the Command: Type the following command and press Enter:
wmic logicaldisk get size,freespace,captionThis command will display the total size and free space for each drive.
Example Output
The output will look something like this:
Caption FreeSpace Size
C: 50000000000 100000000000
D: 20000000000 50000000000
- Caption: The drive letter.
- FreeSpace: Amount of free space in bytes.
- Size: Total size of the drive in bytes.
Method 3: Using PowerShell
-
Open PowerShell: Press
Windows + Xand select "Windows PowerShell." -
Run the Command: Type the following command and press Enter:
Get-PSDrive -PSProvider FileSystemThis will list all drives along with their used and free space.
Further Learning
For more advanced disk management tasks, you might want to explore the Disk Management tool, which you can access by right-clicking on "This PC" and selecting "Manage," then navigating to "Disk Management."
If you have any more questions or need further assistance, feel free to ask!
