55 questions
115
votes
17
answers
247k
views
How to find serial number of Android device?
I need to use a unique ID for an Android app and I thought the serial number for the device would be a good candidate. How do I retrieve the serial number of an Android device in my app ?
47
votes
1
answer
46k
views
Serials on NFC Tags - truly unique? cloneable?
So are NFC tags really UNIQUE from each other, at least in their SERIAL NUMBER? And can we rely on the fact that no 2 NFC tags can have the same serial number? I'm highly skeptical about this as there ...
6
votes
3
answers
28k
views
Same serial number on several android devices. Adb is useless. How can I change the serial number?
I bought a lot (500+) cheap China tablet with AllWinner processor and Android 4.0.3. All tablets expose the same serial number. I can't deploy my application simultaneously on several devices (with a ...
53
votes
4
answers
54k
views
Android Unique Serial Number
I am developing an android application that targets Android 4.0 (API 14) and above.
I am looking for a serial number that is unique per device and that persists for ever (dies with the device, does ...
5
votes
1
answer
13k
views
Get Serial Number of USB device with Python 3
I have been using pyusb to access the detail of a printer plugged in via USB. I currently have the following code working, but it appears that different devices require a different index. Here is my ...
8
votes
2
answers
18k
views
How to find Serial Number, IMEI number using iOS SDK
In my project i want to get the serial number and IMEI number using iOS SDK, What API's we can use to get in iOS7. I went through few links where they are using IO Frameworks, If we use those Apple ...
42
votes
6
answers
39k
views
Out of curiosity: How are serial numbers generated? Hints, Algorithms? [closed]
I wondering about how serial number generators and validator work. My aim would be to generate a serial number with five parts consisting of numbers and letters only.
I enjoy coding as a hobby and ...
8
votes
6
answers
49k
views
Serial number of Hard Disk or Hard Drive
At first it may seems it is very easy question and some body may be trying to give me advice to try Google, it may be so.
But for me it is very hard I have try Google, Stack Overflow and can’t find ...
3
votes
1
answer
10k
views
What is the simplest way to retrieve the device serial number of an iOS device using MonoTouch?
Does MonoTouch have a simple mechanism for retrieving the device serial number (not UDID) of an iOS device? Is there a third-party library which I can use to obtain this?
In case it matters, I'm ...
10
votes
3
answers
26k
views
How to get motherboard id or serial number in Delphi?
How do I get the motherboard ID or serial number from Delphi code?
Is there any example code or articles that I can look at?
5
votes
1
answer
15k
views
Is there a software that can change NFC Tag's serial number?
I ordered a bunch of NFC tags from a Chinese supplier (I know, red flags) with the promise that they will serialize my tags as instructed so it will work w/ our software and avoid serial duplicates. (...
29
votes
4
answers
21k
views
Is it possible to create product keys for my electron application?
I want to build a desktop application and be able to publish product keys or serial numbers.Before the user can use the application he will be requested to enter the product key/serial number.
...
13
votes
3
answers
43k
views
Getting Windows serial number (was: Getting MachineGuid from Registry)
I am trying to fetch MachineGuid from the registry, to create some level of binding with the OS for my license system. From the documentation I can use
string key = "HKEY_LOCAL_MACHINE\\SOFTWARE\\...
6
votes
6
answers
15k
views
How do I uniquely identify an USB-device?
I was wondering how to get the unique id of a USB storage device.
I already know how to fetch the SCSI serial id from this post : USB-drive serial number under linux C++
The post mentions using the ...
3
votes
2
answers
2k
views
If I access the iPhone serial number inside an app, is it allowed in the App Store?
I have read about the IOKit-Extension to get the serial number from an iPhone inside an app:
blog.jdevelop.eu
Actually i know one App in the Appstore which reads out the serial number and displays it,...
2
votes
1
answer
3k
views
C#/Native: Reading HDD Serial Using SCSI PassThrough
I have written three different methods that make use of native CreateFile and DeviceIoControl calls in order to retrieve the HDD Serial Number (not the Model Number). The first one uses S.M.A.R.T., ...
-2
votes
2
answers
119
views
Arrayformula to get a specific serial numbering [closed]
Google Sheet Link
NAME
QUALITY
CATEGORY
SR.NO.
Monu
gffg
B
1
David
rtet
G
1
John
dsadas
Q
1
John
iop
Q
1
John
bvn
A
2
John
Bp
Monu
hhsd
Y
2
Monu
dfghfh
R
3
Monu
hgfh
David
ljk
F
2
David
rty
G
1
David
...
19
votes
8
answers
58k
views
How to get CPU serial under Linux without root permissions
How can I get CPU serial number under Linux (Ubuntu) without root permissions?
I tried cpuid command, it works without root permissions, but appears to return all zeros (I believe because something ...
8
votes
2
answers
29k
views
NFC tags unique ID
I'm developing a system including NFC tags and Android phone , using unique ID of NFC tags .
But don't know what is the differences between 4 types NFC tag .
I've found this :
"NFC-compatible ...
6
votes
1
answer
11k
views
RFID algorithm to get card ID
I receive bytes from an RFID reader when presenting a card, but I'm unable to figure out how to derive the card ID from these bytes.
For example, I have a card that has these numbers printed on it: ...
5
votes
0
answers
3k
views
WMI Win32_PhysicalMedia SerialNumber is sometimes hexadecimal and sometimes in reversed byte order
I am using WMI with C++ to get the physical disk serial number.
On Windows 7 64bit, I get a string with the serial number.
While when running the same application on a Windows XP 64bit machine I get ...
4
votes
2
answers
6k
views
How to create serials key to protect an application
I have an application that creates a serial key as follows:
Take customername
Sign customername using privatekey and sha/dsa algorithm
Then license can be checked by decoding with public key, and ...
2
votes
3
answers
15k
views
Get H/D Serial number (Not Volumn Serial Number) for IDE and SATA
How can I read the hard disk serial number for IDE and SATA drives in VB.NET?
(I don't want the volume serial number).
This info should be gathered both for XP and Vista if possible without ...
1
vote
2
answers
4k
views
A Stable Unique Id for Xamarin Android
I am developing an android app by using xamarin forms (in the future, maybe a uwp app will be developed, not an ios App).
I've tried some libraries such as
https://github.com/jamesmontemagno/...
1
vote
1
answer
16k
views
How to get Hard-Disk SerialNumber in C# (no WMI)?
I know there are two articles in CodeProject (one uses WMI and the other no WMI but in C++). I tried the WMI way, not only it's slow, but it is also unreliable. So, that's why I decided not to pursue ...