Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

PS D:\work\scripts> measure-command { get-wmiobject -query "select * from win32_service" | Where-Object -FilterScript {$ _.Name -eq "WinRM"} }

Days : 0 Hours : 0 Minutes : 0 Seconds : 0 Milliseconds : 426 Ticks : 4262955 TotalDays : 4.93397569444444E-06 TotalHours : 0.000118415416666667 TotalMinutes : 0.007104925 TotalSeconds : 0.4262955 TotalMilliseconds : 426.2955

PS D:\work\scripts> measure-command { get-wmiobject -query "select * from cim_service" | Where-Object -FilterScript {$_. Name -eq "WinRM"} }

Days : 0 Hours : 0 Minutes : 1 Seconds : 35 Milliseconds : 320 Ticks : 953208058 TotalDays : 0.00110325006712963 TotalHours : 0.0264780016111111 TotalMinutes : 1.58868009666667 TotalSeconds : 95.3208058 TotalMilliseconds : 95320.8058

share|improve this question
What is the point in comparing queries that retrieve different data subsets? – Andrey May 28 '09 at 23:41

1 Answer

it is simple - by querying CIM_Service you retrieve more information (as CIM services are not limited by Win32 services; moreover win32_service instances are contained within CIM_Service). That is - your queries differ significantly in the amount of data retrieved.

You can easily explore it via WMI CIM Studio.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.