blob: ac1960480ddc382c703c1128faa50afb38b41164 [file] [log] [blame]
---
# Install Intel Graphics Driver for Skylake and later GPUs; applies only to group "skylake".
- hosts: skylake
tasks:
- name: Create Temp
win_file:
path: c:\Temp
state: directory
# For v24.20.100.6229, the Intel driver download page only has a ZIP available. If we want to
# switch back to using the EXE in the future, see git history.
- name: Copy the Intel Graphics Driver Skylake ZIP to the host
win_copy:
src: "{{ win_package_src }}/Intel Graphics Skylake win64_24.20.100.6229.zip"
dest: c:\Temp\intel_gfx.zip
- name: Extract the Intel Graphics Skylake driver ZIP
win_unzip:
src: c:\Temp\intel_gfx.zip
dest: C:\Temp\Intel
# The Intel driver uses the same product_id for multiple versions, so win_package doesn't work.
- name: Install Intel Graphics Driver for Skylake and later
# See https://www.intel.com/content/www/us/en/support/articles/000006773/graphics-drivers.html
# The "-overwrite" option allows downgrading the driver if a newer one is already installed for
# some reason (e.g. Windows Update).
win_command: c:\Temp\Intel\igxpin.exe -overwrite -s
- name: Cleanup Intel
win_file:
path: c:\Temp\Intel
state: absent
- name: Cleanup ZIP
win_file:
path: c:\Temp\intel_gfx.zip
state: absent