maurice-daly / DriverAutomationTool

Home of the Driver Automation Tool
https://www.msendpointmgr.com
BSD 2-Clause "Simplified" License
395 stars 120 forks source link

Dell 5450/5550 Issues #538

Open FlannelNZ opened 5 months ago

FlannelNZ commented 5 months ago

Crossposting, as its probably more relevant here.

The Automation Tool is bringing down the Old E5450/E5550 driver packs (A08/A09) rather than the new Latitude 5450/5550 A00 CAB's from Dell.

FlannelNZ commented 5 months ago

image Despite clicking the Latitude 5550, It actually brings down E5550 which is not the correct cab. Same story with the 5450.

Azzaro78 commented 5 months ago

Having near to the same issue. 5450 isn't even downloading the cab: 2024-04-16_11-40

Other driver packs work. So it does indeed looks like the script is confused between E5450 and 5450 and Windows 11.

WilhelmMetzger commented 5 months ago

We have the same problems on 5450/5550. Does anyone have a solution to this problem or a workaround? Have any of you reported this to Dell?

FlannelNZ commented 5 months ago

The workaround is to manually download the correct package and create a custom package for each model as per the Driver Automation Tool Documentation and then unselect those models in the make and model selection page.

Dell would probably be uninterested. And any change to the naming of their driver package would likely take an age. But it might be worth raising if someone has the ear of someone in their Enterprise team.

browndervilleb commented 5 months ago

Same Issue Here.. Took quite a while to figure this was the issue.

Acabar commented 4 months ago

Does anyone have the baseboards handy for these models? It won't let me create the custom package without them and we don't yet have the physical devices available.

FlannelNZ commented 4 months ago

I presume you are referring to the SKU. We have some already, here they are:

5450 (Models included;0CB2;0CB4) 5550 (Models included:0CB9;0CBC)

Acabar commented 4 months ago

I presume you are referring to the SKU. We have some already, here they are:

5450 (Models included;0CB2;0CB4) 5550 (Models included:0CB9;0CBC)

Thanks! There's also a baseboard number the tool asks for that can be pulled using the following powershell command on a device: (Get-CIMInstance -ClassName MS_SystemInformation -NameSpace root\WMI).BaseBoardProduct

Acabar commented 4 months ago

I presume you are referring to the SKU. We have some already, here they are:

5450 (Models included;0CB2;0CB4) 5550 (Models included:0CB9;0CBC)

I looked through previous drivers made by the tool, and the system SKU seems to be more accurate than when I used the baseboard that the tool asked for. We're going to test some images today to see if it works with the baseboard info or not.

FlannelNZ commented 4 months ago

yeah I believe Baseboard is more for other PC brands that don't fall under the included manufacturers. It confused me originally so I just went with using the SKU instead and that works just fine. Looking at the script, for Dell models its just straight up looking at SystemSKU not baseboard.

smaragos64 commented 4 months ago

This is an issue with the Dell XML. The driver package data for the Latitude E5450 is missing the E within SupportedSystems. If you review the DriverautomationTool.log you can see the incorrect additional Dell System Model ID

I was able to manually modify the DriverPackCatalog.xml to correct this mistake and the tool was able to download and build the Latitude 5450. I believe there are other models in a similarly broken state.

Acabar commented 4 months ago

This is an issue with the Dell XML. The driver package data for the Latitude E5450 is missing the E within SupportedSystems. If you review the DriverautomationTool.log you can see the incorrect additional Dell System Model ID

  • Dell System Model ID is : 0645;0CB2;0CB4 The Model ID of 0645 is for the Latitude E5450. With this incorrect data, multiple other parts of the tool break since it uses the first value in the list.

I was able to manually modify the DriverPackCatalog.xml to correct this mistake and the tool was able to download and build the Latitude 5450. I believe there are other models in a similarly broken state.

Awesome find! I had done some looking into the XML but wasn't sure 100% where to begin, but this makes perfect sense. It looks like you can also tell which is the old E- series by comparing the rstDate= parameter as well.

browndervilleb commented 4 months ago

This is an issue with the Dell XML. The driver package data for the Latitude E5450 is missing the E within SupportedSystems. If you review the DriverautomationTool.log you can see the incorrect additional Dell System Model ID

  • Dell System Model ID is : 0645;0CB2;0CB4 The Model ID of 0645 is for the Latitude E5450. With this incorrect data, multiple other parts of the tool break since it uses the first value in the list.

I was able to manually modify the DriverPackCatalog.xml to correct this mistake and the tool was able to download and build the Latitude 5450. I believe there are other models in a similarly broken state.

So you just need the "E" for each of the names that show up when I search for systemID="0645" ?

Before: <Model systemID="0645" name="Latitude 5450" rtsDate="2014-09-14T00:00:00" generation="X6"> 
After: <Model systemID="0645" name="Latitude E5450" rtsDate="2014-09-14T00:00:00" generation="X6">
smaragos64 commented 4 months ago

Yes, adding that should resolve the Latitude 5450. I believe it is there 2 times, once each for Windows 10 and Windows 11. You do need to keep an eye on the XML file as the tool may replace it on you.

Also appears to the same issue for the Latitude 5550 if you trying to build those models. systemID="0646"

FlannelNZ commented 4 months ago

Good spotting. I started looking through there, but it was a bit overwhelming. I have raised this via our Account Exec, hopefully he can put me on to the Enterprise CAB team.

kirderf85 commented 4 months ago

I did update the xml file as suggested above, but I still get the same issue. I notice that in the process log it says this for Latitude 5550:

Same experience with 5450. Any ideas why it is still using 0646 for Latitude 5550, after I corrected the lines in DriverPackCatalog.xml? I had to update three lines for each model.

smaragos64 commented 4 months ago

I was able to successfully build the Latitude 5550 with these steps

1) Delete any cab and xml files in the Driver Automation Tool\Temp directory 2) Launch the tool to download the latest versions 3) Modify the xml as mentioned 4) Close and relaunch the tool 5) Verify the xml file is still the modified version 6) Start the download

Aron-Love commented 4 months ago

FWIW, I brought this up during my school district's weekly Dell meeting. The tech on the call said the real fix is to use the System Model ID, which will always be different. But he will bring it up with a contact on the team that deals with the XML. Who knows when it will get updated, though?

kirderf85 commented 3 months ago

I was able to successfully build the Latitude 5550 with these steps

  1. Delete any cab and xml files in the Driver Automation Tool\Temp directory
  2. Launch the tool to download the latest versions
  3. Modify the xml as mentioned
  4. Close and relaunch the tool
  5. Verify the xml file is still the modified version
  6. Start the download

I just tested and can confirm that the steps above worked. Thanks!

Chathushka34 commented 3 months ago

Due to the DAT issue we pulled drivers manually and added to task sequence. But after imaging to Win 11 and run Dell command update, it completely disable NIC drivers. Does anybody facing this issue? I'm thinking Dell command update pulls old drivers for latitude 5550/5450 machines.