Windows error 0x00000428, 1064

Detailed Error Information

EXCEPTION_IN_SERVICE[1]

MessageAn exception occurred in the service when handling the control request.
Declared inwinerror.h

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

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 Code1064 (0x0428)

Questions

3votes
2answers

Why might a Macbook Pro be freezing on resume from sleep?

My Macbook Pro (17" 2.2 Ghz Intel Core 2 Duo, OS X 10.4.11) often locks up when it resumes from sleep. I usually know I'm in trouble when the display brightness doesn't adjust right away. Then it runs for a few seconds until it stops responding again. The pointer works, [...] read more
macos
macbook
sleep
freeze
0votes
2answers

cuda -- out of memory (threads and blocks issue) --Address is out of bounds

I am using 63 registers/thread ,so (32768 is maximum) i can use about 520 threads.I am using now 512 threads in this example. (The parallelism is in the function "computeEvec" inside global computeEHfields function function.) The problems are: 1) The mem check error below. 2) When i use numPointsRp>2000 it [...] read more
cuda
pycuda
0votes
1answer

Write bytes from textbox to file from basestream with C#

Basically I need to convert text in a textbox from UTF-8 to base16 (I think that is what hex is in) and write it to a file. This but back words: //Setup byte reader. FileStream fs = new FileStream(EditOpen.FileName, FileMode.Open); BinaryReader br = new BinaryReader(fs); long length = fs.Length; //Read [...] read more
c#
utf-8
textbox
binarywriter

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