What is the command(s) helps to get information of the Hard disk & processor in a remote windows machine ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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 cpuTo get hard disk information try either
wmic diskdriveorwmic logicaldiskdepending 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:
You can then examine the files
cpu.txt,diskdrive.txtandlogicaldisk.txtat your convenience.