jantari / LSUClient

Orchestrate driver, BIOS/UEFI and firmware updates for Lenovo computers 👨‍💻
https://jantari.github.io/LSUClient-docs/
MIT License
208 stars 21 forks source link

Lenovo Battery Firmware Update Utility shows required but is up to date according to wudetect.exe #64

Closed swoonhusker1 closed 1 year ago

swoonhusker1 commented 1 year ago

Version

1.5.0 and lsuclient-develop

Computer Model

20Y0

Problem

Trying to run the LSUclient 1.5.0 and the LSUclient-develop and both are showing that "Lenovo Battery Firmware Update Utility" is needed but it does not ever install. The exit code is -3. The battery firmware is up to date on that one according to the wudetect.exe but detection is off I think.

image

In the additional context field I put a text file of the output of the get-lsuupdate -verbose -debug to see if that helps. That is using the lsuclient-develop module.

Additional context

get-lsuupdate -verbose -debug.txt

animentork commented 1 year ago

I think, the leading zeros in the DetectInstall._Firmware.Version elements are causing this. From lines 6181 and 6182:

[ Got: 102000A, Expected: 0102000a^ ]
Something unsupported encountered in: _Firmware

Test:

"102000A" -eq "0102000a^".Trim("^")
False

"0102000A" -eq "0102000a^".Trim("^")
True

The easiest solution would be to change this line in Test-MachineSatisfiesDependency if ($PnpDeviceFirmwareRev -eq $LenovoVersion.Trim('^')) { to if ($PnpDeviceFirmwareRev -eq $LenovoVersion.Trim('^').TrimStart("0")) {

Or for later tests, with hexadecimal comparisons and taking the circumflex into consideration:

if ($LenovoVersion.EndsWith("^")) {
    # greater equals
    if ([int] ("0x{0}" -f $PnpDeviceFirmwareRev) -ge [int] ("0x{0}" -f $LenovoVersion.Trim("^").TrimStart("0"))) {
}
else {
    if ([int] ("0x{0}" -f $PnpDeviceFirmwareRev) -eq [int] ("0x{0}" -f $LenovoVersion.Trim("^").TrimStart("0"))) {
}
jantari commented 1 year ago

Thanks for reporting this. @animentork is right, this is caused by the same underlying issue (lack of complete support for _Firmware tests and hexadecimal version comparisons) that also causes #61.

I have just pushed a5a2047 which should completely fix this now. If one of you has a 20Y0 or 20UC handy and wants to test the latest develop branch version then please go ahead and report back.

swoonhusker1 commented 1 year ago

Thanks for that, I wanted to test and maybe I'm doing something wrong but I'm getting some errors. Does this make any sense to you?

PS C:\WINDOWS\system32> Import-Module -Name C:\Temp\developermodule12-13\LSUClient-develop\LSUClient.psm1 -Verbose VERBOSE: Loading module from path 'C:\Temp\developermodule12-13\LSUClient-develop\LSUClient.psm1'. VERBOSE: Exporting function 'Compare-Array'. VERBOSE: Exporting function 'Compare-Version'. VERBOSE: Exporting function 'Debug-LongRunningProcess'. VERBOSE: Exporting function 'Expand-LSUpdate'. VERBOSE: Exporting function 'Get-PackagePathInfo'. VERBOSE: Exporting function 'Get-PackagesInRepository'. VERBOSE: Exporting function 'Get-WindowsVersion'. VERBOSE: Exporting function 'Install-BiosUpdate'. VERBOSE: Exporting function 'Invoke-PackageCommand'. VERBOSE: Exporting function 'New-WebClient'. VERBOSE: Exporting function 'Remove-CmdEscapeCharacter'. VERBOSE: Exporting function 'Resolve-CmdVariable'. VERBOSE: Exporting function 'Resolve-XMLDependencies'. VERBOSE: Exporting function 'Save-PackageFile'. VERBOSE: Exporting function 'Set-BIOSUpdateRegistryFlag'. VERBOSE: Exporting function 'Show-DownloadProgress'. VERBOSE: Exporting function 'Split-ExecutableAndArguments'. VERBOSE: Exporting function 'Test-MachineSatisfiesDependency'. VERBOSE: Exporting function 'Test-RunningAsAdmin'. VERBOSE: Exporting function 'Test-VersionPattern'. VERBOSE: Exporting function 'Test-Wflash2ForSCCMParameter'. VERBOSE: Exporting function 'Get-LSUClientConfiguration'. VERBOSE: Exporting function 'Get-LSUpdate'. VERBOSE: Exporting function 'Install-LSUpdate'. VERBOSE: Exporting function 'Save-LSUpdate'. VERBOSE: Exporting function 'Set-LSUClientConfiguration'. VERBOSE: Importing function 'Compare-Array'. VERBOSE: Importing function 'Compare-Version'. VERBOSE: Importing function 'Debug-LongRunningProcess'. VERBOSE: Importing function 'Expand-LSUpdate'. VERBOSE: Importing function 'Get-LSUClientConfiguration'. VERBOSE: Importing function 'Get-LSUpdate'. VERBOSE: Importing function 'Get-PackagePathInfo'. VERBOSE: Importing function 'Get-PackagesInRepository'. VERBOSE: Importing function 'Get-WindowsVersion'. VERBOSE: Importing function 'Install-BiosUpdate'. VERBOSE: Importing function 'Install-LSUpdate'. VERBOSE: Importing function 'Invoke-PackageCommand'. VERBOSE: Importing function 'New-WebClient'. VERBOSE: Importing function 'Remove-CmdEscapeCharacter'. VERBOSE: Importing function 'Resolve-CmdVariable'. VERBOSE: Importing function 'Resolve-XMLDependencies'. VERBOSE: Importing function 'Save-LSUpdate'. VERBOSE: Importing function 'Save-PackageFile'. VERBOSE: Importing function 'Set-BIOSUpdateRegistryFlag'. VERBOSE: Importing function 'Set-LSUClientConfiguration'. VERBOSE: Importing function 'Show-DownloadProgress'. VERBOSE: Importing function 'Split-ExecutableAndArguments'. VERBOSE: Importing function 'Test-MachineSatisfiesDependency'. VERBOSE: Importing function 'Test-RunningAsAdmin'. VERBOSE: Importing function 'Test-VersionPattern'. VERBOSE: Importing function 'Test-Wflash2ForSCCMParameter'.

PS C:\WINDOWS\system32> Import-Module -Name C:\Temp\developermodule12-13\LSUClient-develop\LSUClient.psd1 -Verbose VERBOSE: Loading module from path 'C:\Temp\developermodule12-13\LSUClient-develop\LSUClient.psd1'. VERBOSE: Importing function 'Compare-Array'. VERBOSE: Importing function 'Compare-Version'. VERBOSE: Importing function 'Debug-LongRunningProcess'. VERBOSE: Importing function 'Expand-LSUpdate'. VERBOSE: Importing function 'Get-LSUClientConfiguration'. VERBOSE: Importing function 'Get-LSUpdate'. VERBOSE: Importing function 'Get-PackagePathInfo'. VERBOSE: Importing function 'Get-PackagesInRepository'. VERBOSE: Importing function 'Get-WindowsVersion'. VERBOSE: Importing function 'Install-BiosUpdate'. VERBOSE: Importing function 'Install-LSUpdate'. VERBOSE: Importing function 'Invoke-PackageCommand'. VERBOSE: Importing function 'New-WebClient'. VERBOSE: Importing function 'Remove-CmdEscapeCharacter'. VERBOSE: Importing function 'Resolve-CmdVariable'. VERBOSE: Importing function 'Resolve-XMLDependencies'. VERBOSE: Importing function 'Save-LSUpdate'. VERBOSE: Importing function 'Save-PackageFile'. VERBOSE: Importing function 'Set-BIOSUpdateRegistryFlag'. VERBOSE: Importing function 'Set-LSUClientConfiguration'. VERBOSE: Importing function 'Show-DownloadProgress'. VERBOSE: Importing function 'Split-ExecutableAndArguments'. VERBOSE: Importing function 'Test-MachineSatisfiesDependency'. VERBOSE: Importing function 'Test-RunningAsAdmin'. VERBOSE: Importing function 'Test-VersionPattern'. VERBOSE: Importing function 'Test-Wflash2ForSCCMParameter'.

PS C:\WINDOWS\system32> Get-LSUpdate | Where-Object { $.Installer.Unattended -and $.Title -notlike "Intel Graphics Driver"} -Verbose Cannot find an overload for "Add" and the argument count: "1". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:217 char:13

Cannot find an overload for "Add" and the argument count: "1". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:221 char:21

Cannot find an overload for "Add" and the argument count: "1". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:221 char:21

Cannot create object of type "LenovoPackage". Cannot convert the "System.Collections.Generic.List1[PackageFilePointer]" value of type "System.Collections.Generic.List1[[PackageFilePointer, ⧹C։⧹Program Files⧹WindowsPowerShell⧹Modules⧹LSUClient⧹1.5.0⧹LSUClient.psm1, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]" to type "PackageFilePointer". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:297 char:102

Cannot find an overload for "Add" and the argument count: "1". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:217 char:13

Cannot find an overload for "Add" and the argument count: "1". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:221 char:21

Cannot find an overload for "Add" and the argument count: "1". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:221 char:21

Cannot find an overload for "Add" and the argument count: "1". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:221 char:21

Cannot find an overload for "Add" and the argument count: "1". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:221 char:21

WARNING: The command or file '%PACKAGEPATH%\usbcdkfw3704_1_version.exe /HWID=3060 /APPNAME=usbcdkfw3704_1_detect' could not be found from 'C:\Users\DoughertyP\AppData\Local\Temp\howuc32z.i01\ w5foljtq.5l4' and was not run Cannot create object of type "LenovoPackage". Cannot convert the "System.Collections.Generic.List1[PackageFilePointer]" value of type "System.Collections.Generic.List1[[PackageFilePointer, ⧹C։⧹Program Files⧹WindowsPowerShell⧹Modules⧹LSUClient⧹1.5.0⧹LSUClient.psm1, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]" to type "PackageFilePointer". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:297 char:102

Cannot find an overload for "Add" and the argument count: "1". At C:\Temp\developermodule12-13\LSUClient-develop\public\Get-LSUpdate.ps1:217 char:13

swoonhusker1 commented 1 year ago

I don't know why I'm getting so many errors when trying to do get-lsuupdate.

jantari commented 1 year ago

That is a long-standing issue in PowerShell but you should just be able to open a new PowerShell window and import the develop module right away (it's important to do it before importing or using the regular version or you'll get the errors above)

swoonhusker1 commented 1 year ago

Thank you! That looks like it worked and the Lenovo Battery Firmware Update Utility is no longer returned-

``` PS C:\WINDOWS\system32> Get-LSUpdate -Verbose VERBOSE: Lenovo Model is: 20Y0 VERBOSE: Created temporary scratch directory: C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i VERBOSE: Looking for packages in repository 'https://download.lenovo.com/catalog' (Type: HTTP) VERBOSE: Getting packages from the model xml file https://download.lenovo.com/catalog/20Y0_Win10.xml VERBOSE: A total of 53 driver packages are available for this computer model. VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/u3aud04w_w10_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/u3aud04w_w10_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\vh5m3r2l.cal\u3aud04w_w10_2_.xml' VERBOSE: Detecting install status of package: u3aud04w_w10 (Lenovo Audio Driver for Docks - 10 [64]) VERBOSE: Parsing dependencies for package: u3aud04w_w10 (Lenovo Audio Driver for Docks - 10 [64]) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/usbcdkfw3704_1_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcdkfw3704_1_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\aa032e1o.ow0\usbcdkfw3704_1_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcdkfw3704_1_detect.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\aa032e1o.ow0\usbcdkfw3704_1_detect.exe' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcdkfw3704_1_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\aa032e1o.ow0\usbcdkfw3704_1_version.exe' VERBOSE: Package usbcdkfw3704_1 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: usbcdkfw3704_1 (ThinkPad USB-C Dock FW Package - 7 [64]/10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/ar_tbtdockfw10_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/ar_tbtdockfw10_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\jidcuqsr.gyp\ar_tbtdockfw10_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/ar_tbtdockfw10_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\jidcuqsr.gyp\ar_tbtdockfw10_version.exe' VERBOSE: Package ar_tbtdockfw10 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: ar_tbtdockfw10 (ThinkPad TBT3 Dock Firmware Update Tool - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/dislink1027042_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/dislink1027042_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\uyylybal.wca\dislink1027042_2_.xml' VERBOSE: Detecting install status of package: dislink1027042 (Generic DisplayLink Driver for USB Docks and Adapters - 10 (1607 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: dislink1027042 (Generic DisplayLink Driver for USB Docks and Adapters - 10 (1607 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/u3etn09w_w10_x86_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/u3etn09w_w10_x86_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\qnxhia1h.q1d\u3etn09w_w10_x86_2_.xml' VERBOSE: Detecting install status of package: u3etn09w_w10_x86 (Lenovo USB3.0 LAN Driver for Docks and Adapters - 10 [64]) VERBOSE: Parsing dependencies for package: u3etn09w_w10_x86 (Lenovo USB3.0 LAN Driver for Docks and Adapters - 10 [64]) VERBOSE: Parsing severity override for package: u3etn09w_w10_x86 (Lenovo USB3.0 LAN Driver for Docks and Adapters - 10 [64]) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n3ady18w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n3ady18w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\zmemizc0.vvf\n3ady18w_2_.xml' VERBOSE: Detecting install status of package: n3ady18w (Lenovo Intelligent Thermal Solution Driver - 10 (1607 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n3ady18w (Lenovo Intelligent Thermal Solution Driver - 10 (1607 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/fhybd1035_1_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/fhybd1035_1_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\5w2iyobg.z13\fhybd1035_1_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/fhybd1035_3_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\5w2iyobg.z13\fhybd1035_3_version.exe' VERBOSE: Package fhybd1035_1 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: fhybd1035_1 (ThinkPad Hybrid USB-C with USB-A Dock Firmware - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/tbt3wsdkfw3181_tvsu_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/tbt3wsdkfw3181_tvsu_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\kwy0lrk3.ajz\tbt3wsdkfw3181_tvsu_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/tbt3wsdkfw3181_tvsu_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\kwy0lrk3.ajz\tbt3wsdkfw3181_tvsu_vers ion.exe' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/trdock_verchk.ini' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\kwy0lrk3.ajz\trdock_verchk.ini' VERBOSE: Package tbt3wsdkfw3181_tvsu doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: tbt3wsdkfw3181_tvsu (ThinkPad Thunderbolt 3 dock Gen2 / Workstation dock Firmware Update Tool - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/fwnva56_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/fwnva56_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\si4hf4jd.jis\fwnva56_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/fwwinsd.lst' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\si4hf4jd.jis\fwwinsd.lst' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/profile_fwnva56.pro' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\si4hf4jd.jis\profile_fwnva56.pro' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/fwchksd.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\si4hf4jd.jis\fwchksd.exe' VERBOSE: Package fwnva56 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: fwnva56 (Lenovo NVMe Solid State Drive Firmware Update Utility - 10/11) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/dislink1012875_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/dislink1012875_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\21hkzrdf.amh\dislink1012875_2_.xml' VERBOSE: Detecting install status of package: dislink1012875 (Generic DisplayLink Driver for ThinkPad USB 3.0 Ultra/Pro/Basic Dock - 10 (1607 or Later)) VERBOSE: Parsing dependencies for package: dislink1012875 (Generic DisplayLink Driver for ThinkPad USB 3.0 Ultra/Pro/Basic Dock - 10 (1607 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32hd04w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32hd04w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\jo53lf2i.2eg\n32hd04w_2_.xml' VERBOSE: Detecting install status of package: n32hd04w (Intel Dynamic Tuning Technology Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Device 'Intel(R) Dynamic Tuning Processor Participant' may currently be using a generic or inbox driver VERBOSE: Parsing dependencies for package: n32hd04w (Intel Dynamic Tuning Technology Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Parsing severity override for package: n32hd04w (Intel Dynamic Tuning Technology Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32li04w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32li04w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\egnsmse0.b4y\n32li04w_2_.xml' VERBOSE: Detecting install status of package: n32li04w (Intel Serial IO Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Parsing dependencies for package: n32li04w (Intel Serial IO Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32ic03w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32ic03w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\bsyydunn.afh\n32ic03w_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/inboxdrivercheck.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\bsyydunn.afh\inboxdrivercheck.exe' VERBOSE: Detecting install status of package: n32ic03w (Intel Chipset Device Software - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Device 'Intel(R) PCI Express Root Port #1 - A0B8' may currently be using a generic or inbox driver VERBOSE: Device 'Intel(R) SPI (flash) Controller - A0A4' may currently be using a generic or inbox driver VERBOSE: Device 'Intel(R) LPC Controller/eSPI Controller (U Premium) - A082' may currently be using a generic or inbox driver VERBOSE: Device 'Intel(R) SMBus - A0A3' may currently be using a generic or inbox driver VERBOSE: Device 'Intel(R) PEG60 - 9A09' may currently be using a generic or inbox driver VERBOSE: Device 'Intel(R) Host Bridge/DRAM Registers - 9A14' may currently be using a generic or inbox driver VERBOSE: Device 'Intel(R) TypeC PCIE - 9A25' may currently be using a generic or inbox driver VERBOSE: Device 'Intel(R) TypeC PCIE - 9A27' may currently be using a generic or inbox driver VERBOSE: Parsing dependencies for package: n32ic03w (Intel Chipset Device Software - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Device 'Intel(R) PCI Express Root Port #1 - A0B8' may currently be using a generic or inbox driver VERBOSE: Device 'Intel(R) SPI (flash) Controller - A0A4' may currently be using a generic or inbox driver VERBOSE: Device 'Intel(R) LPC Controller/eSPI Controller (U Premium) - A082' may currently be using a generic or inbox driver VERBOSE: Device 'Intel(R) SMBus - A0A3' may currently be using a generic or inbox driver VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n2tta15w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n2tta15w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\lg5sdtxg.qsv\n2tta15w_2_.xml' VERBOSE: Detecting install status of package: n2tta15w (Intel Thunderbolt Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n2tta15w (Intel Thunderbolt Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: n2tta15w (Intel Thunderbolt Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32sh04w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32sh04w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\0ldtenfh.cem\n32sh04w_2_.xml' VERBOSE: Detecting install status of package: n32sh04w (Intel Integrated Sensor Solution Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Device 'Intel(R) Integrated Sensor Solution' may currently be using a generic or inbox driver VERBOSE: Parsing dependencies for package: n32sh04w (Intel Integrated Sensor Solution Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32hm03w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32hm03w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\n3qz2kcz.hmp\n32hm03w_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32hm03w_version_table.config' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\n3qz2kcz.hmp\n32hm03w_version_table.con fig' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/wufudetect.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\n3qz2kcz.hmp\wufudetect.exe' VERBOSE: Package n32hm03w doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: n32hm03w (Integrated Hybrid Camera Firmware - 10 (1709 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32ww11w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32ww11w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\htznk2om.y1h\n32ww11w_2_.xml' VERBOSE: Detecting install status of package: n32ww11w (Intel AX201 Bluetooth Driver - 10 (1809 or later)/11 (21H2 or later)) VERBOSE: Parsing dependencies for package: n32ww11w (Intel AX201 Bluetooth Driver - 10 (1809 or later)/11 (21H2 or later)) VERBOSE: Parsing severity override for package: n32ww11w (Intel AX201 Bluetooth Driver - 10 (1809 or later)/11 (21H2 or later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32gw09w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32gw09w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\eomd0drv.ta5\n32gw09w_2_.xml' VERBOSE: Detecting install status of package: n32gw09w (Wintab Driver - 10 (1809 or later)/11 (21H2 or later)) VERBOSE: Parsing dependencies for package: n32gw09w (Wintab Driver - 10 (1809 or later)/11 (21H2 or later)) VERBOSE: Parsing severity override for package: n32gw09w (Wintab Driver - 10 (1809 or later)/11 (21H2 or later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32jt05w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32jt05w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\jfpabiam.mwo\n32jt05w_2_.xml' VERBOSE: Detecting install status of package: n32jt05w (Intel(R) TXT Authenticated Code Module - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Parsing dependencies for package: n32jt05w (Intel(R) TXT Authenticated Code Module - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32pg02w_v2_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32pg02w_v2_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\vjqi32w2.rqh\n32pg02w_v2_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32pg02w_v2_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\vjqi32w2.rqh\n32pg02w_v2_version.exe' VERBOSE: Package n32pg02w_v2 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: n32pg02w_v2 (PMIC Firmware Update for BOE 14inch WUXG LCD - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32ef04w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32ef04w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\qhzzf512.r4z\n32ef04w_2_.xml' VERBOSE: Detecting install status of package: n32ef04w (Intel HID Event Filter Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n32ef04w (Intel HID Event Filter Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32jg06w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32jg06w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\ozejdaty.jvh\n32jg06w_2_.xml' VERBOSE: Detecting install status of package: n32jg06w (Intel(R) GNA Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Device 'Intel(R) GNA Scoring Accelerator module' may currently be using a generic or inbox driver VERBOSE: Parsing dependencies for package: n32jg06w (Intel(R) GNA Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32tt08w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32tt08w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\b5l11ne2.j2m\n32tt08w_2_.xml' VERBOSE: Detecting install status of package: n32tt08w (Intel Thunderbolt Retimer Firmware - 10 (20H2 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n32tt08w (Intel Thunderbolt Retimer Firmware - 10 (20H2 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/pcieeth03w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/pcieeth03w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\210l4vqz.aup\pcieeth03w_2_.xml' VERBOSE: Detecting install status of package: pcieeth03w (ThinkPad Thunderbolt 4 Dock Driver - 10 (1507 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: pcieeth03w (ThinkPad Thunderbolt 4 Dock Driver - 10 (1507 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/nz7wn07w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/nz7wn07w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\w3ybdyvm.whx\nz7wn07w_2_.xml' VERBOSE: Detecting install status of package: nz7wn07w (Qualcomm Snapdragon X55 5G Wireless WAN Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: nz7wn07w (Qualcomm Snapdragon X55 5G Wireless WAN Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: nz7wn07w (Qualcomm Snapdragon X55 5G Wireless WAN Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32gf16w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32gf16w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\wulv52l4.4x4\n32gf16w_2_.xml' VERBOSE: Detecting install status of package: n32gf16w (Synaptics Fingerprint Reader Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n32gf16w (Synaptics Fingerprint Reader Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: n32gf16w (Synaptics Fingerprint Reader Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32ra11w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32ra11w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\pug0w5ce.04n\n32ra11w_2_.xml' VERBOSE: Detecting install status of package: n32ra11w (Intel Management Engine Software - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Device 'Intel(R) Management Engine Interface #1' may currently be using a generic or inbox driver VERBOSE: Parsing dependencies for package: n32ra11w (Intel Management Engine Software - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: n32ra11w (Intel Management Engine Software - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Device 'Intel(R) Management Engine Interface #1' may currently be using a generic or inbox driver VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/usbcsmdkfw3142_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcsmdkfw3142_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\kh2jakj1.obe\usbcsmdkfw3142_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcsmdkfw3142_sfx.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\kh2jakj1.obe\usbcsmdkfw3142_sfx.exe' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcsmdkfw3142_check.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\kh2jakj1.obe\usbcsmdkfw3142_check.exe' VERBOSE: Package usbcsmdkfw3142 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: usbcsmdkfw3142 (ThinkPad Universal USB-C Smart Dock FW Package - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32g208w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32g208w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\i0j4ygpc.jn4\n32g208w_2_.xml' VERBOSE: Detecting install status of package: n32g208w (ELAN TrackPoint Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Parsing dependencies for package: n32g208w (ELAN TrackPoint Driver - 10 (1903 or later)/11 (21H2 or later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/r18vu39w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/r18vu39w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\lxbsaert.ojr\r18vu39w_2_.xml' VERBOSE: Detecting install status of package: r18vu39w (Hotkey Features Integration - 10 (1607 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: r18vu39w (Hotkey Features Integration - 10 (1607 or Later)/11 (21H2 or Later)) VERBOSE: Unsupported dependency encountered: _Coreq VERBOSE: Unsupported dependency encountered: _Coreq VERBOSE: Parsing severity override for package: r18vu39w (Hotkey Features Integration - 10 (1607 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32cm06w_lux0bf109n3_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32cm06w_lux0bf109n3_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\gu1yi1hy.jjq\n32cm06w_lux0bf109n3_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32cm06w_0bf109n3_spcfwversions.config' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\gu1yi1hy.jjq\n32cm06w_0bf109n3 _spcfwversions.config' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32cm06w_0bf109n3_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\gu1yi1hy.jjq\n32cm06w_0bf109n3_version. exe' VERBOSE: Package n32cm06w_lux0bf109n3 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: n32cm06w_lux0bf109n3 (Integrated Camera Firmware for LuxVisions/0BF109N3 - 10(1709 or Later) / 11(21H2 or later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32cm06w_avc79c3n1_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32cm06w_avc79c3n1_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\502u1fwl.q4p\n32cm06w_avc79c3n1_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32cm06w_79c3n1_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\502u1fwl.q4p\n32cm06w_79c3n1_version.exe' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32cm06w_79c3n1_sxfwversions.config' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\502u1fwl.q4p\n32cm06w_79c3n1_sxfw versions.config' VERBOSE: Package n32cm06w_avc79c3n1 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: n32cm06w_avc79c3n1 (Integrated Camera Firmware for AVC/79C3N1 - 10 (1709 or Later) / 11 (21H2 or later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32cm06w_chickfkh31_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32cm06w_chickfkh31_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\baccfhv4.kow\n32cm06w_chickfkh31_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32cm06w_ckfkh31_rtkfwversions.config' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\baccfhv4.kow\n32cm06w_ckfkh31_r tkfwversions.config' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32cm06w_ckfkh31_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\baccfhv4.kow\n32cm06w_ckfkh31_version.ex e' VERBOSE: Package n32cm06w_chickfkh31 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: n32cm06w_chickfkh31 (Integrated Camera Firmware for Chicony/CKFKH31 - 10(1709 or Later) / 11(21H2 or later)) ID : n32cm06w_chickfkh31 Title : Integrated Camera Firmware for Chicony/CKFKH31 - 10(1709 or Later) / 11(21H2 or later) Type : Firmware Category : Camera and Card Reader Version : 0.0.0.0 Severity : Critical ReleaseDate : 10/19/2022 12:00:00 AM RebootType : 1 Vendor : Lenovo Size : 4994039 URL : https://download.lenovo.com/pccbbs/mobiles/n32cm06w_chickfkh31_2_.xml Installer : PackageInstallInfo IsApplicable : True IsInstalled : False VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n3ald35w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n3ald35w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\3o3zbg5h.sme\n3ald35w_2_.xml' VERBOSE: Detecting install status of package: n3ald35w (Lenovo View Driver - 10 (20H2 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n3ald35w (Lenovo View Driver - 10 (20H2 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: n3ald35w (Lenovo View Driver - 10 (20H2 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/usbcg2dkfw1118_2_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcg2dkfw1118_2_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\k0h1qqhh.4az\usbcg2dkfw1118_2_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcg2dkfw1118_2_versionsfx.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\k0h1qqhh.4az\usbcg2dkfw1118_2_version sfx.exe' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcg2dkfw1118_2_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\k0h1qqhh.4az\usbcg2dkfw1118_2_version.ex e' VERBOSE: Package usbcg2dkfw1118_2 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: usbcg2dkfw1118_2 (ThinkPad USB-C Dock Gen2 FW Package - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32uj19w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32uj19w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\r145cq25.bj1\n32uj19w_2_.xml' VERBOSE: Detecting install status of package: n32uj19w (ThinkPad BIOS Update - 10/11) VERBOSE: Parsing dependencies for package: n32uj19w (ThinkPad BIOS Update - 10/11) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32we13w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32we13w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\2glzh0ud.q5m\n32we13w_2_.xml' VERBOSE: Detecting install status of package: n32we13w (Intel AX201 Wireless LAN Driver - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n32we13w (Intel AX201 Wireless LAN Driver - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: n32we13w (Intel AX201 Wireless LAN Driver - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32cd23w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32cd23w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\xzljc5od.cpd\n32cd23w_2_.xml' VERBOSE: Detecting install status of package: n32cd23w (Integrated Camera Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n32cd23w (Integrated Camera Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n2toi39w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n2toi39w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\m2koom0b.x5d\n2toi39w_2_.xml' VERBOSE: Detecting install status of package: n2toi39w (ThinkPad Monitor INF File - 10 (1909 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n2toi39w (ThinkPad Monitor INF File - 10 (1909 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: n2toi39w (ThinkPad Monitor INF File - 10 (1909 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n2tbr05w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n2tbr05w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\gahg0ejr.lzt\n2tbr05w_2_.xml' VERBOSE: Detecting install status of package: n2tbr05w (Lenovo Battery Firmware Update Utility - 10 (1709 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n2tbr05w (Lenovo Battery Firmware Update Utility - 10 (1709 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/tbt4dkkp2fw1005_2_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/tbt4dkkp2fw1005_2_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\nj3zfvhj.ok4\tbt4dkkp2fw1005_2_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/tbt4dkkp2fw1005_2_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\nj3zfvhj.ok4\tbt4dkkp2fw1005_2_version. exe' VERBOSE: Package tbt4dkkp2fw1005_2 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: tbt4dkkp2fw1005_2 (ThinkPad Thunderbolt 4 Smart Dock Firmware Update Tool - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/tbt4dkfw1013_1_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/tbt4dkfw1013_1_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\tihbbleq.1cs\tbt4dkfw1013_1_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/tbt4dkfw1013_1_version.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\tihbbleq.1cs\tbt4dkfw1013_1_version.exe' VERBOSE: Package tbt4dkfw1013_1 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: tbt4dkfw1013_1 (ThinkPad Thunderbolt 4 Dock Firmware Update Tool - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32rg26w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32rg26w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\gd4rb0ej.jb2\n32rg26w_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/meinfowin64_tgl.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\gd4rb0ej.jb2\meinfowin64_tgl.exe' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/fwdetect_v63.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\gd4rb0ej.jb2\fwdetect_v63.exe' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/fwdetect_config.ini' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\gd4rb0ej.jb2\fwdetect_config.ini' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/csme-version-detection-tool-console.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\gd4rb0ej.jb2\csme-version-det ection-tool-console.exe' VERBOSE: Detecting install status of package: n32rg26w (Intel Management Engine Firmware - 10 (1803 or Later)/11 (21H2 or later)) VERBOSE: Parsing dependencies for package: n32rg26w (Intel Management Engine Firmware - 10 (1803 or Later)/11 (21H2 or later)) VERBOSE: Device 'Intel(R) Management Engine Interface #1' may currently be using a generic or inbox driver VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/usbcundkfw3080_2_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcundkfw3080_2_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\i0dfne3b.hf2\usbcundkfw3080_2_2_.xml' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcundkfw3080_2_check.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\i0dfne3b.hf2\usbcundkfw3080_2_check.exe' VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/usbcundkfw3080_2_sfx.exe' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\i0dfne3b.hf2\usbcundkfw3080_2_sfx.exe' VERBOSE: Package usbcundkfw3080_2 doesn't have a DetectInstall section VERBOSE: Parsing dependencies for package: usbcundkfw3080_2 (ThinkPad Universal USB-C Dock FW Package - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32wc06w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32wc06w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\xes4qegd.a1h\n32wc06w_2_.xml' VERBOSE: Detecting install status of package: n32wc06w (NXP NFC Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n32wc06w (NXP NFC Driver - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n1fup99w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n1fup99w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\01goe0ud.jaq\n1fup99w_2_.xml' VERBOSE: Detecting install status of package: n1fup99w (Lenovo Power and Battery Driver - 10 (1703 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n1fup99w (Lenovo Power and Battery Driver - 10 (1703 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n3aku13w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n3aku13w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\b5tf2rim.yzs\n3aku13w_2_.xml' VERBOSE: Detecting install status of package: n3aku13w (Lenovo Power Management Driver - 10 (1607 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n3aku13w (Lenovo Power Management Driver - 10 (1607 or Later)/11 (21H2 or Later)) VERBOSE: Unsupported dependency encountered: _Coreq VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32a128w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32a128w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\0dblgcum.zyq\n32a128w_2_.xml' VERBOSE: Detecting install status of package: n32a128w (Realtek Audio Driver - 10 (1909 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n32a128w (Realtek Audio Driver - 10 (1909 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: n32a128w (Realtek Audio Driver - 10 (1909 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n32wz13w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n32wz13w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\kuq3foai.pl3\n32wz13w_2_.xml' VERBOSE: Detecting install status of package: n32wz13w (Lenovo Dynamic Power Reduction Utility - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n32wz13w (Lenovo Dynamic Power Reduction Utility - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Device 'Quectel PCI Express' may currently be using a generic or inbox driver VERBOSE: Parsing severity override for package: n32wz13w (Lenovo Dynamic Power Reduction Utility - 10 (1903 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n3lst06w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n3lst06w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\hnb34vcd.bcn\n3lst06w_2_.xml' VERBOSE: Detecting install status of package: n3lst06w (Lenovo Intelligent Sensing Driver - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n3lst06w (Lenovo Intelligent Sensing Driver - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: n3lst06w (Lenovo Intelligent Sensing Driver - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n2tdr65w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n2tdr65w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\2y0icjzg.rvn\n2tdr65w_2_.xml' VERBOSE: Detecting install status of package: n2tdr65w (Intel Graphics Driver - 10 (1709 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n2tdr65w (Intel Graphics Driver - 10 (1709 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: n2tdr65w (Intel Graphics Driver - 10 (1709 or Later)/11 (21H2 or Later)) VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/nz7wj07w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/nz7wj07w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\qntw4rxu.cjs\nz7wj07w_2_.xml' VERBOSE: Detecting install status of package: nz7wj07w (Quectel EM120R-GL Wireless WAN Driver - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Device 'Quectel PCI Express' may currently be using a generic or inbox driver VERBOSE: Device 'Mobile Broadband Firmware Device' may currently be using a generic or inbox driver VERBOSE: Parsing dependencies for package: nz7wj07w (Quectel EM120R-GL Wireless WAN Driver - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Parsing severity override for package: nz7wj07w (Quectel EM120R-GL Wireless WAN Driver - 10 (1809 or Later)/11 (21H2 or Later)) VERBOSE: Device 'Quectel PCI Express' may currently be using a generic or inbox driver ID : nz7wj07w Title : Quectel EM120R-GL Wireless WAN Driver - 10 (1809 or Later)/11 (21H2 or Later) Type : Driver Category : Networking Wireless WAN Version : 1.0.0.33 Severity : Recommended ReleaseDate : 12/08/2022 12:00:00 AM RebootType : 3 Vendor : Lenovo Size : 290476181 URL : https://download.lenovo.com/pccbbs/mobiles/nz7wj07w_2_.xml Installer : PackageInstallInfo IsApplicable : True IsInstalled : False VERBOSE: Processing package https://download.lenovo.com/pccbbs/mobiles/n25by24w_2_.xml VERBOSE: Downloading 'https://download.lenovo.com/pccbbs/mobiles/n25by24w_2_.xml' to 'C:\Users\DoughertyP\AppData\Local\Temp\w3gwjjy5.c1i\cai4n5pr.e3e\n25by24w_2_.xml' VERBOSE: Detecting install status of package: n25by24w (Lenovo Smart Standby Driver - 10 (1703 or Later)/11 (21H2 or Later)) VERBOSE: Parsing dependencies for package: n25by24w (Lenovo Smart Standby Driver - 10 (1703 or Later)/11 (21H2 or Later)) VERBOSE: Cleaning up temporary scratch directory ```
swoonhusker1 commented 1 year ago

Looking forward to this fix int he next release! Is there a way I can see when the next Lsuclient release will be?

swoonhusker1 commented 1 year ago

Just checking in to find out how I can see when updates to the client are scheduled to be released? I'm planning to do some pilot testing and eventually roll this out to laptops in our company.

jantari commented 1 year ago

There is no regular release schedule or anything like that. When bugfixes or features are done I test them for a while and release when I'm pretty sure the changes won't break anything. Because the module has so many downloads now and because of the wide wide variety of hardware and driver packages a change can often affect the results in a different environment too.

I take some time to compare 1.5.0 vs develop results on as many different models as I have access to and look for regressions. If I don't find any then 1.5.1 should be out next week.

jantari commented 1 year ago

Published Version 1.5.1 which includes this fix

swoonhusker1 commented 1 year ago

Thank you very much jantari!!!