[ To find bios version ]
AIX | prtconf | awk -F: '/Firmware Version:/ { print $2 }' | sed -e 's/IBM,//' |
HP-UX | (pa-risc)
/opt/ignite/bin/print_manifest (ia64) machinfo | awk '/Firmware revision/ { print $NF }' |
SunOS | (i386)
smbios -t SMB_TYPE_BIOS | grep 'Version String' | awk -F: '{ print $2
}' (sparc) prtconf -pv | grep OBP | awk '{ print $3 }' |
Linux | dmidecode -s bios-version | egrep -v '^#|^$' |
Windows | (wmic bios get SMBIOSBIOSVersion | findstr /v "^$" | select -Last 1).Trim() |
No comments:
Post a Comment