Hello, When we try to enable TPM in our task sequence on the 9020, it does not work. However, it will work if we open a command prompt in WinPE and run the highlighted commands below. The script below is what we are running in the TS, but won't seem to work. Any ideas?
----------------- @ECHO OFF CLS :paths SET loc=%~dp0 :HAPI REM Load the Dell HAPI driver... "%loc%HAPIx86\HAPIInstall.bat" :check REM Check to see if TPM is already activated. Assumes HAPI already installed... "%loc%cctk.exe" --tpmactivation | find /i "tpmactivation=activate" IF %errorlevel%==0 (EXIT 0) ELSE (ECHO Will try to activate TPM...) :activate REM Run the cctk standalone executable that configures the BIOS and reboot... "%loc%ConfigBios.exe" EXIT 3010 :end ----------------------- Best Regards, Mike Murray Desktop Management Coordinator - IT Support Services California State University, Chico 530.898.4357 [email protected]<mailto:[email protected]>
