Question : Problem: Get BIOS information remotely

I have need to retrieve some information from the BIOS of several different machines on my domain, such as Memory information (ram), serial number, etc.  I do not have time to fly to 4 different locations across the country, so I would like to do this remotely.  Any ideas or code examples I could work with?

Answer : Problem: Get BIOS information remotely

That seemed to work just fine for me...

I did the following:

(1) Created a TXT file that had the names of the computers that I wanted to run the script against
(2) Saved that TXT file as C:\computers.txt
(3) Launched PowerShell as a domain administrator and ran the following command

I got the output pictured in the attachment.
1:
2:
3:
4:
5:
$computer = Get-Content -path C:\computers.txt
Foreach ($i in $computer)
{
Get-WmiObject Win32_BIOS -computername $computer
}
Open in New Window Select All
 
PS Output
PS Output
 
Random Solutions  
 
programming4us programming4us