blob: 1b7693f23bc1953297b75209cdc27c3e0c2e092f [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 v25.20.100.6519, 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 igfx_win10_100.7463.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). "-s" means silent.
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