Coder Social home page Coder Social logo

Comments (20)

FlannelNZ avatar FlannelNZ commented on August 11, 2024 2

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.

from driverautomationtool.

FlannelNZ avatar FlannelNZ commented on August 11, 2024 1

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)

from driverautomationtool.

Acabar avatar Acabar commented on August 11, 2024 1

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

from driverautomationtool.

Acabar avatar Acabar commented on August 11, 2024 1

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.

from driverautomationtool.

FlannelNZ avatar FlannelNZ commented on August 11, 2024 1

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.

from driverautomationtool.

smaragos64 avatar smaragos64 commented on August 11, 2024 1

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"

from driverautomationtool.

FlannelNZ avatar FlannelNZ commented on August 11, 2024 1

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.

from driverautomationtool.

smaragos64 avatar smaragos64 commented on August 11, 2024 1

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

from driverautomationtool.

FlannelNZ avatar FlannelNZ commented on August 11, 2024

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

from driverautomationtool.

Azzaro78 avatar Azzaro78 commented on August 11, 2024

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.

from driverautomationtool.

WilhelmMetzger avatar WilhelmMetzger commented on August 11, 2024

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?

from driverautomationtool.

browndervilleb avatar browndervilleb commented on August 11, 2024

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

from driverautomationtool.

Acabar avatar Acabar commented on August 11, 2024

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.

from driverautomationtool.

smaragos64 avatar smaragos64 commented on August 11, 2024

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.

from driverautomationtool.

Acabar avatar Acabar commented on August 11, 2024

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.

from driverautomationtool.

browndervilleb avatar browndervilleb commented on August 11, 2024

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">

from driverautomationtool.

kirderf85 avatar kirderf85 commented on August 11, 2024

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:

  • Using SKU : 0646
  • Dell System Model ID is : 0646;0CB9;0CBC

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.

from driverautomationtool.

Aron-Love avatar Aron-Love commented on August 11, 2024

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?

from driverautomationtool.

kirderf85 avatar kirderf85 commented on August 11, 2024

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!

from driverautomationtool.

Chathushka34 avatar Chathushka34 commented on August 11, 2024

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.

from driverautomationtool.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.