- WMIC : get Bios serial number
- How to find computer serial number
- Author:
- COMMUNITY SOLUTIONS CONTENT DISCLAIMER
- SUMMARY
- How to find computer serial numbers on Windows 10
- How to determine PC serial number using PowerShell
- How to determine PC serial number using Command Prompt
- More Windows 10 resources
- Microsoft’s Surface Duo is not ‘failing up’
- Here’s what you can do if Windows 10 update KB5001330 is causing issues
- Review: NZXT made its first AMD motherboard and it’s brilliant
- These are the best PC sticks when you’re on the move
- Как узнать лицензионный ключ (Install Key и OEM Key) в Windows 10
- Отличие Install Key от OEM Key
- Видео: как узнать информацию об OEM Key
- Зачем нужно знать ключ активации Windows
- Как узнать ключ системными средствами
- Поиск Install Key через PowerShell
- Поиск Install Key через скрипт
- Видео: как узнать ключ с помощью VBS-скрипта
- Поиск OEM Key через PowerShell
- Поиск OEM Key через «Командную строку»
- Как узнать ключ при помощи сторонних приложений
- ShowKeyPlus
- Видео: как узнать ключ с помощью ShowKeyPlus
- ProduKey
- Magical Jelly Bean Keyfinder
- Speccy
WMIC : get Bios serial number
If you are looking to find BIOS serial number from CMD, then wmic bios is the command you would need. Below is the exact command you can run on any Windows computer to retrieve serial number.
We can find other bios information also using ‘wmic bios get’ command. In the above command you need to replace ‘serialnumber‘ with the appropriate property of bios. Use the below command to get the list of properties.
Windows xp does not have wmic. is there any other way to get serial number?
Save below as sn.vbs and run it. It will show you the unit s/n.
strComputer = “.”
Set objWMIService = GetObject(“winmgmts:\\” & strComputer & “\root\CIMV2”)
Set colItems = objWMIService.ExecQuery( _
“SELECT * FROM Win32_BIOS”,,48)
For Each objItem in colItems
Wscript.Echo “———————————–”
Wscript.Echo “Win32_BIOS instance”
Wscript.Echo “———————————–”
Wscript.Echo “SerialNumber: ” & objItem.SerialNumber
Next
I have a desk top computer 27 in dell and I need my serial number
I have a dell Lap Tap that I purchased from a friend.
I want to know if I could till get services under the serial # that I will enter.
4214182897
veronica, what stops you asking dell?
I have a samsung I wanna get my serial number
WMIC BIOS GET SERIAL NUMBER
I have a HP Envy and need my serial number.
wmic bios get serialnumber
ma computer model is 15-bs003TU
please I need serial number
i have asus windows 7 i need my serial number
TELL MY SERIAL NUMBER PLEASE
i have lenovo windows 8 i need my serial number
I have Lenovo I want my serial number
I could not get the wmic bios get serial number to work
wmic bios get /? ——– I did this, and serial number was on the list as N/A
I want to find serial number of our laptop.
I have DELL I want my serial number
I do not know how to find the serial no. of my hp laptop
want to know the s/n of this laptop
wmic bios get manufacturer
sir I have dell laptop corei7 windo 10 ….. sir I want my seriol no
SERIAL NUMBER FOR HP PAVILION LAPTOP
wmic bios get hard drive
I would like to have product serial number of my Lenovo 320S for activation and use of word documents etc. The S/N number is MP1D1GWA
I have a Hp G6 windown 10 and I need my serial number
Thank you
i cant find serial number I did follow instruction as per request
How to find computer serial number
Author:
Yuval Sinay MVP
COMMUNITY SOLUTIONS CONTENT DISCLAIMER
MICROSOFT CORPORATION AND/OR ITS RESPECTIVE SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, OR ACCURACY OF THE INFORMATION AND RELATED GRAPHICS CONTAINED HEREIN. ALL SUCH INFORMATION AND RELATED GRAPHICS ARE PROVIDED «AS IS» WITHOUT WARRANTY OF ANY KIND. MICROSOFT AND/OR ITS RESPECTIVE SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, WORKMANLIKE EFFORT, TITLE AND NON-INFRINGEMENT. YOU SPECIFICALLY AGREE THAT IN NO EVENT SHALL MICROSOFT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OF OR INABILITY TO USE THE INFORMATION AND RELATED GRAPHICS CONTAINED HEREIN, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF MICROSOFT OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES.
SUMMARY
The following article will help you to find the computer serial number
Please use one the method bellow to retrieve the computer serial number:
1. Using the buid in » wmic» command:
» wmic bios get serialnumber«
Tip: You can use the command » wmic csproduct get name» to retrieve the local computer model.
How to find computer serial numbers on Windows 10
Source: Windows Central
On Windows 10, the ability to check the computer serial number can come in handy in many scenarios. For instance, when you need to create an inventory of the devices connected to your home network or organization, or need to contact technical support to troubleshoot a problem, order a replacement part, or check the warranty information.
Usually, you can find the required information on the sticker affixed on the back or bottom of your laptop or desktop, or checking the Basic Input/Output System (BIOS) or Unified Extensible Firmware Interface (UEFI) on your motherboard. However, if the sticker isn’t available or you don’t want to go through extra steps to access firmware, you can also use PowerShell and Command Prompt to retrieve this information quickly on Windows 10.
In addition, using commands can be useful to automate the process using a script when you need to retrieve the serial information from multiple devices.
In this Windows 10 guide, we’ll walk you through the steps to quickly find your device serial number using command lines.
How to determine PC serial number using PowerShell
To retrieve the serial number of your computer with a PowerShell command, use these steps:
- Open Start.
- Search for PowerShell, right-click the top result, and select the Run as administrator option.
Type the following command to find out the computer serial number and press Enter:
Get-WmiObject win32_bios | select Serialnumber
Source: Windows Central
(Optional) Type the following command to determine device serial number and press Enter:
Get-CIMInstance win32_bios | format-list SerialNumber
(Optional) Type the following command to export the serial information to a text file and press Enter:
Get-WmiObject win32_bios | select Serialnumber > PATH\TO\EXPORT
In the command, make sure to replace «PATH\TO\EXPORT» with the path to the text file you want to export the serial number information.
For example, this command exports the output to the ComputerSerial.txt file in the C drive:
Get-WmiObject win32_bios | select Serialnumber > C:\ComputerSerial.txt
Source: Windows Central
Once you complete the steps, you’ll know the serial number of your desktop or laptop computer.
If you are using the command to export the output, you’ll find the file in folder location you specified. Also, since you exported it as a text format, you can open it with Notepad or any other text editor.
How to determine PC serial number using Command Prompt
To check the device serial number using a Command Prompt command, use these steps:
- Open Start.
- Search for PowerShell, right-click the top result, and select the Run as administrator option.
Type the following command to find out the computer serial number and press Enter:
wmic bios get SerialNumber
Source: Windows Central
(Optional) Type the following command to export the serial information to a text file and press Enter:
wmic bios get SerialNumber > PATH\TO\EXPORT
In the command, make sure to replace «PATH\TO\EXPORT» with the path to the text file you want to export the serial number information.
For example, this command exports the output to the ComputerSerial.txt file in the C drive:
wmic bios get SerialNumber > C:\ComputerSerial.txt
Source: Windows Central
After you complete the steps, the command will return the serial number without needing to access the BIOS or going behind the device to look for the sticker.
Although these commands will work on any computer, custom-build devices don’t have a serial number. This means that the command output may read «To Be Filled By O.E.M.»
If you’re looking to retrieve the device model number, you can use these instructions.
More Windows 10 resources
For more helpful articles, coverage, and answers to common questions about Windows 10, visit the following resources:
Microsoft’s Surface Duo is not ‘failing up’
Microsoft announced this week that it was expanding Surface Duo availability to nine new commercial markets. While Surface Duo is undoubtedly a work in progress, this is not a sign of a disaster. It’s also doesn’t mean that Surface Duo is selling a ton either. Instead, the reason for the expansion is a lot more straightforward.
Here’s what you can do if Windows 10 update KB5001330 is causing issues
In this guide, we’ll show you the steps to get rid of the update KB5001330 to fix profile, gaming, and BSoD problems with the Windows 10 October 2020 Update and May 2020 Update.
Review: NZXT made its first AMD motherboard and it’s brilliant
NZXT made its first motherboard with an AMD chipset. The N7 B550 supports the latest AMD Ryzen processors and there’s plenty to love about this platform. To differentiate the N7 B550, NZXT made notable changes to the layout of the motherboard to make it easy to create a clean PC build.
These are the best PC sticks when you’re on the move
Instant computer — just add a screen. That’s the general idea behind the ultra-portable PC, but it can be hard to know which one you want. Relax, we have you covered!
Как узнать лицензионный ключ (Install Key и OEM Key) в Windows 10
Активированная Windows 10 хранит информацию о ключе, с помощью которого была подтверждена её лицензия. Если вам понадобилось узнать его, то есть несколько способов, позволяющих это сделать. Но перед выполнением поиска следует разобраться, чем Install Key и OEM Key отличаются друг от друга.
Отличие Install Key от OEM Key
Оба типа ключа существуют для одной цели — активации Windows. Но подтверждение лицензии может быть выполнено в разное время: до появления системы на диске, во время установки или после неё.
Install Key — ключ, который вводит сам пользователь, получив его в интернет-магазине Microsoft или купив диск с цифровой версией Windows. OEM — ключ, вшитый в материнскую плату. Его можно встретить в тех случаях, когда компьютер продаётся с уже установленной и активированной Windows.
Итак, если вы подтверждали лицензию самостоятельно, то стоит узнавать Install Key. Если компьютер был куплен с уже активированной Windows, актуальным будет OEM Key. Но не исключено, что ваша версия операционной системы изначально активирована не из-за вшитого ключа, а потому, что продавец самостоятельно ввёл Install Key. Вспомните про данный вариант, если выяснится, что OEM ключ отсутствует.
Значение ключей может совпадать, если вы ничего не вводили самостоятельно. Но в большинстве случаев имеется либо один ключ, либо значения ключей различны. Например, если у вас была Windows 7 или 8, активированная посредством OEM, то переход на Windows 10 во время бесплатной раздачи или после её окончания вызовет генерацию Install Key, который будет отличаться от изначального ключа OEM.
Видео: как узнать информацию об OEM Key
Зачем нужно знать ключ активации Windows
Единственное, для чего использованный ключ может пригодиться повторно, — подтверждение активации Windows, лицензия которой ранее этим ключом уже была подтверждена. Дело в том, что лицензия операционной системы может по некоторым причинам слететь. Например, из-за смены комплектующих или некоторых обновлений.
Для первой и последующих активаций нужен ключ
Если ранее оплаченная система перестала быть лицензионной, её не нужно покупать. Достаточно вспомнить ключ и обратиться в службу поддержки Microsoft: операторы сверят данные и помогут устранить возникшее недоразумение.
Как узнать ключ системными средствами
Существует несколько методов, позволяющих узнать как OEM, так и Install Key. Системные средства могут показаться более сложными, чем сторонние программы, описанные ниже, но в то же время вам не придётся загружать дополнительные приложения и бояться, что ключ будет украден злоумышленниками, распространяющими вредоносные программы.
Поиск Install Key через PowerShell
Разверните любой текстовый редактор и скопируйте в него предоставленные строки скрипта. Полученный файл сохраните под любым именем, но обязательно назначьте ему расширение .ps1.
Jakob Bindslet
После создания файла выполните следующие действия:
- Откройте программу PowerShell от имени администратора.
Откройте PowerShell с правами администратора
- Выполните команду Set-ExecutionPolicy RemoteSigned. В окне появится уведомление, требующее от вас подтверждения действия. Нажмите клавишу Y, имеющую значение Yes («Да»), и Enter.
- Пропишите путь до файла вместе с именем файла, например, D:\file.sp1, и нажмите Enter. Скрипт, скопированный ранее в документ, запустится на выполнение. Через несколько секунд он закончит работу, и вы увидите Install Key, прописанный в строке с одноимённым названием.
Запускаем скрипт в PowerShell, чтобы получить ключ
Поиск Install Key через скрипт
Существует аналогичный скрипт, подобный вышеописанному, но на другом языке.
- Создайте файл с представленным кодом и расширением .vbs.
Создайте файл с VBS-скриптом
- Полученный файл откройте двойным щелчком. На экране появится окно с информацией о ключе и версии Windows.
Файл с VBS-скриптом выдаст информацию об Install Key
Видео: как узнать ключ с помощью VBS-скрипта
Поиск OEM Key через PowerShell
Если вы желаете узнать ключ, вшитый в материнскую плату, то выполните строку (Get-WmiObject -query «select * from SoftwareLicensingService»).OA3xOriginalProductKey в окне PowerShell, запущенном от имени администратора.
Поиск OEM Key через «Командную строку»
Узнать OEM Key можно и с помощью команды wmic path softwarelicensingservice get OA3xOriginalProductKey, выполненной в «Командной строке», запущенной от имени администратора. Не важно, каким именно способом, данным или предыдущим, вы воспользуетесь, результат будет одинаков. Отличаются лишь команды и среды их выполнения.
Введите нужную команду в «Командной строке», чтобы получить ключ
Как узнать ключ при помощи сторонних приложений
Все нижеописанные способы требуют загрузки дополнительных бесплатных или частично бесплатных программ. Ничего сложного они не выполняют, поэтому весить будут немного. Сторонние программы упрощают поиск OEM и Install ключа, их стоит использовать в том случае, если вышеописанные способы по каким-то причинам не сработали.
Все приложения, представленные в списке, популярны и безопасны, то есть, используя их, вы не рискуете поделиться своим ключом с посторонним лицом. Но быть уверенным в безопасности программы можно только в том случае, если она была загружена с официального сайта разработчика, а не со стороннего ресурса.
ShowKeyPlus
Особенность программы в том, что она не требует установки. Загруженный файл достаточно открыть, после чего на экране появится некоторая информация о системе, в том числе OEM и Install ключ. Неперегруженный интерфейс позволяет с лёгкостью узнать все необходимые данные.
Программа ShowKeyPlus показывает и OEM Key, и Install Key
Видео: как узнать ключ с помощью ShowKeyPlus
ProduKey
Универсальная программа, позволяющая узнать лицензионный ключ Windows и остальных программ, установленных на компьютере. Обратите внимание на первый столбец, чтобы найти ОС, и на третий столбец, чтобы узнать ключ. Программа не умеет определять OEM Key, но отлично справляется с поиском установочного ключа.
Приложение позволяет узнать лицензионные ключи многих программ и самой Windows
Magical Jelly Bean Keyfinder
Данная утилита, как и предыдущая, предназначена для поиска всех лицензионных ключей, имеющихся на компьютере. Она автоматически определяет, какой тип ключа используется для активации Windows, и выводит его. Также вы получите некоторую дополнительную информацию о системе.
Через программу Magical Jelly Bean Keyfinder можно узнать ключи программ и Windows
Speccy
Приложение Speccy предоставляет подробную информацию о компьютере и всех его комплектующих. Лицензионный ключ можно увидеть в разделе «Операционная система» в строке «Серийный номер».
В разделе «Операционная система» указан серийный номер, являющийся ключом
Существует два вида ключей — OEM Key и Install Key. Узнать их можно как системными средствами, так и с помощью сторонних приложений. Главное, не сообщайте свой ключ никому, кроме операторов официальный технической поддержки Microsoft, иначе вашей лицензией сможет воспользоваться злоумышленник.