| title | description | keywords | ms.date | |||||
|---|---|---|---|---|---|---|---|---|
|
Troubleshooting KMDF and UMDF Driver Installation |
Troubleshooting KMDF and UMDF Driver Installation |
|
04/20/2017 |
Troubleshooting KMDF and UMDF Driver Installation
The framework’s co-installer creates debugging messages. You can see these messages in a debugger.
Additionally, the co-installer writes its debugging messages to the Setup action log (%windir%setupact.log) file. The Setup action log contains the version of the co-installer and the driver specified in the driver’s INF file. You should verify that these are as expected.
Examining KMDF Installation
The following output in the Setup action log is from the successful installation of a KMDF driver:
WdfCoInstaller: DIF_INSTALLDEVICE: Pre-Processing WdfCoInstaller: ReadComponents: WdfSection for Driver Service ECHO using KMDF lib version Major 0x1, minor 0x9 WdfCoInstaller: DIF_INSTALLDEVICE: Coinstaller version: 1.9.7100 WdfCoInstaller: DIF_INSTALLDEVICE: KMDF in-memory version: 1.9.7100 WdfCoInstaller: DIF_INSTALLDEVICE: KMDF on-disk version: 1.9.7100 WdfCoInstaller: Service Wdf01000 is running WdfCoInstaller: DIF_INSTALLDEVICE: Update is not required. The on-disk KMDF version is newer than or same as the version of the coinstaller WdfCoInstaller: DIF_INSTALLDEVICE: Post-Processing
In the above scenario, no update was necessary because the on-disk version and in-memory framework version is KMDF 1.9, which is the same version of the co-installer.
Consider the following output, which details an unsuccessful installation:
WdfCoInstaller: ReadComponents: WdfSection for Driver Service ECHO using KMDF lib version Major 0x1, minor 0x9 WdfCoInstaller: DIF_INSTALLDEVICE: Coinstaller version: 1.9.7100 WdfCoInstaller: DIF_INSTALLDEVICE: KMDF in-memory version: 1.7.6000 WdfCoInstaller: DIF_INSTALLDEVICE: KMDF on-disk version: 1.7.6000 WdfCoInstaller: Service Wdf01000 is running WdfCoInstaller: DIF_INSTALLDEVICE: Reboot is required, because the in-memory KMDF version is older than the coinstaller's version. WdfCoInstaller: DIF_INSTALLDEVICE: Update is required, because the on-disk KMDF version is older than the coinstaller WdfCoInstaller: VerifyMSRoot: exit: error(0) The operation completed successfully. WdfCoInstaller: Invoking "D:Windowssystem32wusa.exe "D:WindowsTempWdfTempMicrosoft Kernel-Mode Driver Framework Install-v1.9-Vista.msu" /quiet /norestart". WdfCoInstaller: The update process returned error code :error(265) <no error text>. WdfCoInstaller: For additional information please look at the log files %windir%windowsupdate.log and %windir%LogsCBSCBS.log
In this scenario, both an update and a reboot were necessary because the in-memory version and the on-disk version of the KMDF runtime were older than the version of the co-installer. However, the update was unsuccessful. The co-installer points to additional log files where you can find more information about the failure.
You can also check the system event log for errors related to the dynamic binding of the KMDF driver to the runtime library. Such an error may generate an Wdf<MajorVersionNumber><MinorVersionNumber> entry in the system event log. In this case, reboot the computer. You can also force a reinstallation of the KMDF runtime by deleting Wdf<MajorVersionNumber><MinorVersionNumber>.sys from the %windir%system32drivers folder.
Examining UMDF Installation
The following output in the Setup action log describes a successful UMDF driver installation.
WudfUpdate: installing version (1,9,0,7100). WudfUpdate: Checking for presence of previous UMDF installation. WudfUpdate: Found binary %WINDIR%system32driverswudfrd.sys version (1.9.0.7100) WudfUpdate: Found binary %WINDIR%system32driverswudfpf.sys version (1.9.0.7100) WudfUpdate: Found binary %WINDIR%system32wudfhost.exe version (1.9.0.7100) WudfUpdate: Found binary %WINDIR%system32wudfsvc.dll version (1.9.0.7100) WudfUpdate: Found binary %WINDIR%system32wudfx.dll version (1.9.0.7100) WudfUpdate: Found binary %WINDIR%system32wudfplatform.dll version (1.9.0.7100) WudfUpdate: Found binary %WINDIR%system32wudfcoinstaller.dll version (1.9.0.7100) WudfUpdate: UMDF installation is same as update. WudfUpdate: Loading configuration coinstaller from D:Windowssystem32wudfcoinstaller.dll. WudfCoInstaller: ReadWdfSection: Checking WdfSection [Echo_Install.NT.Wdf] WudfCoInstaller: Configuring UMDF Service WUDFEchoDriver. WudfCoInstaller: Service WudfSvc is already running. WudfCoInstaller: Final status: error(0) The operation completed successfully.
In the above scenario, no update is necessary because the on-disk version of the runtime is UMDF 1.9, which is the same as the version of the co-installer.
Consider the following output, which details an unsuccessful installation.
WudfUpdate: installing version (1,9,0,7100). WudfUpdate: Checking for presence of previous UMDF installation. WudfUpdate: Found binary %WINDIR%system32driverswudfrd.sys version (1.5.0.6000) WudfUpdate: Found binary %WINDIR%system32driverswudfpf.sys version (1.5.0.6000) WudfUpdate: Found binary %WINDIR%system32wudfhost.exe version (1.5.0.6000) WudfUpdate: Found binary %WINDIR%system32wudfsvc.dll version (1.5.0.6000) WudfUpdate: Found binary %WINDIR%system32wudfx.dll version (1.5.0.6000) WudfUpdate: Found binary %WINDIR%system32wudfplatform.dll version (1.5.0.6000) WudfUpdate: Found binary %WINDIR%system32wudfcoinstaller.dll version (1.5.0.6000) WudfUpdate: UMDF installation is older than current. WudfUpdate: Locating resource stream WUDF_UPDATE_VISTA-RTM. WudfUpdate: unpacking update from resource to Microsoft User-Mode Driver Framework Install-v1.9-Vista.msu. WudfUpdate: Temporary path is D:WindowsTempWDF7625.tmp. WudfUpdate: Invoking update "%SYSTEMROOT%system32wusa.exe" with command line "D:WindowsTempWDF7625.tmpMicrosoft User-Mode Driver Framework Install-v1.9-Vista.msu /quiet /norestart". WudfUpdate: Waiting for update to terminate. WudfUpdate: Update process returned 22. WudfUpdate: update returned error 0x16 - error(22) The device does not recognize the command. WudfUpdate: For additional information please look at the log files %windir%windowsupdate.log and %windir%LogsCBSCBS.log WudfUpdate: Cleaning up update. WudfUpdate: Error updating UMDF - error(22) The device does not recognize the command. Aborting installation.
In this scenario, the on-disk version of the UMDF runtime was older than the version of the co-installer. However, in this case the update was unsuccessful. The co-installer points to additional log files where you can find more information regarding the reason for the failure.
Скачать сейчас
Ваша операционная система:
Как исправить ошибку Wudfcoinstaller.dll?
Прежде всего, стоит понять, почему wudfcoinstaller.dll файл отсутствует и почему возникают wudfcoinstaller.dll ошибки. Широко распространены ситуации, когда программное обеспечение не работает из-за недостатков в .dll-файлах.
What is a DLL file, and why you receive DLL errors?
DLL (Dynamic-Link Libraries) — это общие библиотеки в Microsoft Windows, реализованные корпорацией Microsoft. Файлы DLL не менее важны, чем файлы с расширением EXE, а реализовать DLL-архивы без утилит с расширением .exe просто невозможно.:
Когда появляется отсутствующая ошибка Wudfcoinstaller.dll?
Если вы видите эти сообщения, то у вас проблемы с Wudfcoinstaller.dll:
- Программа не запускается, потому что Wudfcoinstaller.dll отсутствует на вашем компьютере.
- Wudfcoinstaller.dll пропала.
- Wudfcoinstaller.dll не найдена.
- Wudfcoinstaller.dll пропала с вашего компьютера. Попробуйте переустановить программу, чтобы исправить эту проблему.
- «Это приложение не запустилось из-за того, что Wudfcoinstaller.dll не была найдена. Переустановка приложения может исправить эту проблему.»
Но что делать, когда возникают проблемы при запуске программы? В данном случае проблема с Wudfcoinstaller.dll. Вот несколько способов быстро и навсегда устранить эту ошибку.:
метод 1: Скачать Wudfcoinstaller.dll и установить вручную
Прежде всего, вам нужно скачать Wudfcoinstaller.dll на ПК с нашего сайта.
- Скопируйте файл в директорию установки программы после того, как он пропустит DLL-файл.
- Или переместить файл DLL в директорию вашей системы (C:WindowsSystem32, и на 64 бита в C:WindowsSysWOW64).
- Теперь нужно перезагрузить компьютер.
Если этот метод не помогает и вы видите такие сообщения — «wudfcoinstaller.dll Missing» или «wudfcoinstaller.dll Not Found,» перейдите к следующему шагу.
Wudfcoinstaller.dll Версии
Версия
биты
Компания
Язык
Размер
6.2.9200.16384
32 bit
Microsoft Corporation
U.S. English
38 kb
Версия
биты
Компания
Язык
Размер
6.0.6001.18000
64 bit
Microsoft Corporation
U.S. English
87.5 kb
Версия
биты
Компания
Язык
Размер
6.0.5716.32
32 bit
Microsoft Corporation
U.S. English
93.1 kb
Версия
биты
Компания
Язык
Размер
10.0.14393.0
64 bit
Microsoft Corporation
U.S. English
47 kb
Версия
биты
Компания
Язык
Размер
10.0.10586.0
64 bit
Microsoft Corporation
U.S. English
47 kb
метод 2: Исправление Wudfcoinstaller.dll автоматически с помощью инструмента для исправления ошибок
Как показывает практика, ошибка вызвана непреднамеренным удалением файла Wudfcoinstaller.dll, что приводит к аварийному завершению работы приложений. Вредоносные программы и заражения ими приводят к тому, что Wudfcoinstaller.dll вместе с остальными системными файлами становится поврежденной.
Вы можете исправить Wudfcoinstaller.dll автоматически с помощью инструмента для исправления ошибок! Такое устройство предназначено для восстановления поврежденных/удаленных файлов в папках Windows. Установите его, запустите, и программа автоматически исправит ваши Wudfcoinstaller.dll проблемы.
Если этот метод не помогает, переходите к следующему шагу.
метод
3: Установка или переустановка пакета Microsoft Visual C ++ Redistributable Package
Ошибка Wudfcoinstaller.dll также может появиться из-за пакета Microsoft Visual C++ Redistribtable Package. Необходимо проверить наличие обновлений и переустановить программное обеспечение. Для этого воспользуйтесь поиском Windows Updates. Найдя пакет Microsoft Visual C++ Redistributable Package, вы можете обновить его или удалить устаревшую версию и переустановить программу.
- Нажмите клавишу с логотипом Windows на клавиатуре — выберите Панель управления — просмотрите категории — нажмите на кнопку Uninstall.
- Проверить версию Microsoft Visual C++ Redistributable — удалить старую версию.
- Повторить деинсталляцию с остальной частью Microsoft Visual C++ Redistributable.
- Вы можете установить с официального сайта Microsoft третью версию редистрибутива 2015 года Visual C++ Redistribtable.
- После загрузки установочного файла запустите его и установите на свой ПК.
- Перезагрузите компьютер после успешной установки.
Если этот метод не помогает, перейдите к следующему шагу.
метод
4: Переустановить программу
Как только конкретная программа начинает давать сбой из-за отсутствия .DLL файла, переустановите программу так, чтобы проблема была безопасно решена.
Если этот метод не помогает, перейдите к следующему шагу.
метод
5: Сканируйте систему на наличие вредоносного ПО и вирусов
System File Checker (SFC) — утилита в Windows, позволяющая пользователям сканировать системные файлы Windows на наличие повреждений и восстанавливать их. Данное руководство описывает, как запустить утилиту System File Checker (SFC.exe) для сканирования системных файлов и восстановления отсутствующих или поврежденных системных файлов (включая файлы .DLL). Если файл Windows Resource Protection (WRP) отсутствует или поврежден, Windows может вести себя не так, как ожидалось. Например, некоторые функции Windows могут не работать или Windows может выйти из строя. Опция «sfc scannow» является одним из нескольких специальных переключателей, доступных с помощью команды sfc, команды командной строки, используемой для запуска System File Checker. Чтобы запустить её, сначала откройте командную строку, введя «командную строку» в поле «Поиск», щелкните правой кнопкой мыши на «Командная строка», а затем выберите «Запустить от имени администратора» из выпадающего меню, чтобы запустить командную строку с правами администратора. Вы должны запустить повышенную командную строку, чтобы иметь возможность выполнить сканирование SFC.
- Запустите полное сканирование системы за счет антивирусной программы. Не полагайтесь только на Windows Defender. Лучше выбирать дополнительные антивирусные программы параллельно.
- После обнаружения угрозы необходимо переустановить программу, отображающую данное уведомление. В большинстве случаев, необходимо переустановить программу так, чтобы проблема сразу же исчезла.
- Попробуйте выполнить восстановление при запуске системы, если все вышеперечисленные шаги не помогают.
- В крайнем случае переустановите операционную систему Windows.
В окне командной строки введите «sfc /scannow» и нажмите Enter на клавиатуре для выполнения этой команды. Программа System File Checker запустится и должна занять некоторое время (около 15 минут). Подождите, пока процесс сканирования завершится, и перезагрузите компьютер, чтобы убедиться, что вы все еще получаете ошибку «Программа не может запуститься из-за ошибки Wudfcoinstaller.dll отсутствует на вашем компьютере.
метод 6: Использовать очиститель реестра
Registry Cleaner — мощная утилита, которая может очищать ненужные файлы, исправлять проблемы реестра, выяснять причины медленной работы ПК и устранять их. Программа идеально подходит для работы на ПК. Люди с правами администратора могут быстро сканировать и затем очищать реестр.
- Загрузите приложение в операционную систему Windows.
- Теперь установите программу и запустите ее. Утилита автоматически очистит и исправит проблемные места на вашем компьютере.
Если этот метод не помогает, переходите к следующему шагу.
Frequently Asked Questions (FAQ)
QКакая последняя версия файла wudfcoinstaller.dll?
A6.2.9200.16384 — последняя версия wudfcoinstaller.dll, доступная для скачивания
QКуда мне поместить wudfcoinstaller.dll файлы в Windows 10?
Awudfcoinstaller.dll должны быть расположены в системной папке Windows
QКак установить отсутствующую wudfcoinstaller.dll
AПроще всего использовать инструмент для исправления ошибок dll
- Remove From My Forums
-
Вопрос
-
Hi,
I have problem with computer collapsing (freezing) from time to time.
setupact.log:
[01/12/2016 14:17.45.510] WudfCoInstaller: ReadWdfSection: Checking WdfSection [Basic_Install.Wdf]
[01/12/2016 14:17.45.666] WudfCoInstaller: UMDF Service WpdFs is already installed — removing existing settings in preparation for setting new ones.
[01/12/2016 14:17.45.728] WudfCoInstaller: Configuring UMDF Service WpdFs.
[01/12/2016 14:17.45.791] WudfCoInstaller: ImpersonationLevel set to 2
[01/12/2016 14:17.45.837] WudfCoInstaller: Using «Win7» service configuration
[01/12/2016 14:17.48.271] WudfCoInstaller: Service WudfSvc started successfully.
[01/12/2016 14:17.48.302] WudfCoInstaller: Final status: error(0) Operace byla dokončena úspěšně.
[01/12/2016 14:17.51.547] WudfCoInstaller: Created marker file C:Windowssystem32driversMsft_User_WpdFs_01_09_00.Wdf. AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
Thank a lot,
Vaclav Votruba
Ответы
-
Hi,
I am supposing it is a machine with new build system, setupact.log is not helpful to computer collapsing/freezing issue, and have you already installed software/devices especially antivirus software on this machine? If this issue started to occur after some
device driver/software installed, try uninstall that for good measure.Navigate to Event log and refer to timeline try looking for more useful info.
Boot your computer to clean boot/safe mode then check the issue
How to perform a clean boot in Windows
https://support.microsoft.com/en-us/kb/929135
If you are experiencing BSOD, We might need the actual DMP file as it contains the records of the sequence of events leading up to the crash, what drivers were loaded, and what was responsible.
Regards,
D. Wu
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
-
Помечено в качестве ответа
25 января 2016 г. 10:03
-
Помечено в качестве ответа
This is the setupact.log:
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnSelectBestCompatDrv============
dispci.dll: ============END OnSelectBestCompatDrv==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x17 and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&1FC3087&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&1FC3087&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnAllowInstall============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xfe
dispci.dll: ============END OnAllowInstall==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x18 and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&1FC3087&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnInstallDeviceFiles============
dispci.dll: ============END OnInstallDeviceFiles==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x15 and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&1FC3087&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x410031
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x410031
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xfe
dispci.dll: ============BEGIN OnInstallDevice============
dispci.dll: DispCIIsDeviceCompatibleWithHighResolutionBoot: Found high resolution boot incomaptible hardware DispCIIsDeviceCompatibleWithHighResolutionBoot
dispci.dll: DispCISetServiceStartType: No change to the service start required
dispci.dll: ============END OnInstallDevice==============
dispci.dll: DisplayClassInstaller: Returning 0x00000000 for DIF 0x2 and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&1FC3087&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x410031
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&1FC3087&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
montr_ci.dll: DIF_SELECTBESTCOMPATDRV
montr_ci.dll: Returning 0xe000020e for function 0x17 and device DISPLAYDEFAULT_MONITOR5&2DCF5EAB&0&12345678&06&05.
montr_ci.dll: DIF_DESTROYPRIVATEDATA
montr_ci.dll: Returning 0xe000020e for function 0xc and device DISPLAYDEFAULT_MONITOR5&2DCF5EAB&0&12345678&06&05.
montr_ci.dll: DIF_ALLOW_INSTALL
montr_ci.dll: Returning 0xe000020e for function 0x18 and device DISPLAYDEFAULT_MONITOR5&2DCF5EAB&0&12345678&06&05.
montr_ci.dll: DIF_INSTALLDEVICEFILES
montr_ci.dll: Retrieving driver details....
montr_ci.dll: Returning 0xe000020e for function 0x15 and device DISPLAYDEFAULT_MONITOR5&2DCF5EAB&0&12345678&06&05.
montr_ci.dll: DIF_REGISTER_COINSTALLERS
montr_ci.dll: Returning 0xe000020e for function 0x22 and device DISPLAYDEFAULT_MONITOR5&2DCF5EAB&0&12345678&06&05.
montr_ci.dll: DIF_INSTALLINTERFACES
montr_ci.dll: Returning 0xe000020e for function 0x20 and device DISPLAYDEFAULT_MONITOR5&2DCF5EAB&0&12345678&06&05.
montr_ci.dll: DIF_INSTALLDEVICE
montr_ci.dll: ============BEGIN OnInstallMonitorDevice============
montr_ci.dll: Retrieving driver details....
montr_ci.dll: ============END OnInstallMonitorDevice============
montr_ci.dll: Returning 0xe000020e for function 0x2 and device DISPLAYDEFAULT_MONITOR5&2DCF5EAB&0&12345678&06&05.
montr_ci.dll: DIF_NEWDEVICEWIZARD_FINISHINSTALL
montr_ci.dll: Returning 0xe000020e for function 0x1e and device DISPLAYDEFAULT_MONITOR5&2DCF5EAB&0&12345678&06&05.
montr_ci.dll: DIF_DESTROYPRIVATEDATA
montr_ci.dll: Returning 0xe000020e for function 0xc and device DISPLAYDEFAULT_MONITOR5&2DCF5EAB&0&12345678&06&05.
Input Install: Not a PS2 device.
Input Install: Not a PS2 device.
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0xe30001
dispci.dll: ============END DisplayClassInstaller==============
montr_ci.dll: MonitorClassInstaller: Unrecognized DIF request
montr_ci.dll: Returning 0xe000020e for function 0x6.
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc
dispci.dll: ============END DisplayClassInstaller==============
montr_ci.dll: DIF_DESTROYPRIVATEDATA
montr_ci.dll: Returning 0xe000020e for function 0xc.
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnSelectBestCompatDrv============
dispci.dll: ============END OnSelectBestCompatDrv==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x17 and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&2E5A831D&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&2E5A831D&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnAllowInstall============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xfe
dispci.dll: ============END OnAllowInstall==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x18 and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&2E5A831D&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnInstallDeviceFiles============
dispci.dll: ============END OnInstallDeviceFiles==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x15 and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&2E5A831D&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x410015
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x410015
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xfe
dispci.dll: ============BEGIN OnInstallDevice============
dispci.dll: DispCIIsDeviceCompatibleWithHighResolutionBoot: Found high resolution boot incomaptible hardware DispCIIsDeviceCompatibleWithHighResolutionBoot
dispci.dll: DispCISetServiceStartType: No change to the service start required
dispci.dll: ============END OnInstallDevice==============
dispci.dll: DisplayClassInstaller: Returning 0x00000000 for DIF 0x2 and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&2E5A831D&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x410015
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device PCIVEN_1002&DEV_515E&SUBSYS_01E61028&REV_024&2E5A831D&0&28F0
dispci.dll: ============END DisplayClassInstaller==============
montr_ci.dll: DIF_SELECTBESTCOMPATDRV
montr_ci.dll: Returning 0xe000020e for function 0x17 and device DISPLAYDEFAULT_MONITOR5&2FAB8E39&0&12345678&06&05.
montr_ci.dll: DIF_DESTROYPRIVATEDATA
montr_ci.dll: Returning 0xe000020e for function 0xc and device DISPLAYDEFAULT_MONITOR5&2FAB8E39&0&12345678&06&05.
montr_ci.dll: DIF_ALLOW_INSTALL
montr_ci.dll: Returning 0xe000020e for function 0x18 and device DISPLAYDEFAULT_MONITOR5&2FAB8E39&0&12345678&06&05.
montr_ci.dll: DIF_INSTALLDEVICEFILES
montr_ci.dll: Retrieving driver details....
montr_ci.dll: Returning 0xe000020e for function 0x15 and device DISPLAYDEFAULT_MONITOR5&2FAB8E39&0&12345678&06&05.
montr_ci.dll: DIF_REGISTER_COINSTALLERS
montr_ci.dll: Returning 0xe000020e for function 0x22 and device DISPLAYDEFAULT_MONITOR5&2FAB8E39&0&12345678&06&05.
montr_ci.dll: DIF_INSTALLINTERFACES
montr_ci.dll: Returning 0xe000020e for function 0x20 and device DISPLAYDEFAULT_MONITOR5&2FAB8E39&0&12345678&06&05.
montr_ci.dll: DIF_INSTALLDEVICE
montr_ci.dll: ============BEGIN OnInstallMonitorDevice============
montr_ci.dll: Retrieving driver details....
montr_ci.dll: ============END OnInstallMonitorDevice============
montr_ci.dll: Returning 0xe000020e for function 0x2 and device DISPLAYDEFAULT_MONITOR5&2FAB8E39&0&12345678&06&05.
montr_ci.dll: DIF_NEWDEVICEWIZARD_FINISHINSTALL
montr_ci.dll: Returning 0xe000020e for function 0x1e and device DISPLAYDEFAULT_MONITOR5&2FAB8E39&0&12345678&06&05.
montr_ci.dll: DIF_DESTROYPRIVATEDATA
montr_ci.dll: Returning 0xe000020e for function 0xc and device DISPLAYDEFAULT_MONITOR5&2FAB8E39&0&12345678&06&05.
Input Install: Not a PS2 device.
Input Install: Not a PS2 device.
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0xa
dispci.dll: ============END DisplayClassInstaller==============
montr_ci.dll: MonitorClassInstaller: Unrecognized DIF request
montr_ci.dll: Returning 0xe000020e for function 0x6.
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc
dispci.dll: ============END DisplayClassInstaller==============
montr_ci.dll: DIF_DESTROYPRIVATEDATA
montr_ci.dll: Returning 0xe000020e for function 0xc.
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
2015-07-21 12:08:51, Info CBS Starting TrustedInstaller initialization.
2015-07-21 12:08:51, Info CBS Loaded Servicing Stack v6.1.7601.17514 with Core: C:Windowswinsxsamd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.17514_none_678566b7ddea04a5cbscore.dll
2015-07-21 12:08:52, Info CSI 00000001@2015/7/21:11:08:52.291 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fefaaee94d @0x7fefb0c9839 @0x7fefb0934d3 @0xff8ae97c @0xff8ad799 @0xff8adb2f)
2015-07-21 12:08:52, Info CSI 00000002@2015/7/21:11:08:52.416 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fefaaee94d @0x7fefb116806 @0x7fefb0e2a9c @0x7fefb0935a9 @0xff8ae97c @0xff8ad799)
2015-07-21 12:08:52, Info CBS SQM: Initializing online with Windows opt-in: False
2015-07-21 12:08:52, Info CBS SQM: Cleaning up report files older than 10 days.
2015-07-21 12:08:52, Info CBS SQM: Requesting upload of all unsent reports.
2015-07-21 12:08:52, Info CBS SQM: Failed to start upload with file pattern: C:Windowsservicingsqm*_std.sqm, flags: 0x2 [HRESULT = 0x80004005 - E_FAIL]
2015-07-21 12:08:52, Info CBS SQM: Failed to start standard sample upload. [HRESULT = 0x80004005 - E_FAIL]
2015-07-21 12:08:52, Info CBS SQM: Failed to start upload with file pattern: C:Windowsservicingsqm*_all.sqm, flags: 0x6 [HRESULT = 0x80004005 - E_FAIL]
2015-07-21 12:08:52, Info CBS SQM: Failed to start always sample upload. [HRESULT = 0x80004005 - E_FAIL]
2015-07-21 12:08:52, Info CBS SQM: Warning: Failed to upload all unsent reports. [HRESULT = 0x80004005 - E_FAIL]
2015-07-21 12:08:52, Info CSI 00000003@2015/7/21:11:08:52.478 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fefaaee94d @0x7fefa738728 @0x7fefa738856 @0xff8ae474 @0xff8ad7de @0xff8adb2f)
2015-07-21 12:08:52, Info CBS Ending TrustedInstaller initialization.
2015-07-21 12:08:52, Info CBS Starting the TrustedInstaller main loop.
2015-07-21 12:08:52, Info CBS TrustedInstaller service starts successfully.
2015-07-21 12:08:52, Info CBS Setup in progress, aborting startup processing checks.
2015-07-21 12:08:52, Info CBS Startup processing thread terminated normally
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: No audio endpoint migration settings found 0x2
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnSelectBestCompatDrv============
dispci.dll: ============END OnSelectBestCompatDrv==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x17 and device PCIVEN_8086&DEV_0412&SUBSYS_D0001458&REV_063&11583659&0&10
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device PCIVEN_8086&DEV_0412&SUBSYS_D0001458&REV_063&11583659&0&10
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnAllowInstall============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xfe
dispci.dll: ============END OnAllowInstall==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x18 and device PCIVEN_8086&DEV_0412&SUBSYS_D0001458&REV_063&11583659&0&10
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnInstallDeviceFiles============
dispci.dll: ============END OnInstallDeviceFiles==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x15 and device PCIVEN_8086&DEV_0412&SUBSYS_D0001458&REV_063&11583659&0&10
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x410031
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x410031
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xfe
dispci.dll: ============BEGIN OnInstallDevice============
dispci.dll: DispCISetServiceStartType: No change to the service start required
dispci.dll: ============END OnInstallDevice==============
dispci.dll: DisplayClassInstaller: Returning 0x00000000 for DIF 0x2 and device PCIVEN_8086&DEV_0412&SUBSYS_D0001458&REV_063&11583659&0&10
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x410031
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device PCIVEN_8086&DEV_0412&SUBSYS_D0001458&REV_063&11583659&0&10
dispci.dll: ============END DisplayClassInstaller==============
AudMig: No audio endpoint migration settings found 0x2
montr_ci.dll: DIF_SELECTBESTCOMPATDRV
montr_ci.dll: Returning 0xe000020e for function 0x17 and device DISPLAYAOCA7814&38B6BD55&0&12345678&00&02.
montr_ci.dll: DIF_DESTROYPRIVATEDATA
montr_ci.dll: Returning 0xe000020e for function 0xc and device DISPLAYAOCA7814&38B6BD55&0&12345678&00&02.
AudMig: Applying saved Audio settings
AudMig: No audio endpoint migration settings found 0x2
AudMig: No migration information found, skipping migration 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
montr_ci.dll: DIF_ALLOW_INSTALL
montr_ci.dll: Returning 0xe000020e for function 0x18 and device DISPLAYAOCA7814&38B6BD55&0&12345678&00&02.
montr_ci.dll: DIF_INSTALLDEVICEFILES
montr_ci.dll: Retrieving driver details....
montr_ci.dll: Returning 0xe000020e for function 0x15 and device DISPLAYAOCA7814&38B6BD55&0&12345678&00&02.
montr_ci.dll: DIF_REGISTER_COINSTALLERS
montr_ci.dll: Returning 0xe000020e for function 0x22 and device DISPLAYAOCA7814&38B6BD55&0&12345678&00&02.
montr_ci.dll: DIF_INSTALLINTERFACES
montr_ci.dll: Returning 0xe000020e for function 0x20 and device DISPLAYAOCA7814&38B6BD55&0&12345678&00&02.
montr_ci.dll: DIF_INSTALLDEVICE
montr_ci.dll: ============BEGIN OnInstallMonitorDevice============
montr_ci.dll: Retrieving driver details....
montr_ci.dll: ============END OnInstallMonitorDevice============
montr_ci.dll: Returning 0xe000020e for function 0x2 and device DISPLAYAOCA7814&38B6BD55&0&12345678&00&02.
montr_ci.dll: DIF_NEWDEVICEWIZARD_FINISHINSTALL
montr_ci.dll: Returning 0xe000020e for function 0x1e and device DISPLAYAOCA7814&38B6BD55&0&12345678&00&02.
montr_ci.dll: DIF_DESTROYPRIVATEDATA
montr_ci.dll: Returning 0xe000020e for function 0xc and device DISPLAYAOCA7814&38B6BD55&0&12345678&00&02.
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
Input Install: Not a PS2 device.
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x260034
dispci.dll: ============END DisplayClassInstaller==============
montr_ci.dll: MonitorClassInstaller: Unrecognized DIF request
montr_ci.dll: Returning 0xe000020e for function 0x6.
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc
dispci.dll: ============END DisplayClassInstaller==============
montr_ci.dll: DIF_DESTROYPRIVATEDATA
montr_ci.dll: Returning 0xe000020e for function 0xc.
2015-07-21 12:10:04, Info CBS Trusted Installer signaled for shutdown, going to exit.
2015-07-21 12:10:04, Info CBS Ending the TrustedInstaller main loop.
2015-07-21 12:10:04, Info CBS Starting TrustedInstaller finalization.
2015-07-21 12:10:04, Info CBS Failed to unload the COMPONENTS hive. [HRESULT = 0x80070057 - E_INVALIDARG]
2015-07-21 12:10:04, Info CBS Ending TrustedInstaller finalization.
AudMig: No audio endpoint migration settings found 0x2
WdfCoInstaller: [07/21/2015 12:20.59.228] DIF_INSTALLDEVICE: Pre-Processing
WdfCoInstaller: [07/21/2015 12:20.59.275] ReadComponents: WdfSection for Driver Service MEIx64 using KMDF lib version Major 1, minor 11
WdfCoInstaller: [07/21/2015 12:20.59.290] DIF_INSTALLDEVICE: Coinstaller version: 1.11.0
WdfCoInstaller: [07/21/2015 12:20.59.290] DIF_INSTALLDEVICE: KMDF in-memory version: 1.9.7600
WdfCoInstaller: [07/21/2015 12:20.59.306] DIF_INSTALLDEVICE: KMDF on-disk version: 1.9.7600
WdfCoInstaller: [07/21/2015 12:20.59.306] Service Wdf01000 is running
WdfCoInstaller: [07/21/2015 12:20.59.306] DIF_INSTALLDEVICE: Reboot is required, because the in-memory KMDF version is older than KmdfLibraryVersion for service MEIx64.
WdfCoInstaller: [07/21/2015 12:20.59.322] DIF_INSTALLDEVICE: Update is required, because the on-disk KMDF version is older than the coinstaller
WdfCoInstaller: [07/21/2015 12:20.59.368] Invoking "C:Windowssystem32wusa.exe "C:WindowsTempWdfTempKmdf-1.11-Win-6.1.msu" /quiet /norestart".
WdfCoInstaller: [07/21/2015 12:21.05.624] The package was installed successfully: error(3010) The requested operation is successful. Changes will not be effective until the system is rebooted.
.
WdfCoInstaller: [07/21/2015 12:21.05.655] InstallComponents: KMDF installed successfully
WdfCoInstaller: [07/21/2015 12:21.05.671] InstallComponents: Reboot needed by windows update
WdfCoInstaller: [07/21/2015 12:21.05.967] DIF_INSTALLDEVICE: Post-Processing
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No audio endpoint migration settings found 0x2
AudMig: No migration information found, skipping migration 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
WdfCoInstaller: [07/21/2015 12:25.33.102] DIF_INSTALLDEVICE: Pre-Processing
WdfCoInstaller: [07/21/2015 12:25.33.211] ReadComponents: WdfSection for Driver Service iusb3hcs using KMDF lib version Major 0x1, minor 0x9
WdfCoInstaller: [07/21/2015 12:25.33.679] DIF_INSTALLDEVICE: Post-Processing
AudMig: No audio endpoint migration settings found 0x2
Input Install: Not a PS2 device.
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
WdfCoInstaller: [07/23/2015 19:25.02.483] DIF_INSTALLDEVICE: Pre-Processing
WdfCoInstaller: [07/23/2015 19:25.02.499] ReadComponents: WdfSection for Driver Service GenericMount using KMDF lib version Major 0x1, minor 0x9
WdfCoInstaller: [07/23/2015 19:25.02.951] DIF_INSTALLDEVICE: Post-Processing
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
Input Install: Not a PS2 device.
AudMig: No audio endpoint migration settings found 0x2
Input Install: Not a PS2 device.
Input Install: Not a PS2 device.
WdfCoInstaller: [07/24/2015 11:23.26.401] DIF_INSTALLDEVICE: Pre-Processing
WdfCoInstaller: [07/24/2015 11:23.26.916] ReadComponents: WdfSection for Driver Service Point64 using KMDF lib version Major 1, minor 11
WdfCoInstaller: [07/24/2015 11:23.26.994] DIF_INSTALLDEVICE: Coinstaller version: 1.11.0
WdfCoInstaller: [07/24/2015 11:23.27.057] DIF_INSTALLDEVICE: KMDF in-memory version: 1.11.0
WdfCoInstaller: [07/24/2015 11:23.27.166] DIF_INSTALLDEVICE: KMDF on-disk version: 1.11.0
WdfCoInstaller: [07/24/2015 11:23.27.197] Service Wdf01000 is running
WdfCoInstaller: [07/24/2015 11:23.27.244] DIF_INSTALLDEVICE: Update is not required. The on-disk KMDF version is newer than or same as the version of the coinstaller
Input Install: Not a PS2 device.
WdfCoInstaller: [07/24/2015 11:23.30.130] DIF_INSTALLDEVICE: Post-Processing
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
[07/28/2015 13:45.36.226] WudfCoInstaller: ReadWdfSection: Checking WdfSection [Basic_Install.Wdf]
[07/28/2015 13:45.36.276] WudfCoInstaller: Configuring UMDF Service WpdFs.
[07/28/2015 13:45.36.306] WudfCoInstaller: ImpersonationLevel set to 2
[07/28/2015 13:45.36.316] WudfCoInstaller: Using "Win7" service configuration
[07/28/2015 13:45.36.476] WudfCoInstaller: Service WudfSvc started successfully.
[07/28/2015 13:45.36.506] WudfCoInstaller: Final status: error(0) The operation completed successfully.
[07/28/2015 13:45.37.456] WudfCoInstaller: Created marker file C:Windowssystem32driversMsft_User_WpdFs_01_09_00.Wdf.
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
AudMig: No audio endpoint migration settings found 0x2
Open in new window
Stand alone Mac Pro so I assume that means W10 in place. Setuperr had no files that I could open. all said locked. Setupact.log had this. Which means nothing to me sadly. Not sure why it references W7 or the 32 bit system as this is a 64 bit install. If you have the time to look, thaks in advance.
adispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnSelectBestCompatDrv============
dispci.dll: ============END OnSelectBestCompatDrv==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x17 and device VMBUS{DA0A7802-E377-4AAC-8E77-0558EB1073F8}{5620E0C7-8062-4DCE-AEB7-520C7EF76 171}
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device VMBUS{DA0A7802-E377-4AAC-8E77-0558EB1073F8}{5620E0C7-8062-4DCE-AEB7-520C7EF76 171}
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnAllowInstall============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xdd
dispci.dll: ============END OnAllowInstall==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x18 and device VMBUS{DA0A7802-E377-4AAC-8E77-0558EB1073F8}{5620E0C7-8062-4DCE-AEB7-520C7EF76 171}
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnInstallDeviceFiles============
dispci.dll: ============END OnInstallDeviceFiles==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x15 and device VMBUS{DA0A7802-E377-4AAC-8E77-0558EB1073F8}{5620E0C7-8062-4DCE-AEB7-520C7EF76 171}
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x630
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x360
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xdd
dispci.dll: ============BEGIN OnInstallDevice============
dispci.dll: ============END OnInstallDevice==============
dispci.dll: DisplayClassInstaller: Returning 0x00000000 for DIF 0x2 and device VMBUS{DA0A7802-E377-4AAC-8E77-0558EB1073F8}{5620E0C7-8062-4DCE-AEB7-520C7EF76 171}
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device VMBUS{DA0A7802-E377-4AAC-8E77-0558EB1073F8}{5620E0C7-8062-4DCE-AEB7-520C7EF76 171}
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x88b0
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnSelectBestCompatDrv============
dispci.dll: ============END OnSelectBestCompatDrv==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x17 and device PCIVEN_1002&DEV_6798&SUBSYS_0127106B&REV_004&265D71C3&0&0018
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device PCIVEN_1002&DEV_6798&SUBSYS_0127106B&REV_004&265D71C3&0&0018
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnSelectBestCompatDrv============
dispci.dll: ============END OnSelectBestCompatDrv==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x17 and device PCIVEN_1002&DEV_6798&SUBSYS_0128106B&REV_004&1F9EF917&0&0010
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device PCIVEN_1002&DEV_6798&SUBSYS_0128106B&REV_004&1F9EF917&0&0010
dispci.dll: ============END DisplayClassInstaller==============
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
WdfCoInstaller: [05/21/2015 19:46.21.253] DIF_INSTALLDEVICE: Pre-Processing
WdfCoInstaller: [05/21/2015 19:46.21.253] ReadComponents: WdfSection for Driver Service AppleBtBc using KMDF lib version Major 0x1, minor 0x5
BthMig: Applying saved Bluetooth settingsBthMig: System in setup 0BthMig: No migration information found, skipping migrationWdfCoInstaller: [05/21/2015 19:46.21.470] DIF_INSTALLDEVICE: Post-Processing
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnAllowInstall============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xfb
dispci.dll: ============END OnAllowInstall==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x18 and device PCIVEN_1002&DEV_6798&SUBSYS_0127106B&REV_004&265D71C3&0&0018
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnInstallDeviceFiles============
dispci.dll: ============END OnInstallDeviceFiles==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x15 and device PCIVEN_1002&DEV_6798&SUBSYS_0127106B&REV_004&265D71C3&0&0018
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x1
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x2
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xfb
dispci.dll: ============BEGIN OnInstallDevice============
dispci.dll: DispCIIsDeviceCompatibleWithHighResolutionBoot: Found high resolution boot incomaptible hardware DispCIIsDeviceCompatibleWithHighResolutionBoot
dispci.dll: ============END OnInstallDevice==============
dispci.dll: DisplayClassInstaller: Returning 0x00000000 for DIF 0x2 and device PCIVEN_1002&DEV_6798&SUBSYS_0127106B&REV_004&265D71C3&0&0018
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x750
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device PCIVEN_1002&DEV_6798&SUBSYS_0127106B&REV_004&265D71C3&0&0018
dispci.dll: ============END DisplayClassInstaller==============
[05/21/2015 19:46.22.210] WudfCoInstaller: ReadWdfSection: Checking WdfSection [Basic_Install.Wdf]
[05/21/2015 19:46.22.210] WudfCoInstaller: Configuring UMDF Service WpdFs.
[05/21/2015 19:46.22.226] WudfCoInstaller: ImpersonationLevel set to 2
[05/21/2015 19:46.22.226] WudfCoInstaller: Using «Win7» service configuration
[05/21/2015 19:46.22.335] WudfCoInstaller: Service WudfSvc started successfully.
[05/21/2015 19:46.22.335] WudfCoInstaller: Final status: error(0) The operation completed successfully.
[05/21/2015 19:46.22.382] WudfCoInstaller: Created marker file C:Windowssystem32driversMsft_User_WpdFs_01_11_00.Wdf.
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnAllowInstall============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xfb
dispci.dll: ============END OnAllowInstall==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x18 and device PCIVEN_1002&DEV_6798&SUBSYS_0128106B&REV_004&1F9EF917&0&0010
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnInstallDeviceFiles============
dispci.dll: ============END OnInstallDeviceFiles==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0x15 and device PCIVEN_1002&DEV_6798&SUBSYS_0128106B&REV_004&1F9EF917&0&0010
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0xba3446b4
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0xba3446b4
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DispCIIsDriverInstallAllowed: Driver package contains a feature score 0xfb
dispci.dll: ============BEGIN OnInstallDevice============
dispci.dll: DispCIIsDeviceCompatibleWithHighResolutionBoot: Found high resolution boot incomaptible hardware DispCIIsDeviceCompatibleWithHighResolutionBoot
dispci.dll: ============END OnInstallDevice==============
dispci.dll: DisplayClassInstaller: Returning 0x00000000 for DIF 0x2 and device PCIVEN_1002&DEV_6798&SUBSYS_0128106B&REV_004&1F9EF917&0&0010
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0xba3402f8
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: ============BEGIN OnDestroyPrivateData============
dispci.dll: ============END OnDestroyPrivateData==============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc and device PCIVEN_1002&DEV_6798&SUBSYS_0128106B&REV_004&1F9EF917&0&0010
dispci.dll: ============END DisplayClassInstaller==============
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Unrecognized DIF request 0x1440
dispci.dll: ============END DisplayClassInstaller==============
dispci.dll: ============BEGIN DisplayClassInstaller============
dispci.dll: DisplayClassInstaller: Returning 0xe000020e for DIF 0xc
dispci.dll: ============END DisplayClassInstaller==============
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
WdfCoInstaller: [05/21/2015 20:09.41.976] DIF_INSTALLDEVICE: Pre-Processing
WdfCoInstaller: [05/21/2015 20:09.41.992] ReadComponents: WdfSection for Driver Service CirrusLFD using KMDF lib version Major 1, minor 11
WdfCoInstaller: [05/21/2015 20:09.41.992] ReadComponents: WdfSection for Driver Service CirrusUFD using KMDF lib version Major 1, minor 11
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
WdfCoInstaller: [05/21/2015 20:09.42.242] DIF_INSTALLDEVICE: Post-Processing
WdfCoInstaller: [05/21/2015 20:10.55.698] DIF_INSTALLDEVICE: Pre-Processing
WdfCoInstaller: [05/21/2015 20:10.55.698] ReadComponents: WdfSection for Driver Service MEIx64 using KMDF lib version Major 1, minor 11
WdfCoInstaller: [05/21/2015 20:10.55.792] DIF_INSTALLDEVICE: Post-Processing
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
AudMig: Applying saved Audio settings
AudMig: No migration information found, skipping migration 0x2
[05/21/2015 13:36.44.516] WudfCoInstaller: ReadWdfSection: Checking WdfSection [Basic_Install.Wdf]
[05/21/2015 13:36.44.519] WudfCoInstaller: UMDF Service WpdFs is already installed — removing existing settings in preparation for setting new ones.
[05/21/2015 13:36.44.521] WudfCoInstaller: Configuring UMDF Service WpdFs.
[05/21/2015 13:36.44.523] WudfCoInstaller: ImpersonationLevel set to 2
[05/21/2015 13:36.44.524] WudfCoInstaller: Using «Win7» service configuration
[05/21/2015 13:36.44.527] WudfCoInstaller: Service WudfSvc is already running.
[05/21/2015 13:36.44.529] WudfCoInstaller: Final status: error(0) The operation completed successfully.
[05/21/2015 13:36.44.572] WudfCoInstaller: Created marker file C:Windowssystem32driversMsft_User_WpdFs_01_11_00.Wdf.
[05/21/2015 13:37.10.194] WudfCoInstaller: ReadWdfSection: Checking WdfSection [Basic_Install.Wdf]
[05/21/2015 13:37.10.197] WudfCoInstaller: UMDF Service WpdFs is already installed — removing existing settings in preparation for setting new ones.
[05/21/2015 13:37.10.199] WudfCoInstaller: Configuring UMDF Service WpdFs.
[05/21/2015 13:37.10.201] WudfCoInstaller: ImpersonationLevel set to 2
[05/21/2015 13:37.10.202] WudfCoInstaller: Using «Win7» service configuration
[05/21/2015 13:37.10.204] WudfCoInstaller: Service WudfSvc is already running.
[05/21/2015 13:37.10.206] WudfCoInstaller: Final status: error(0) The operation completed successfully.
[05/21/2015 13:37.20.747] WudfCoInstaller: Created marker file C:Windowssystem32driversMsft_User_WpdFs_01_11_00.Wdf.
[05/21/2015 13:37.30.720] WudfCoInstaller: ReadWdfSection: Checking WdfSection [Basic_Install.Wdf]
[05/21/2015 13:37.30.723] WudfCoInstaller: UMDF Service WpdFs is already installed — removing existing settings in preparation for setting new ones.
[05/21/2015 13:37.30.725] WudfCoInstaller: Configuring UMDF Service WpdFs.
[05/21/2015 13:37.30.727] WudfCoInstaller: ImpersonationLevel set to 2
[05/21/2015 13:37.30.728] WudfCoInstaller: Using «Win7» service configuration
[05/21/2015 13:37.30.730] WudfCoInstaller: Service WudfSvc is already running.
[05/21/2015 13:37.30.731] WudfCoInstaller: Final status: error(0) The operation completed successfully.
[05/21/2015 13:37.30.753] WudfCoInstaller: Created marker file C:Windowssystem32driversMsft_User_WpdFs_01_11_00.Wdf.
WdfCoInstaller: [06/02/2015 07:16.11.055] DIF_INSTALLDEVICE: Pre-Processing
WdfCoInstaller: [06/02/2015 07:16.11.055] ReadComponents: WdfSection for Driver Service AppleODD using KMDF lib version Major 0x1, minor 0x5
WdfCoInstaller: [06/02/2015 07:16.28.613] DIF_INSTALLDEVICE: Post-Processing
AudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgrade[06/04/2015 19:36.15.829] WudfCoInstaller: ReadWdfSection: Checking WdfSection [LocationProvider_Install.NT.Wdf]
[06/04/2015 19:36.15.829] WudfCoInstaller: Configuring UMDF Service LocationProvider.
[06/04/2015 19:36.15.829] WudfCoInstaller: ImpersonationLevel set to 2
[06/04/2015 19:36.15.844] WudfCoInstaller: Using «Win7» service configuration
[06/04/2015 19:36.15.844] WudfCoInstaller: Service WudfSvc is already running.
[06/04/2015 19:36.15.844] WudfCoInstaller: Final status: error(0) The operation completed successfully.
[06/04/2015 19:36.15.938] WudfCoInstaller: Created marker file C:Windowssystem32driversMsft_User_LocationProvider_01_11_00.Wdf.
AudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgrade[09/21/2015 14:35.51.941] WudfCoInstaller: ReadWdfSection: Checking WdfSection [Basic_Install.Wdf]
[09/21/2015 14:35.51.941] WudfCoInstaller: UMDF Service WpdFs is already installed — removing existing settings in preparation for setting new ones.
[09/21/2015 14:35.51.956] WudfCoInstaller: Configuring UMDF Service WpdFs.
[09/21/2015 14:35.51.956] WudfCoInstaller: ImpersonationLevel set to 2
[09/21/2015 14:35.51.956] WudfCoInstaller: Using «Win7» service configuration
[09/21/2015 14:35.52.097] WudfCoInstaller: Service WudfSvc started successfully.
[09/21/2015 14:35.52.097] WudfCoInstaller: Final status: error(0) The operation completed successfully.
[09/21/2015 14:35.52.253] WudfCoInstaller: Created marker file C:Windowssystem32driversMsft_User_WpdFs_01_11_00.Wdf.
[09/21/2015 14:35.52.394] WudfCoInstaller: ReadWdfSection: Checking WdfSection [Basic_Install.Wdf]
[09/21/2015 14:35.52.410] WudfCoInstaller: UMDF Service WpdFs is already installed — removing existing settings in preparation for setting new ones.
[09/21/2015 14:35.52.976] WudfCoInstaller: Configuring UMDF Service WpdFs.
[09/21/2015 14:35.52.992] WudfCoInstaller: ImpersonationLevel set to 2
[09/21/2015 14:35.53.007] WudfCoInstaller: Using «Win7» service configuration
[09/21/2015 14:35.53.007] WudfCoInstaller: Service WudfSvc is already running.
[09/21/2015 14:35.53.007] WudfCoInstaller: Final status: error(0) The operation completed successfully.
[09/21/2015 14:35.53.054] WudfCoInstaller: Created marker file C:Windowssystem32driversMsft_User_WpdFs_01_11_00.Wdf.
AudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgradeAudMig: RegOpenKeyEx can’t open audioendpointbuilder Upgrade key with Hresult 0x80070002. Most likely not an upgr
Информация о системе:
На вашем ПК работает: …
Ошибка Wudfcoinstaller.dll: как исправить?
В начале нужно понять, почему wudfcoinstaller.dll файл отсутствует и какова причина возникновения wudfcoinstaller.dll ошибки. Часто программное обеспечение попросту не может функционировать из-за недостатков в .dll-файлах.
Что означает DLL-файл? Почему возникают DLL-ошибки?
DLL (Dynamic-Link Libraries) являются общими библиотеками в Microsoft Windows, которые реализовала корпорация Microsoft. Известно, что файлы DLL так же важны, как и файлы с расширением EXE. Реализовать DLL-архивы, не используя утилиты с расширением .exe, нельзя.
Файлы DLL помогают разработчикам применять стандартный код с информаций, чтобы обновить функциональность программного обеспечения, не используя перекомпиляцию. Получается, файлы MSVCP100.dll содержат код с данными на разные программы. Одному DLL-файлу предоставили возможность быть использованным иным ПО, даже если отсутствует необходимость в этом. Как итог – нет нужно создавать копии одинаковой информации.
Когда стоит ожидать появление отсутствующей ошибки Wudfcoinstaller.dll?
Когда перед пользователем возникает данное сообщения, появляются неисправности с Wudfcoinstaller.dll
- Программа не может запуститься, так как Wudfcoinstaller.dll отсутствует на ПК.
- Wudfcoinstaller.dll пропал.
- Wudfcoinstaller.dll не найден.
- Wudfcoinstaller.dll пропал с ПК. Переустановите программу для исправления проблемы.
- «Это приложение невозможно запустить, так как Wudfcoinstaller.dll не найден. Переустановите приложения для исправления проблемы.»
Что делать, когда проблемы начинают появляться во время запуска программы? Это вызвано из-за неисправностей с Wudfcoinstaller.dll. Есть проверенные способы, как быстро избавиться от этой ошибки навсегда.
Метод 1: Скачать Wudfcoinstaller.dll для установки вручную
В первую очередь, необходимо скачать Wudfcoinstaller.dll на компьютер только с нашего сайта, на котором нет вирусов и хранятся тысячи бесплатных Dll-файлов.
- Копируем файл в директорию установки программы только тогда, когда программа пропустит DLL-файл.
- Также можно переместить файл DLL в директорию системы ПК (для 32-битной системы — C:WindowsSystem32, для 64-битной системы — C:WindowsSysWOW64).
- Теперь следует перезагрузить свой ПК.
Метод не помог и появляются сообщения — «wudfcoinstaller.dll Missing» или «wudfcoinstaller.dll Not Found»? Тогда воспользуйтесь следующим методом.
Wudfcoinstaller.dll Версии
Дата выхода: February 28, 2021
| Версия | Язык | Размер | MD5 / SHA-1 | |
|---|---|---|---|---|
| 6.2.9200.16384 32bit | U.S. English | 38 kb |
MD5 SHA1 |
|
Дата выхода: February 28, 2021
| Версия | Язык | Размер | MD5 / SHA-1 | |
|---|---|---|---|---|
| 6.0.6001.18000 64bit | U.S. English | 87.5 kb |
MD5 SHA1 |
|
Дата выхода: February 28, 2021
| Версия | Язык | Размер | MD5 / SHA-1 | |
|---|---|---|---|---|
| 6.0.5716.32 32bit | U.S. English | 93.1 kb |
MD5 SHA1 |
|
Дата выхода: February 28, 2021
| Версия | Язык | Размер | MD5 / SHA-1 | |
|---|---|---|---|---|
| 10.0.14393.0 64bit | U.S. English | 47 kb |
MD5 SHA1 |
|
Дата выхода: February 28, 2021
| Версия | Язык | Размер | MD5 / SHA-1 | |
|---|---|---|---|---|
| 10.0.10586.0 64bit | U.S. English | 47 kb |
MD5 SHA1 |
|
Метод 2: Исправить Wudfcoinstaller.dll автоматически благодаря инструменту для исправления ошибок
Очень часто ошибка появляется из-за случайного удаления файла Wudfcoinstaller.dll, а это моментально вызывает аварийное завершение работы приложения. Программы с вирусами делают так, что Wudfcoinstaller.dll и остальные системные файлы повреждаются.
Исправить Wudfcoinstaller.dll автоматически можно благодаря инструмента, который исправляет все ошибки! Подобное устройство необходимо для процедуры восстановления всех поврежденных или удаленных файлов, которые находятся в папках Windows. Следует только установить инструмент, запустить его, а программа сама начнет исправлять найденные Wudfcoinstaller.dll проблемы.
Данный метод не смог помочь? Тогда переходите к следующему.
Метод 3: Устанавливаем/переустанавливаем пакет Microsoft Visual C ++ Redistributable Package
Ошибку Wudfcoinstaller.dll часто можно обнаружить, когда неправильно работает Microsoft Visual C++ Redistribtable Package. Следует проверить все обновления или переустановить ПО. Сперва воспользуйтесь поиском Windows Updates для поиска Microsoft Visual C++ Redistributable Package, чтобы обновить/удалить более раннюю версию на новую.
- Нажимаем клавишу с лого Windows для выбора Панель управления. Здесь смотрим на категории и нажимаем Uninstall.
- Проверяем версию Microsoft Visual C++ Redistributable и удаляем самую раннюю из них.
- Повторяем процедуру удаления с остальными частями Microsoft Visual C++ Redistributable.
- Также можно установить 3-ю версию редистрибутива 2015 года Visual C++ Redistribtable, воспользовавшись загрузочной ссылкой на официальном сайте Microsoft.
- Как только загрузка установочного файла завершится, запускаем и устанавливаем его на ПК.
- Перезагружаем ПК.
Данный метод не смог помочь? Тогда переходите к следующему.
Метод 4: Переустановка программы
Необходимая программа показывает сбои по причине отсутствия .DLL файла? Тогда переустанавливаем программу, чтобы безопасно решить неисправность.
Метод не сумел помочь? Перейдите к следующему.
Метод 5: Сканируйте систему на вредоносные ПО и вирусы
System File Checker (SFC) является утилитой в операционной системе Windows, которая позволяет проводить сканирование системных файлов Windows и выявлять повреждения, а также с целью восстановить файлы системы. Данное руководство предоставляет информацию о том, как верно запускать System File Checker (SFC.exe) для сканирования системных файлов и восстановления недостающих/поврежденных системных файлов, к примеру, .DLL. Когда файл Windows Resource Protection (WRP) имеет повреждения или попросту отсутствует, система Windows начинает вести себя неправильно и с проблемами. Часто определенные функции Windows перестают функционировать и компьютер выходит из строя. Опцию «sfc scannow» используют как один из специальных переключателей, которая доступна благодаря команды sfc, команды командной строки, которая используется на запуск System File Checker. Для ее запуска сперва необходимо открыть командную строку, после чего ввести «командную строку» в поле «Поиск». Теперь нажимаем правой кнопкой мыши на «Командная строка» и выбираем «Запуск от имени администратора». Необходимо обязательно запускать командную строку, чтобы сделать сканирование SFC.
- Запуск полного сканирования системы благодаря антивирусной программы. Не следует надеяться лишь на Windows Defender, а выбираем дополнительно проверенную антивирусную программу.
- Как только обнаружится угроза, нужно переустановить программу, которая показывает уведомление о заражении. Лучше сразу переустановить программу.
- Пробуем провести восстановление при запуске системы, но только тогда, когда вышеперечисленные методы не сработали.
- Если ничего не помогает, тогда переустанавливаем ОС Windows.
В окне командной строки нужно ввести команду «sfc /scannow» и нажать Enter. System File Checker начнет свою работу, которая продлится не более 15 минут. Ждем, пока сканирование завершится, после чего перезагружаем ПК. Теперь ошибка «Программа не может запуститься из-за ошибки Wudfcoinstaller.dll отсутствует на вашем компьютере не должна появляться.
Метод 6: Очиститель реестра
Registry Cleaner считается мощной утилитой для очищения ненужных файлов, исправления проблем реестра, выяснения причин замедленной работы ПК и устранения неисправностей. Утилита идеальна для всех компьютеров. Пользователь с правами администратора сможет быстрее проводить сканирование и последующее очищение реестра.
- Загрузка приложения в ОС Windows.
- Устанавливаем программу и запускаем ее – все процессы очистки и исправления проблем на ПК пройдут автоматически.
Метод не сумел помочь? Перейдите к следующему.
Часто задаваемые вопросы (FAQ)
6.2.9200.16384 — последняя версия wudfcoinstaller.dll, которая доступна для скачивания
wudfcoinstaller.dll обязательно нужно расположить в системной папке Windows
Самый простой метод – это использовать инструмент для исправления ошибок dll
Эта страница доступна на других языках:
English |
Deutsch |
Español |
Italiano |
Français |
Indonesia |
Nederlands |
Nynorsk |
Português |
Українська |
Türkçe |
Malay |
Dansk |
Polski |
Română |
Suomi |
Svenska |
Tiếng việt |
Čeština |
العربية |
ไทย |
日本語 |
简体中文 |
한국어
