我在我的公司当服务台。新的命令行和PowerShell。我有一个公司,管理大约100台笔记本电脑,我手动升级他们的BIOS。在手动升级期间,它会自动挂起BitLocker。通过使用以下命令,我通过戴尔文档找到了一种在PowerShell上进行此操作的静默方法:
Below is an example output from the Latitude E6520 BIOS executable “E6520A05.exe”.
General usage:
Typical Syntax: Filename.exe [/<option1>[=<value1>]] [/<option2>[=<value2>]]
Option - Description:
(none) - Display of graphical user interface for guided update.
/? or /h - Displays this Dell System BIOS Update usage information.
/s - Suppresses all graphical user interfaces of the BIOS System BIOS Update.
/l= - Define a specific path for the Dell System BIOS Update log file.
/f - Override a soft dependency error returned from the Dell System BIOS Update. NOTE: Requires /s option.
/r - Reboot the system to complete the update. NOTE: Requires /s option.
/p= - Provide the BIOS password (if needed) to perform the BIOS update.
Example(s):
Update the system silently: Filename.exe /s
Change from the default log location (example target path: C:\my path with spaces\log.txt)
Filename.exe /l=”C:\my path with spaces\log.txt”
Force update to continue (even on “soft” qualification errors): Filename.exe /s /f"在我的例子中,我的笔记本电脑是DELL.5530,并使用以下命令进行更新
.\Precision_5530_1.25.0.exe /noPause /s /f /l=C:\Temp\BiOS.log我的问题是,我们公司的政策已经启动了BitLocker,系统管理员建议上面的命令可以正常工作,但是在这样做之前可以找到一种方法来挂起BitLocker (这样我们就可以避免损坏超出保修期的笔记本电脑了),但也要确保在更新后打开。我到处找遍了,但找不到相关的信息。
对此的任何见解都是有帮助的。
谢谢。
发布于 2022-07-07 11:23:53
在powershell中:
Suspend-BitLocker -MountPoint "C:" -RebootCount 0或者在批处理文件中:
manage-bde -protectors -disable c:https://stackoverflow.com/questions/72891413
复制相似问题