首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >戴尔BiOS更新

戴尔BiOS更新
EN

Stack Overflow用户
提问于 2022-07-07 01:35:23
回答 1查看 216关注 0票数 0

我在我的公司当服务台。新的命令行和PowerShell。我有一个公司,管理大约100台笔记本电脑,我手动升级他们的BIOS。在手动升级期间,它会自动挂起BitLocker。通过使用以下命令,我通过戴尔文档找到了一种在PowerShell上进行此操作的静默方法:

代码语言:javascript
复制
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,并使用以下命令进行更新

代码语言:javascript
复制
.\Precision_5530_1.25.0.exe /noPause /s /f /l=C:\Temp\BiOS.log

我的问题是,我们公司的政策已经启动了BitLocker,系统管理员建议上面的命令可以正常工作,但是在这样做之前可以找到一种方法来挂起BitLocker (这样我们就可以避免损坏超出保修期的笔记本电脑了),但也要确保在更新后打开。我到处找遍了,但找不到相关的信息。

对此的任何见解都是有帮助的。

谢谢。

EN

回答 1

Stack Overflow用户

发布于 2022-07-07 11:23:53

在powershell中:

代码语言:javascript
复制
Suspend-BitLocker -MountPoint "C:" -RebootCount 0

或者在批处理文件中:

代码语言:javascript
复制
manage-bde -protectors -disable c:
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/72891413

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档