How to get hard drive utilization report of remote computers
This script will get a list of computers and output the hard drive information to a pretty html file. You can also just specify the computer(s) on the command line or use a list of computers. Browser will open with the report when completed. drivereport.htm file saved to same location.
Download Powershell Script
Save and open script file in notepad and Change the following line with your Computers.txt location.
Param (
$computers = (Get-Content “D:\HDDReport\Computers.txt”)
)
Add all your computers name in Computers.txt file as Example below
Computer1
Computer2
Computer3
etc
Note:- you must be having admin rights on computers which you want Hard drive report and you must be able to ping computers by computers name.
if you have problem to run powershell script then try this command (Set-ExecutionPolicy RemoteSigned)or go to reference link