Проблема с драйвером Intel 3000 и Windows 10 для Macbook Air

2796
Robin

Я установил Windows 10 Technical Preview (10162). Установка прошла нормально, но после установки Windows устанавливает драйвер Intel HD 3000 через обновление Windows, после чего экраны остаются черными. Когда я перезагружаю компьютер, я вижу экран загрузки Windows, но после этого экраны становятся черными и остаются такими (я думаю, что это когда драйвер загружается). Я попытался отключить автоматическое обновление драйверов, но Windows все еще загружает эти драйверы, и я попадаю в ту же ситуацию.

Я также попытался установить драйверы из программного обеспечения поддержки bootcamp (5.1.4650) с точно таким же результатом. Я предполагаю, что это несовместимость между Windows 10 и этим драйвером.

Я не нашел способа отключить это обновление или загрузить непосредственно в режим восстановления и удалить драйвер. Любые идеи о том, как я могу помешать Windows установить этот драйвер?

0
You will have to wait until Intel releases drivers compatible with Windows 10, you can also wait, until Bootcamp officially supports Windows 10. [Beta Drivers](https://downloadcenter.intel.com/download/25027/Intel-Iris-Iris-Pro-and-HD-Graphics-Beta-Driver-for-Windows-10) Ramhound 8 лет назад 0
But I don't really need the driver, everything works fine without it. What I am looking for, is a way to prevent Windows from installing it and stick to the default driver (the one that comes installed with Windows). Robin 8 лет назад 0

1 ответ на вопрос

0
Robin

I found the solution to my issue in the following blogpost: http://hmemcpy.com/2015/04/preventing-a-certain-windows-update-from-installing-on-windows-10/

It describes how to disable a certain update in Windows 10 Technical Preview, here is short wrap up of the required steps, for the full guide, refer to the blog.

Install Windows Powershell Update Module

The module contains a set of functions to interact with the Windows Update from powershell.

  • First you need to download the Windows Update Powershell Module and extract it to %WINDIR%\System32\WindowsPowerShell\v1.0\Modules (or %USERPROFILE%\Documents\WindowsPowerShell\Modules)
  • To install it, set the execution policy to unrestricted (run Set-ExecutionPolicy Unrestricted -Force from powershell as admin) and import the module (Import-Module PSWindowsUpdate). After that, you should reset the execution policy to something more restrictive, such as RemoteSigned

Disable the Intel driver update

  • Get the list of updates to be installed: Get-WUList. This will print a list of all updates which will be installed.
  • To disable the Intel driver, use the Hide-WUUpdate function, e.g Hide-WUUpdate -Title "Intel*" (it might match multiple updates, but it will prompt you for every match, if you want to disable it or not).
  • If you re-run Get-WUList, the Intel driver has an H under Status, this means that it is hidden and won't be installed.