getting error 0x800f0922 trying to install KB2961908 which may or may not be related - I have a ProcMon trace that I need to analyse.
Google could be the tool of choice for that one:
C.f.
Description of the update rollup of revoked noncompliant UEFI modules: May 13, 2014
http://support.microsoft.com/kb/2961908/en-us
Microsoft security advisory: Update to revoke noncompliant UEFI boot loader modules
http://support.microsoft.com/kb/2871690/en-us
(Google search for
0x800f0922 update site:microsoft.com
)
<quotes>
You receive a 0x800f0922 error when you try to install this security update
Cause
This error occurs because the installer for security update 2871690 incorrectly expects BitLocker to be installed.
</quotes>
They sound similar, with the later one now producing a previously undocumented error code, which without any more details I would have to guess was something of the nature of: "Oops. Something's wrong."
In fact, though, as I have mentioned before, the pattern of the code is documented
http://support.microsoft.com/kb/938205/en-us
<quote>
0xf0900 CBS_E_XML_PARSER_FAILURE unexpected internal XML parser error.
0xf0901 CBS_E_MANIFEST_VALIDATION_MULTIPLE_UPDATE_COMPONENT_ON_SAME_FAMILY_NOT_ALLOWED In a given package
</quote>
So a good guess IMO for a way to get more context about it would be to look in the CBS.log at the time that the update which reported the code was run. If you had ProcMon running at the time, then that much better because then, to repeat my suggested procedure,
you could infer the WriteFile which was responsible for the output of that CBS.log record and therefore have any other preceding ProcMon events as more context for that error event. In particular, to support the hypothesis that your 0x800F0922 was related
to the later (now diagnosed) one, I imagine that you would probably see a File access for a Bitlocker support file whose Result would be FILE NOT FOUND. (For example.) Etc.
HTH
Robert