Firmware password

UrosV

Bit poster
Hello, is it possible to configure firmware password using sccm mac management and if it is is there any manual how to configure it.
Best regards,
Uros
 
Hi. execute script - Parallels Management Tools
#! /usr/bin/expect -f
spawn sudo firmwarepasswd -setpasswd
expect {
"Enter new password:" {
send "your_password\r"
exp_continue
}
"Re-enter new password:" {
send "your_password\r"
exp_continue
}
}
 
Back
Top