Windows error 0x00000085, 133

Detailed Error Information

IS_JOIN_TARGET[1]

MessageA JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
Declared inwinerror.h

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

SETUP_FAILURE[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x85: SETUP_FAILURE.

HRESULT analysis[3]

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[3][1]
DescriptionThe default facility code.[3][1]
Error Code133 (0x0085)

Questions

2votes
2answers

DWARF - How to find the prologue end/epilogue start addresses of functions in a given binary?

I have an ARM binary of which I need to find exactly at which addresses its function's prologues end and the epilogues begin. In other words, I need the boundaries of the function bodies. For instance, if I have a function whose assembly is something like: 0x00000320 <+0>: push {r7, [...] read more
c
assembly
objdump
dwarf
readelf
2votes
0answers

Protobuf-net serializer used in Unity gives Invalid IL code IL_0035: call 0x06000001

Using Unity 5.0.1f1, protobuf-net r668. I've set up a protobuf serializer dll using Visual Studio 2013, set to framework "Unity .Net 3.5 Subset Base Class Libraries" (I've also tried .Net 3.5 with same result). I have 4 parent data types to serialize: two rather simple ones, and two a tad [...] read more
c#
unity3d
protobuf-net
1vote
1answer

How to run fat binaries on iOS 5.1 / iPhone 4

I am developing an application for jailbroken iOS devices. I'd like to target booth iPhone 3G (iOS 4.3.x) and iPhone 4/4S (iOS 5.x) I successfully generated fat binaries with Xcode 4.3.x marsu:LatestBuild sst$ otool -h myproduct.armv6 myproduct.armv6 (architecture armv7): Mach header magic cputype cpusubtype caps filetype ncmds sizeofcmds flags 0xfeedface [...] read more
objective-c
ios
jailbreak
armv7
armv6
0votes
0answers

Can't play certain mp4 files with Swift and UIKit

I am struggling to find answers, for a seemingly fairly straightforward problem, and wondering if anyone could provide insights. The code below is a very basic code for playing an mp4 file when hitting a button. @IBAction func playVideo(_ sender: UIButton) { let bundleUrls = Bundle.main.urls(forResourcesWithExtension: "mp4", subdirectory: nil)! let [...] read more
swift
avplayer
mp4
0votes
1answer

Reduce flickering when using SetWindowPos to change the left edge of a window

Update 1: Here's the simplified version: So I have a special fixed-size child window that I want to make it stay at the right side of the resizable main window. When users resize the main window by dragging the left/right edge of it, WM_WINDOWPOSCHANGED is sent, the child window will [...] read more
winapi
resize
flicker

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0