Bios Config
This is how i configure the bios of my computers
To configure the Dell bios, you will need a utility from Dell called CCTK. This can be downloaded from here, once its downloaded install it with defaults and then goto the folder.
C:\Program Files (x86)\Dell\Command Configure\X86_64
This folder contains the cli software that we will need to run during OSD to configure the bios settings that we need.

I make a packge, and copy the contents of this to the package folder. I also create a batch file with the following.
@echo off
Rem Enable Bios Password
cctk.exe --SetupPwd=BiosPassword
Rem WLAN Switch Settings
cctk.exe --WlanAutoSense=Enabled --valsetuppwd=BiosPassword
Rem Turn on TPM
cctk.exe --TpmSecurity=Enabled --valsetuppwd=BiosPassword
Rem Active TPM
cctk.exe --TpmActivation=Enabled --valsetuppwd=BiosPassword
Rem Enable Virtualization
cctk.exe --Virtualization=Enabled --ValSetupPwd=BiosPassword
Rem Enabled Direct I/O for Virtualization
cctk.exe --VtForDirectIo=Enabled --ValSetupPwd=BiosPassword
exit
These are the settings that i choose to configure. There are many many more in the documentation that you can configure if you wish.
The step that i run in the task sequence is very simple.

This is ran after the OS is on the disk, some people prefer to run this really high up in the task sequnce while the computer is still in Windows PE.
Last updated