I think the easiest way would be with PowerShell. Just open the shell with Admin rights, and type:
Get-WmiObject -ComputerName [remote computer name] -Class Win32_BIOS
or the short version:
gwmi -comp [remote computer name] -cl win32_bios
I think the easiest way would be with PowerShell. Just open the shell with Admin rights, and type:
Get-WmiObject -ComputerName [remote computer name] -Class Win32_BIOS
or the short version:
gwmi -comp [remote computer name] -cl win32_bios
Comments are closed