I moved to a much lighter solution for SCCM.
Each BIOS revision is kept in its own container package (that's what I call them anyway, a package with no assigned program, just used to hold content for use by something else). Its basically the same idea as an SCCM Toolkit package, or Settings package.
Creating the BIOS packages:
- Go out to Lenovo and download the BIOS for each model for which you want to perform an upgrade during imaging.
- Extract the BIOS packages into a structure on your Package content share similar to:
\\servername\imagecontent$\BIOSpackages\Lenovo\T450-V1.45
\\servername\imagecontent$\BIOSpackages\Lenovo\T440-V2.08
\\servername\imagecontent$\BIOSpackages\Lenovo\T430-V2.65 - Use the Administrator Console to create one Legacy type package from each of these folders
(using the example above you'll end up with 3 packages) - Distribute these packages
Task Sequence Changes:
- Someplace after the machine has booted into Windows for the first time place the steps to perform the BIOS upgrades. Be sure that the you place them after the Use Toolkit and Gather steps.
- Create a new TS Group for the BIOS Updates to nest under, it makes turning the BIOS updates off if needed easier and keeps the TS cleaner
- Under the BIOS Updates group create a Run Command Line step for Model to be upgraded
- The command line in each case will be "Winuptp.exe /S" this is the BIOS update installer for all Lenovo Laptop models and is contained in every BIOS update. The "/S" tells it to run quietly and automated with new GUI. It will also suppress rebooting.
- Add a condition on the step using a WMI query so this step will only run for the proper model
select * from win32_computersystemproduct where version = "ThinkPad T430" - Add a reference to the proper BIOS Package for the model being updated buy this step.
- I've found it easiest to create the step once the copy it for each model, updating the package reference and the name of the step to reflect the proper model
- It s a good idea to place a reboot computer step soon after the BIOS updates complete. Be sure to put Use Toolkit package and Gather steps immediately after the reboot.
BiosStub
No comments:
Post a Comment