Windows error 0x00000663, 1635

Detailed Error Information

PATCH_PACKAGE_OPEN_FAILED[1]

MessageThis update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80070663.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code1635 (0x0663)

Questions

2votes
1answer

QEMU registers and eip are destroyed after moving 0x18 in ds

Im currently learning to build my own bootloader. I was able to setup a gdt and get into protected mode. But when i tried to move 0x18 (third segment in gdt) into ds most of my registers are destroyed and eip gets something random Code that causes error: (im already [...] read more
assembly
x86
qemu
bootloader
protected-mode
0votes
1answer

Direct Subprocess result to Tkinter.Listbox widget

I need to direct a subprocess that is essentially infinite to a tkinter text/listbox, the Popen output is added to a dictionary, processes and then should be inserted into the listbox however nothing is happening, I can't figure out where I have gone wrong? The tkinter GUI is created but [...] read more
python
tkinter
listbox
subprocess
stdout
0votes
1answer

Count time between messages CANBUS

I'm having trouble coming up with a viable time counter for my script. timeit.timeit() slows performance too much, time.clock constantly increase ( as gather as this is running off an ever increase clock time) and using the in-built timing method from the data stream is providing inconsistant results. Please see [...] read more
python
linux
time
timer
data-stream
0votes
4answers

Count items in dictionary

I need to count the the different IDENTIFIERS and print a number count for the them. The information comes from a data stream that looks like this: IDENTIFIER 7756753.940 receivetest: m s 0x0000069a 8 00 00 00 00 00 e4 8a 9a 7756754.409 receivetest: m s 0x00000663 8 2f 00 [...] read more
python
dictionary
counter
data-stream
can-bus
-1votes
1answer

Keeping Selected Listbox Item through re-write

I have a function that updates listbox entries by removing and re-inserting them with an updated counter, however difficulty arises when I try to maintain a highlighted item, as it has been removed there is nothing to highlight. My question is how can I get the program to remember what [...] read more
python
tkinter
listbox

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0