Last active
September 8, 2016 19:33
-
-
Save davegreen/ac642a9a5f4eab2b85a9e10bfbabe889 to your computer and use it in GitHub Desktop.
For use with HP machines for deploying UEFI/BIOS configurations.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PUSHD %~dp0 | |
SET _bcu=BiosConfigUtility.exe | |
SET config=%1 | |
IF /I "%PROCESSOR_ARCHITECTURE%" EQU "AMD64" ( | |
SET _bcu=BiosConfigUtility64.exe | |
) | |
"%_bcu%" /nspwdfile:"%~dp0BIOSPW.bin" /set:"%~dp0%config%" /l | |
IF %ERRORLEVEL% EQU 10 ( | |
"%_bcu%" /cspwdfile:"%~dp0BIOSPW.bin" /set:"%~dp0%config%" /l | |
) | |
POPD | |
EXIT /B 3010 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment