What is the command(s) helps to get information of the Hard disk & processor in a remote windows machine ?
Here's how to run CHKDSK from Command Prompt on Windows: Type cmd (Command Prompt) in the Start menu search bar, then click Run as administrator. Type chkdsk and hit Enter. CHKDSK will scan for drive errors and let you know if it found any you should repair, but it won't try to fix them without a command.
Click the folder icon on the Windows 10 taskbar. Click the arrow to the left of Quick Access. Click the external hard drive name to access it. For some users, you may need to press This PC from the menu that appears, and then follow that up with double-clicking the external hard drive.
I would use "systeminfo", that's what I would use to find most things about my computer
If you can rely on running on Windows Vista or later, then you can use WMIC. For details on WMIC, check out http://msdn.microsoft.com/en-us/library/windows/desktop/aa394531(v=vs.85).aspx.
To get CPU information try wmic cpu
To get hard disk information try either wmic diskdrive
or wmic logicaldisk
depending on whether you want information of the disk devices or logical drives.
Since the lines will often wrap, making it difficult to read in a console window, try this variant to redirect the output to text files:
wmic cpu > cpu.txt
wmic diskdrive > diskdrive.txt
wmic logicaldisk > logicaldisk.txt
You can then examine the files cpu.txt
, diskdrive.txt
and logicaldisk.txt
at your convenience.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With