Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

n39dd21w - Install issue #89

Closed
SynMaki opened this issue May 9, 2023 · 4 comments
Closed

n39dd21w - Install issue #89

SynMaki opened this issue May 9, 2023 · 4 comments
Labels
bug Something isn't working

Comments

@SynMaki
Copy link

SynMaki commented May 9, 2023

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 SynMaki added the bug Something isn't working label May 9, 2023
@jantari
Copy link
Owner

jantari commented May 12, 2023

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.

@SynMaki
Copy link
Author

SynMaki commented May 15, 2023

LOG:
IntelGFX.log

@lifeunexpected
Copy link

lifeunexpected commented Apr 16, 2024

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

@jantari
Copy link
Owner

jantari commented Oct 10, 2024

Yes, sorry for leaving this up for so long but it didn't look like something LSUClient can fix or work around. Sometimes the packages Lenovo, or their OEMs like Intel, push out are just a little broken unfortunately.

Skipping them or installing an older version from a private repository can be a workaround until an official fix is released.

@jantari jantari closed this as completed Oct 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants