Sunday, December 01, 2019

Get BIOS tag from the command line

Quick one liner to get Windows BIOS serial number.

wmic bios get serialnumber | clip

This only works for Windows operating system. Clip only works with Vista or later versions. Note that the output contains the string "SerialNumber" and the tag.

No comments:

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...