summaryrefslogtreecommitdiffstats
path: root/testprogs/win32/wmi/echoprocessor.vbs
blob: 8ce6f7adcd1a99727a6bcf7326b658227f857c50 (plain)
1
2
3
4
5
6
7
8
9
10
For Each Host In WScript.Arguments
	Set WMIservice = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & host & "\root\cimv2")

	Set colsettings = WMIservice.ExecQuery("SELECT * FROM Win32_Processor")


	For Each proc In colsettings
		Wscript.Echo(host & ": " & proc.description)
	Next
Next