Get Processor and OS info
2
You can get the Processor and OS info like this
Set WshShell = WScript.CreateObject("WScript.Shell")
Set WshSysEnv = WshShell.Environment("SYSTEM")
WScript.Echo "NUMBER OF PROCESSORS : " & WshSysEnv("NUMBER_OF_PROCESSORS")
WScript.Echo "PROCESSOR ARCHITECTURE : " & WshSysEnv("PROCESSOR_ARCHITECTURE")
WScript.Echo "PROCESSOR IDENTIFIER : " & WshSysEnv("PROCESSOR_IDENTIFIER")
WScript.Echo "OS : " & WshSysEnv("OS")






There are currently no comments for this snippet.