LSUClient icon indicating copy to clipboard operation
LSUClient copied to clipboard

n39dd21w - Install issue

Open SynMaki opened this issue 2 years ago • 3 comments

Version

1.5.5

Computer Model

20W9

Problem

Driver wants to be installed over and over again but theres no success

We have this issue on all our X13 G2s

ID : n39dd21w Title : Intel Graphics Driver - 10 (19H2 or Later)/11 (21H2 or Later) Type : Driver Success : False FailureReason : INSTALLER_EXITCODE PendingAction : NONE ExitCode : 1 StandardOutput : {} StandardError : {} LogOutput : {} Runtime : 00:00:01.7362738

Debug Log is attached

Additional context

DEBUGLSUClient.txt

SynMaki avatar May 09 '23 12:05 SynMaki

Since this is an Intel Graphics driver, there should be a log file from the installer at $env:ProgramData\Intel\Logs\IntelGFX.log. Maybe that contains more details on the problem, just an ExitCode of 1 doesn't tell us much unfortunately.

jantari avatar May 12 '23 17:05 jantari

LOG: IntelGFX.log

SynMaki avatar May 15 '23 05:05 SynMaki

This wont help fix your problem but when i was looking into getting LSUClient into a task sequence someone else had already written the powershell code needed for this and had experienced problems with Intel HD Graphics Driver like the way you are.

So in his powershell script he had added the lines of code below to deal with the "Intel HD Graphics Driver*" problem. He just choose to skip installing the Intel HD Graphics driver.

Specifically this:

$updates = Get-LSUpdate | Where-Object { $_.Installer.Unattended -AND $_.Title -notlike "Intel HD Graphics Driver*"}

#No Intel Graphics Driver
#Some weird shit going on with the package here on certain models, making the script run forever
function Run-LSUClientModuleCustom() {
    $regKey = $global:regKey
    if (-NOT(Test-Path -Path $regKey)) { New-Item -Path $regKey -Force | Out-Null }
    $updates = Get-LSUpdate | Where-Object { $_.Installer.Unattended -AND $_.Title -notlike "Intel HD Graphics Driver*"}
    foreach ($update in $updates) {
        Install-LSUpdate $update -Verbose
        New-ItemProperty -Path $regKey -Name $update.ID -Value $update.Title -Force | Out-Null
    }

You can find the information about this from the his website and its a good guide on how it works in a task sequnce. But for your case, im not sure if this can help you.

https://www.imab.dk/install-lenovo-drivers-and-bios-directly-from-lenovos-driver-catalog-during-osd-using-configuration-manager/

Edit: just did a quick Google search and found this: What might have happened is that Intel labeled the driver compatible with the CPU/hardware so Lenovo pushed it out but when it installas it checks in the code/config file its not on the list of supported CPU/hardware so it fails and then gets into a big nice loop.

https://community.intel.com/t5/Graphics/Driver-31-0-101-2121-gt-Error-8-gt-Something-went-wrong-while/m-p/1473839

lifeunexpected avatar Apr 16 '24 10:04 lifeunexpected