Locate Dell Service Tag

From KlavoWiki
Revision as of 00:39, 19 May 2015 by David (talk | contribs)
Jump to navigationJump to search

Linux Platform

yum -y install dmidecode
dmidecode | grep -i serial

Script

#!/bin/bash

model=$(dmidecode -s system-product-name)
tag=$(dmidecode -s system-serial-number)

echo $model, Service Tag : $tag

Windows Platform

From a Command Prompt

wmic bios get serialnumber