(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.htmlIF "%~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: 2025-10-11; loaded in 0.0079 seconds