08-21-2011, 08:16 AM
I got this small script, you can get your hwid from this easily
just copy all this and paste it in notepad and then save it as
cpuid.vbs or as any other name
Code:
Function GetCpuID()
Dim wmi, cpu
Set wmi = GetObject("winmgmts:")
For Each cpu in wmi.InstancesOf("Win32_Processor")
wscript.echo "CPU: " & cpu.ProcessorID
Next
End Function
GetCpuID()
just copy all this and paste it in notepad and then save it as
cpuid.vbs or as any other name
Don't try to act smart... i am smarter than you...