Posted July 22, 20169 yr Hi friends.How are you?And today i need your help to create HWID in Visual basic or delphi plz help..I need help to create HWID protected program with Delphi or Visual basic
July 22, 20169 yr Hwid can be anything For example take C drive serial no.,wmic motherboard serial no,take pc specs and make it as hwid It can be anything depend on the coder and when you get the info you can process it some hashes like readymade sha,md5 etc or code your function to get bytes n do you custom stuff n return hwid and then u can create key which matches that hwid Some small snippet public String gethwid(){ String any = (Build.SERIAL).toString(); if(any != null) return any; else return new String("Haha its anything"); } Now do whatever u want to do like String hwid = gethwid(); to use anywhere it required Make sure you check the validations sometimes some Devices return null so keep ur backup ready like in above example u returned "Haha" string. Once you get hwid u can use it for the Key generation. PS. Some people think HWID is same for all the soft ? No its on coder how it is implemented do you own logic out here
July 25, 20169 yr You can also made it in delphi with easy as Jasi2169 said create a function call it again and again where you need hwid string example procedure gethwid(): string; begin result := hwid; end;
July 25, 20169 yr Author 5 minutes ago, ramjane said: You can also made it in delphi with easy as Jasi2169 said create a function call it again and again where you need hwid string example procedure gethwid(): string; begin result := hwid; end; Thanks for help Ramjanee but i dont know to create in delphi.But can you make a small help for me Just attach a screenshot of codings plz
July 25, 20169 yr sadare, seriously do some work yourself, this constant posting of 'help me' is getting pretty damn tedious, so much so next time i see it i'll report it
July 25, 20169 yr Author 2 hours ago, evlncrn8 said: sadare, seriously do some work yourself, this constant posting of 'help me' is getting pretty damn tedious, so much so next time i see it i'll report it sorry but i am going to use delphi as first time so i am asking.I will try my self.
July 26, 20169 yr sadare, I've given you a warning - as you've been told many times, please make some attempt to learn yourself and find answers by searching. You'll get nowhere doing this is you do not spend many hours, weeks and months reading and trying things
Create an account or sign in to comment