(view source code of bios.bat as plain text)
@ECHO OFF
:: WMI query to list all properties and values of the Win32_BIOS class
:: This batch file was generated using the WMI Code Generator, Version 1.30
:: http://www.robvanderwoude.com/updates/wmigen.html
IF "%~1"=="" (
SET Node=%ComputerName%
) ELSE (
SET Node=%~1
)
WMIC.EXE /Node:%Node% /Output:STDOUT Path Win32_BIOS Get Name,Version,Manufacturer,SMBIOSBIOSVersion /Format:LIST
page last modified: 2024-04-16; loaded in 0.0050 seconds