> For the complete documentation index, see [llms.txt](https://support.onlogic.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://support.onlogic.com/support-articles/how-tos/more/system-serial-number-retrieval.md).

# System Serial Number Retrieval

## <mark style="color:blue;">Serial Number Retrieval</mark>

### Physical Label

The OnLogic serial number can be found on a label applied to the bottom of the system, or the rear of the display for Panel PCs. Our serial numbers will begin with U or E, followed by 6 digits.

<figure><img src="/files/4lfutyjkkPgOAkHdyXAP" alt="" height="278" width="601"><figcaption></figcaption></figure>

Since 2018, OnLogic has written the serial number of the system into the SMBIOS data on all products except for Raspberry Pi systems (i.e the Factor Series). This means that the serial number can be retrieved without physically looking at the unit. This can be useful if the system is deployed in the field or mounted in an enclosure.

\*Note that the Factor Series systems (FR201 and FR202) do not have a BIOS or SMBIOS, and do **not** support the below software commands. The systems’ serial number need to be identified via the physical label on the bottom of the case.

### Windows <a href="#windows" id="windows"></a>

Open CMD from the start menu and run the following commands. One of them should return the correct serial.

```
WMIC BIOS get serialnumber
```

```
WMIC baseboard get serialnumber
```

### Linux <a href="#linux" id="linux"></a>

Run the following commands in terminal.

```
dmidecode -s system-serial-number
```

```
cat /sys/devices/virtual/dmi/id/product_serial
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://support.onlogic.com/support-articles/how-tos/more/system-serial-number-retrieval.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
