what to use instead of winmgmts
I need to use VBscript to fetch processor,memory,network etc details.
I have used the below given code for getting part of the details but it makes my application slower.
Can anyone suggest some other way by which I can get the required details of my machine and at a quicker time ?
details needed :- OS name and version, hostname, ip address, MAC address, processor count, processor family, processor speed, processor name, total disk capacity and free disk space.
Set colItems = objWMIService.ExecQuery("SELECT CSName, Caption, CSDVersion, Version, TotalVisibleMemorySize FROM Win32_OperatingSystem", "WQL", wbemFlagReturnImmediately + wbemFlagForwardOnly)
Thanks,
Sheetal

