HWID Generater Script (vbs) - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Computer Support Topics (https://www.supportforums.net/forumdisplay.php?fid=4) +---- Forum: Microsoft Support (https://www.supportforums.net/forumdisplay.php?fid=5) +---- Thread: HWID Generater Script (vbs) (/showthread.php?tid=21617) |
HWID Generater Script (vbs) - Akinova - 08-21-2011 I got this small script, you can get your hwid from this easily Code: Function GetCpuID() just copy all this and paste it in notepad and then save it as cpuid.vbs or as any other name RE: HWID Generater Script (vbs) - AceInfinity - 08-21-2011 You know you don't need it inside of a function, the function is really useless if it's the only part of your code. Just makes things more complicated than they have to be. You can do something like this instead: Code: Set wmi = GetObject("winmgmts:") That's all the code you need. You don't even need to define cpu because it's being used as it's own parameter in the For Each loop. RE: HWID Generater Script (vbs) - Akinova - 08-21-2011 (08-21-2011, 08:28 AM)Ace Wrote: You know you don't need it inside of a function, the function is really useless if it's the only part of your code. Just makes things more complicated than they have to be. You can do something like this instead: ok Thanks buddy, i am just new in these things RE: HWID Generater Script (vbs) - AceInfinity - 08-21-2011 Give this script I created a shot then Code: Set wmi = GetObject("winmgmts:") It will create an output of the ID to a text file in the same location/directory you execute the script. RE: HWID Generater Script (vbs) - Injection - 08-24-2011 gonna try to use this. Thanks brother |