How To Get A Unique PC ID Via Electron?
Is it possible to get a unique PC/Device ID via Electron so I can save PC/Device ID to MySQL Server on the cloud? If this is not possible then what other option I have? The purpose
Solution 1:
Take a look of the following example.
import {machineId, machineIdSync} from 'node-machine-id';
// Asyncronous call with async/await or Promise
async function getMachineId() {
let id = await machineId();
...
}
machineId().then((id) => {
...
})
// Syncronous call
let id = machineIdSync()
// id = c24b0fe51856497eebb6a2bfcd120247aac0d6334d670bb92e09a00ce8169365
let id = machineIdSync({original: true})
// id = 98912984-c4e9-5ceb-8000-03882a0485e4
You can take a look in this package automation-stack/node-machine-id for more details. I think this is what you are looking for.
Solution 2:
Take a look at the os module in nodejs.
You should be able to string together a few of these values to correctly identify unique PC/Devices.
Solution 3:
var sys = require('util')
var exec = require('child_process').exec;
function puts(error, stdout, stderr) {
console.log(stdout)
}
exec("wmic CPU get ProcessorId", puts);
exec("wmic DISKDRIVE get SerialNumber", puts);
Post a Comment for "How To Get A Unique PC ID Via Electron?"