Locate Dell Service Tag: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
== Linux Platform ==
= Linux Platform =
<pre>
<pre>
yum -y install dmidecode
yum -y install dmidecode
Line 8: Line 8:
</pre>
</pre>


== Windows Platform ==
== Script ==
<pre>
#!/bin/bash
 
model=$(dmidecode -s system-product-name)
tag=$(dmidecode -s system-serial-number)
 
echo $model, Service Tag : $tag
</pre>
 
= Windows Platform =
From a Command Prompt
From a Command Prompt
<pre>
<pre>

Revision as of 00:39, 19 May 2015

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