Hard Disk

How to use Windows PowerShell to find information about Hard Drive

How to use Windows PowerShell to find information about Hard Drive

Windows PowerShell is a powerful utility that comes preinstalled on Windows 10. Microsoft has been pushing it hard to become useful for developers and IT professionals. Windows PowerShell can also be used to manage hard drive and SSDs. In this post, we will check how to use PowerShell to find information about any class of hard drive.

Use PowerShell to find information about hard drive

There are two things that you can do using PowerShell to get physical disk information, including serial number, disk size, free space, and more.

  1. Get General Information.
  2. Retrieve detailed information.

The command works with all the storage devices connected to your computer. You can identify the type of device by looking at the Device type column. The column displays an integer that corresponds to the type of disk drive the logical disk represents.

1] Get General Information

Open Windows PowerShell and execute the following command to get general information about the connected hard drives:

get-wmiobject -class win32_logicaldisk

The results will display DeviceID, DriveType, ProviderName, FreeSpace, Size, VolumeName.

2] Retrieve detailed information

Open Windows PowerShell once again, and type in the following code and hit Enter:

wmic diskdrive get 

The following are the parameters, and in case of multiple parameters, they should be separated by a comma:

The result will be sorted, a tabular form of the requested data inside the Windows PowerShell command line.

You can read more about the commands on docs.microsoft.com.

Remap your mouse buttons differently for different software with X-Mouse Button Control
Maybe you need a tool that could make your mouse's control change with every application that you use. If this is the case, you can try out an applica...
Microsoft Sculpt Touch Wireless Mouse Review
I recently read about the Microsoft Sculpt Touch wireless mouse and decided to buy it. After using it for a while, I decided to share my experience wi...
AppyMouse On-screen Trackpad and Mouse Pointer for Windows Tablets
Tablet users often miss the mouse pointer, especially when they are habitual to using the laptops. The touchscreen Smartphones and tablets come with m...