Questions tagged [serial-number]

A unique code assigned for identification of a single unit or device.

Read more on wikipedia: https://en.wikipedia.org/wiki/Serial_code

292 questions
0
votes
3 answers

Get /dev/disk/by-id element from /dev/sd* element

I know that there is /dev/disk/by-id/ folder which contains links to /dev/sd* elements. I'd like to know, is there any way to get by-id element pointing to, for example, /dev/sda. P.S.: yeah, I know that I can loop through elements in by-id folder…
cheetahfm
  • 93
  • 1
  • 8
0
votes
1 answer

Sr.No Not coming Properly in PHP MYSQL

I want to show list of my product as below : Sr.No | Name | Type -------------------- 1 | aa | 2 2 | bb | 2 3 | cc | 3 4 | dd | 2 5 | cc | 4 But its coming as below Sr.No | Name | Type -------------------- 3 | …
user3209031
  • 837
  • 1
  • 14
  • 38
0
votes
2 answers

How can i get Partition Serial/ID/Signature?

I want to know the identifier for a partition when checking the disk. It's needed for logging, for instance: If on my computer drive C: is 041d when i plug it to a different computer it will get a different driveletter(D:) but the partition is the…
Shaul
  • 211
  • 1
  • 4
  • 18
0
votes
1 answer

Convert a number to shorter Alpha Numeric. Better than Base36?

I'm generating a reference number which is a number to be entered by a user. It can be around 30 digits. I'm looking for a way to shorten the value to be entered by the user but I need to be able to convert it back to its original number. Currently…
CathalMF
  • 9,705
  • 6
  • 70
  • 106
0
votes
1 answer

How to check my NFC TAG ID (UID)?

It is possible to know others NFC TAG ID when we used to the APK & TAG each phones. For example, Phone A and B try to tag. Then Phone A can know Phone B's NFC TAG ID (4 Bytes - HEX). But I wanna know how to know my NFC TAG ID on my phone. Not used…
user3497103
  • 87
  • 1
  • 3
  • 7
0
votes
1 answer

First check for iPad serial number is correct

I must administrate a lot of iPads. There are a lot of new serial numbers. I rewrite serials from ipad to my web application. Is there any algorithm for checking i rewrited serial number correctly? enough is the idea how calculate this, or…
Znik
  • 1,047
  • 12
  • 17
0
votes
1 answer

Reading the number printed on the HID iClass card

I want to read the number printed on the HID iClass(2ks) card. Using WinScard.dll i was able to read the UID and ATR. I had done some research and came to a conclusion that the printed number is a programmed data and might be protected by a PIN. Am…
0
votes
1 answer

How get Mifare Ultralight 16 digits UID reading with Nexus 5

I'm very new in NFC for Android. I need very much code example or good tutorial for Java for how get Mifare Ultralight 16 digits UID reading with Nexus 5 I only know how to get 7 digits UID for MifareClassic from here Reading the tag UID of Mifare…
Kiryl Ivanou
  • 1,015
  • 2
  • 12
  • 22
0
votes
1 answer

I need a way to retrieve and log the IMEI, Serial, ICCID, and MEID of an iPhone device connected via usb

As it says in the title I'm after a way to retrieve and log the IMEI, Serial, ICCID, and MEID of an iPhone device connected via usb. Ideally this method would work with multiple devices plugged in at once and export the information to a spreadsheet…
0
votes
2 answers

Best Practise For Assigning Serial Number

I need to assign a number to a document - an RFQ, quote, order, job, etc. The table that will hold this number has a primary key field of type integer, flagged as identity so it will increment automatically. Should I use the value of this field as…
MrBill
  • 100
  • 1
  • 2
  • 15
0
votes
1 answer

Design - Microsoft Access - Unique "Serial" Number

I am looking for some design techniques to achieve the following: A 3-part serial number that is generated upon record entry. Format Example: 25-001-14 The number is used to track yearly records from various locations. The first part states the…
FGLC0983
  • 93
  • 1
  • 1
  • 8
0
votes
2 answers

Retrieving disc serial id gives me different values using FSO or ManagementObject

I have an old vb application which retrieves the disk id using this code. Dim FSO As New Scripting.FileSystemObject Dim Dr As Scripting.Drive Dim id_convertido As Long = 0 Dim sRutaAplicacion As String = Application.StartupPath Dim Valor As Integer…
Vallo
  • 1,827
  • 2
  • 21
  • 42
0
votes
2 answers

Java Online Serial Key Validation Library

i am trying to protect my software with a classic serial key the user enters at start. I built something like that for my software some while ago, but our client now wants to handle the licenses himself, thus being able to blacklisting some serial…
Geki
  • 247
  • 2
  • 11
0
votes
3 answers

scsi inquiry commands to get serial and model information

I have problems getting serial and model information from SCSI drives via an inquiry. My inquiry always returns empty strings. Here is a quick and dirty code of the inquiry which should at least output the entire return of the inquiry. The output…
user2882307
0
votes
1 answer

Inno Setup Inputbox for serialcode with output into the registry

I used the code from this Answer from the Member TLama. I think it's exactly what i need, but I have two problems with it: I need the Serial from the edit boxes in the registry. This is what i tried: Root: "HKCU"; Subkey: "Software\myProg";…