Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
HWID Generater Script (vbs)
#4
Give this script I created a shot then Smile
Code:
Set wmi = GetObject("winmgmts:")
    For Each cpu in wmi.InstancesOf("Win32_Processor")
        MsgBox "CPU: " & cpu.ProcessorID, 64, "HWID Generation"
      
        Set WriteFile = CreateObject("Scripting.FileSystemObject")
        Set Writer_ = WriteFile.OpenTextFile("Generated_ID.txt", 8, True)
        Writer_.WriteLine("# HWID Generation:" & _
            vbNewLine & _
            "-- CPU: " & cpu.ProcessorID)
            
        Writer_.Close
        SET Writer_ = Nothing
        SET WriteFile = Nothing
    Next

It will create an output of the ID to a text file in the same location/directory you execute the script.
Reply


Messages In This Thread
HWID Generater Script (vbs) - by Akinova - 08-21-2011, 08:16 AM
RE: HWID Generater Script (vbs) - by AceInfinity - 08-21-2011, 08:28 AM
RE: HWID Generater Script (vbs) - by Akinova - 08-21-2011, 08:44 AM
RE: HWID Generater Script (vbs) - by AceInfinity - 08-21-2011, 09:08 AM
RE: HWID Generater Script (vbs) - by Injection - 08-24-2011, 01:27 AM

Forum Jump:


Users browsing this thread: 3 Guest(s)