更新4041691导致系统启动时报错:INACCESSIBLE BOOT DEVICE

转载

https://blogs.technet.microsoft.com/ramazancan/2017/10/16/cumulative-update-for-october-inaccessible-boot-device/


Cumulative Update for October-INACCESSIBLE BOOT DEVICE

quick fix how delta update can be removed via DISM

The issue arises if the delta and the full cumulative update for October (KB4041691 https://support.microsoft.com/en-us/help/4041691) was installed same time. Those was released last week and if you configured your internal WSUS to automatically approve you will see this issue -> https://support.microsoft.com/en-us/help/4049094/windows-devices-may-fail-to-boot-after-installing-october-10-version-o

After installing this update you probably broke your machine with stop code: INACCESSIBLE BOOT DEVICE

更新4041691导致系统启动时报错:INACCESSIBLE BOOT DEVICE

let's calm down 更新4041691导致系统启动时报错:INACCESSIBLE BOOT DEVICE from my experience we could fix all instances with below procedure and do not attempt to run "automatic repair" in that case

Let's boot into 'Troubleshooting' and open our lovely good old command prompt

更新4041691导致系统启动时报错:INACCESSIBLE BOOT DEVICE  更新4041691导致系统启动时报错:INACCESSIBLE BOOT DEVICE

Microsoft Support advises to get rid of the SessionsPending reg key. Let's load the software registry hive:

reg load hklm\temp c:\windows\system32\config\software

【注意上面命令中的盘符C在实际应用中有可能不是C可以自己查找一下确认是哪个盘符】

Delete the SessionsPending registry key (if exists):

reg delete "HKLM\temp\Microsoft\Windows\CurrentVersion\Component Based Servicing\SessionsPending" /v Exclusive

更新4041691导致系统启动时报错:INACCESSIBLE BOOT DEVICE

UPDATE: We saw few cases where above reg delete failed, in that case open regedit UI and delete the Exclusive key in sessionspending manually

更新4041691导致系统启动时报错:INACCESSIBLE BOOT DEVICE

Unload the software registry hive:

reg unload HKLM\temp

now lets pullout with DISM.exe the list of installed packages

dism /image:C:\ /get-packages

【注意上面命令中的盘符C在实际应用中有可能不是C可以自己查找一下确认是哪个盘符】

更新4041691导致系统启动时报错:INACCESSIBLE BOOT DEVICE

Checkout the ones which are state "Install Pending" as one of those was causing the issues (highly like the last entries in your list)

before we can remove them we need to create a temporary directory first to where we can move the updates to

MKDIR C:\temp\packages

Now let's (re)move the "pending" package(s) with the DISM command

dism /image:c:\ /remove-package /packagename:PACKAGEIDENTITYNAME /scratchdir:c:\temp\packages

be focused on the output of the command and if it completes successfully

更新4041691导致系统启动时报错:INACCESSIBLE BOOT DEVICE

Reboot your VM and it will reboot again and you can run Windows update afterwards as the faulty update was already corrected

Official Microsoft KB:
https://support.microsoft.com/en-us/help/4049094/windows-devices-may-fail-to-boot-after-installing-october-10-version-o

DISM Operating System Package Servicing Command-Line Options
https://msdn.microsoft.com/en-us/library/hh825265.aspx 












本文转自careluck51CTO博客,原文链接:http://blog.51cto.com/brave8898/1977509,如需转载请自行联系原作者




上一篇:【限时福利】双十一第二波福利,还不赶紧查收?什么你还不知道?还不快点。


下一篇:java表单重复提交常用解决办法