Hey,
I have a lot of Win7 SP1 PCs here on which I receive an WMI timeout error during Internet Explorer 11 installation.
Error is the following (always with the same hotfix):
WMI query for Hotfixes timed out. Query string: 'Select HotFixID from Win32_QuickFixEngineering WHERE HotFixID="KB2729094"' Error: 0x00040004 (262148).If I run the same query in powershell it takes long, but it ends with success.
Get-WMIObject -Query $('Select HotFixID from Win32_QuickFixEngineering WHERE HotFixID="KB2729094"') -Namespace "ROOT\CIMvWhat I already tried was to reinstall the hotfix.
I although applied hotfix KB2834140 of slow WMI and tried to repair the WMI with following batch:
sc config winmgmt start= disabled net stop winmgmt /y %SYSTEMDRIVE% >nul cd %windir%\system32\wbem For /f %%s in ('dir /b *.dll') do regsvr32 /s %%s wmiprvse /regserver winmgmt /regserver net start winmgmt for /f %%s in ('dir /b *.mof *.mfl') do mofcomp %%sBut all without success. If I reistall the device installation works without problems, but it is not possible for me to reinstall nearly all my devices newly.
Thank you for help in advance.