The following command will time how long a WMI filter call will take to execute on your server/PC.
$query = "Select * from Win32_Processor where AddressWidth = '32'"
Measure-Command { Get-WmiObject -Query $query
The following command will time how long a WMI filter call will take to execute on your server/PC.
$query = "Select * from Win32_Processor where AddressWidth = '32'"
Measure-Command { Get-WmiObject -Query $query