Windows error 0x80000003, -2147483645

Detailed Error Information

E_INVALIDARG[1]

MessageOne or more arguments are invalid
Declared inwinerror.h

HRESULT analysis[2]

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

Questions

19votes
14answers

What would cause ANY .NET application to crash immediately... except a project I create and Debug inside Visual Studio?

My software recently got deployed to a customer who said that the application was crashing immediately after it started. After some initial debugging, the customer provided me remote access to one of the computers which was unable to run the application. I found that the crash wasn't specific to my [...] read more
.net
visual-studio-2008
crash-dumps
12votes
2answers

Converting a 32bit directx9 app to be large address aware

We are running into issues with an old closed-source game engine failing to compile shaders when memory nears 2GB. The issue is usually with D3DXCreateEffect. Usually it returns HResult "out of memory", sometimes d3dx9_25.dll prints random errors in a popup, or it just outright segfault. I believe the issue is [...] read more
c++
x86
direct3d
32-bit
directx-9
11votes
1answer

How to get rid of exception 80000003?

When I run my program (admittedly, it was built in debug mode), I get an error "External exception 80000003". According to Win32 Exception/Access Violation Errors it means 0x80000003 EXCEPTION_BREAKPOINT A breakpoint was encountered. However, there are no breakpoints set in the IDE and I am running it outside of the [...] read more
delphi
10votes
4answers

The service is not responding to the control function (error 2186)

I'm developing a service using .NET on Windows platforms. It had worked until yesterday... but today it doesn't want to start!!! It seems strange, and I feel I'm missing something... I've also tried to revert sources to the last working version, but nothing else happens: net start outputs: > The [...] read more
c#
windows
service
10votes
1answer

papi_avail: No events available

I want to get into PAPI. I have Version 5.3.2.0 on Debian GNU/Linux. papi_avail just tells me that no hardware events are available: $ papi_avail Available events and hardware information. -------------------------------------------------------------------------------- PAPI Version : 5.3.2.0 Vendor string and code : GenuineIntel (1) Model string and code : Intel(R) Core(TM) i3-5010U [...] read more
papi
8votes
3answers

WinDbg : Hunting exceptions that have caused a .net service to crash

Have been having issues with an x64 dotnet service crashing intermittently on an application server. The service can run for hours, days, or weeks with no issue, but then fall over with not much info. The service is run in a cluster (3 x service each server) across two servers [...] read more
c#
.net
debugging
.net-4.0
windbg
7votes
4answers

Firefox via GeckoDriver throws exception on .Quit() in Selenium 3.0.1

Context: Firefox 50.0.2 64bit, C#, Visual Studio 2015, Windows Server 2012 R2, Azure, ClearScript.V8.5.4.7, Selenium.Mozilla.Firefox.Webdriver.0.6.0.1, Selenium.WebDriver.GeckoDriver.Win64.0.11.1 I'm using ClearScript to wrap the Selenium objects for use in JavaScript, viz static JScriptEngine JSengine = null; ... JSengine = new JScriptEngine(WindowsScriptEngineFlags.EnableDebugging | WindowsScriptEngineFlags.EnableJITDebugging); ... JSengine.AddHostType("CSFirefoxDriver", typeof(FirefoxDriver)); JSengine.AddHostType("CSFirefoxOptions", typeof(FirefoxOptions)); JSengine.AddHostType("CSFirefoxDriverService", typeof(FirefoxDriverService)); I instantiate [...] read more
c#
azure
selenium
firefox
geckodriver
6votes
2answers

Windows 10 Anniversary update: Search bar doesn't work after update

After I did the Windows 10 Anniversary update 1607 (Dutch, so no Cortana), my search bar in start menu stopped working. When I click the start menu and start typing something, it either closes immediately or it freezes and stops the whole explorer.exe. If I manage to get some text [...] read more
windows-10
search
start-menu
windows-search
windows-10-v1607
5votes
1answer

Windbg crash dump analysis

I'm having a hard time getting any meaningful information from a crash dump I created with ProcDump, but I'm pretty sure it's relevant to a seemingly random crash I've been having. I have a VB6 application running on Windows 7 64-bit. Every once in a while, it crashes, leaving an [...] read more
windows-7
vb6
windbg
crash-dumps
procdump
4votes
1answer

How to send an SMS from Debian command line?

I have a 4G wwan modem (Fibocom L850GL) with a valid SIM card on a Debian PC. I have modem-manager-gui and I can send SMS with it. modem manager gui help send SMS from linux with a GUI [https://i.stack.imgur.com/Rgfy6.png] How can I do the same from the command line? I [...] read more
networking
debian
modem
wwan
4votes
2answers

Android Mediarecorder setNextOutputFile IllegalStateException

I am trying to split my audio recording with android mediarecorder into multiple files, but whenever I set the next output file, I got an illegalstate exception. Here's the code: private void getMediaRecorderReady(String filePath, FileDescriptor nextFile) { bufferSize = 88200; recorder = new MediaRecorder(); recorder.setAudioSource(MediaRecorder.AudioSource.MIC); recorder.setOutputFormat(MediaRecorder.OutputFormat.AAC_ADTS); recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC); recorder.setAudioEncodingBitRate(64000); recorder.setAudioSamplingRate(44100); recorder.setAudioChannels(1); [...] read more
android
mediarecorder
4votes
0answers

ASP.NET Core Health monitoring on IIS (Log reason to restart)

I have an ASP.NET Core application running on .NET Framework. I host it on IIS and everything works fine except the fact that sometimes it's being restarted. I read that there are many reasons why IIS can restart the application. I found that for an ASP.NET app I could've put [...] read more
c#
asp.net
.net
iis
.net-core
3votes
2answers

Graphics card(?) causing crashes

I've got a Geforce GTX 660Ti It's been running fine for 5-6 weeks. Today I launched Left4Dead2 and got 7-8 FPS (usually a rock solid 300 even at the busiest moments). In case of driver/software issues, I reinstalled Steam, applied all outstanding windows updates, reinstalled the graphics driver (clean install) [...] read more
windows-7
drivers
nvidia-graphics-card
directx
3d
3votes
0answers

Start Menu in Windows 10 suddenly closes when right clicking on username

When you right click on your username in Windows 10, at least for me, the whole Start Menu suddenly closes (by either waiting around or moving your mouse around. you also can't click on anything) Why this is happening is beyond me. I know I could sign out using Windows [...] read more
windows-10
start-menu
3votes
0answers

Pixel conversion in decompiled assembly from Ghidra

I'm reversing an assembly function that I believe is converting an array of pixels (RGB) or photosites (RGGB) into a final array with an original (I think) encoding made of 10bits or 12bits per pixel. My goal is to understand in terms of c/c++ operations or natural language in the [...] read more
c
image
assembly
reverse-engineering
ghidra
3votes
3answers

How to get CPU brand information in ARM64?

In Windows X86, the CPU brand can be queried with cpuid intrinsic function. Here is a sample of the code: #include <stdio.h> #include <intrin.h> int main(void) { int cpubrand[4 * 3]; __cpuid(&cpubrand[0], 0x80000002); __cpuid(&cpubrand[4], 0x80000003); __cpuid(&cpubrand[8], 0x80000004); char str[48]; memset(str, 0, sizeof str); memcpy(str, cpubrand, sizeof cpubrand); printf("%s\n", str); } [...] read more
c
windows
intrinsics
arm64
3votes
1answer

Broken CPUID brand string?

I am printing some information about CPU in my OS using CPUID instruction. Reading and printing vendor string(GenuineIntel) works well, but reading brand string gives me little strange string. ok cpu-info <= Run command CPU Vendor name: GenuineIntel <= Vendor string is good CPU Brand: D: l(R) Core(TMD: CPU MD: [...] read more
c++
assembly
x86-64
masm
uefi
3votes
1answer

Using grub in floppy image file to start your own kernel inside bochs

Basically I've followed the instructions here http://sig9.com/bochs-grub to create a bare image file which does nothing but lets the BIOS start GRUB. The problems are: * The kernel I am writing will be 32-bit, using http://www.jamesmolloy.co.uk/tutorial_html/index.html for a start, but my host (physical) machine is x86_64 with bochs configured like [...] read more
assembly
x86
osdev
grub
bochs
3votes
2answers

MySQL: InnoDb: Semaphore wait has lasted > 600 seconds. We intentionally crash the server

MySQL 5.7.16 server on Windows Server 2012R2 with 32GB RAM is now restarting itself every 18minutes or so with the following in the error log: InnoDB: ###### Diagnostic info printed to the standard error stream 2017-11- 16T13:18:39.650036Z 0 [ERROR] [FATAL] InnoDB: Semaphore wait has lasted > 600 seconds. We intentionally [...] read more
mysql
database
innodb
rollback
recovery
3votes
0answers

CEF Sharp Error On Latest Version

We are using the latest version of CEF Sharp (63.0.3) in a WPF application. It works most of the time but at random we get the following error. Faulting application name: Control.exe, version: 2018.4.18108.2, time stamp: 0x5ad7717f Faulting module name: libcef.dll, version: 3.3239.1723.0, time stamp: 0x5a5407a4 Exception code: 0x80000003 Fault [...] read more
cefsharp
3votes
1answer

Second stage bootLoader not loading in bochs, LINUX (ubuntu 16.04), Brokenthorn osdev series

I am following brokenthorn OS development series, until now I am able sucessfully run bootloader stage1 but there is some issue with loading second stage bootloader from FAT12 floppy in bochs emulator on linux machine(ubuntu 16.04) (It works fine in virtual box though). Here is my stage1 boot loader: bits [...] read more
assembly
x86
bootloader
osdev
bochs
3votes
2answers

How to find error in 'The program .. has exited with code -2147483645 (0x80000003).'

I have an uwp project testing on Win 10 iot core with raspberry pi 3. I do remote debugging on device. After a while the application crashes and only i can see in debug is that error.'The program .. has exited with code -2147483645 (0x80000003).' how can i see more [...] read more
c#
visual-studio-2015
uwp
windows-10-iot-core
2votes
1answer

Analyzing a dump file using WinDbg

I've been asked to explore a dump file (no source files given) using windbg and to extract some information from it: * determine what is the issue (hang/crash) * what module causes the hang. * What is the root cause of the hang/crash. * Enumerate all company modules injected to [...] read more
windows
dump
windbg
hook
2votes
2answers

Explorer.exe crashing every few seconds

THE PROBLEM I have been using Windows 8 for a few months now, and today my taskbar has been crashing every few seconds. The taskbar will lose all its icons, then they will all reappear in a few seconds. File Explorer also crashes, however all my programs remain intact. I've [...] read more
windows-8
windows-explorer
crash
2votes
2answers

Kodak 6150AIO Windows 7 Printing Issue

I have a strange issue with a Kodak printer that is set up on an Small Business 2008 server, and shared out. The printer prints fine from all Windows XP stations, but won't print from the only Windows 7 32bit (there are no 64bit stations onsite) station that they have [...] read more
windows-7
printer
2votes
3answers

Windows 7 explorer always crashes, opens small "Personalized Settings" window

My Windows 7 desktop PC, built by me, started acting very weird in the last couple of days. I use it quite often, about half of the time through TeamViewer. Explorer would crash and restart randomly, almost always through TeamViewer. This made me suspect that TeamViewer was the problem but [...] read more
windows-7
windows-explorer
crash
2votes
4answers

Vist64 crash Bluescreen 1000007e

My computer (Dell Precision T7400) keeps crashing. Usually the screen and input devices freezes, but I've also gotten a bluescreen: Problemsignatur: Problemhändelsens namn: BlueScreen OS-version: 6.0.6001.2.1.0.256.6 Språkvariant-ID: 1053 Ytterligare information om problemet: BCCode: 1000007e BCP1: FFFFFFFFC0000005 BCP2: FFFFF800021C9B81 BCP3: FFFFFA6001DDB798 BCP4: FFFFFA6001DDB170 OS Version: 6_0_6001 Service Pack: 1_0 Product: 256_1 [...] read more
windows-vista
64-bit
crash
2votes
1answer

.net application is blocked on start hanging in process explorer with 1 MB

I have a Windows Forms Application written on C# and it targets .net framework 4.8. I run this application on Windows 7 x86 on the customer's PC. My application works fine but time to time I have a mystic problem with its launch. Sometimes my application just refuse to start [...] read more
c#
.net
dump
2votes
1answer

Why is paging not working and getting physical address not available error on Bochs

I have the following assembly code to set up paging for long mode. org 0x7e00 bits 32 mov eax, 0x08000008 mov cr3, eax pml4t: mov dword [0x8000], 0x0900000f mov dword [0x8004], 0x0 pdpt: mov dword [0x9000], 0x0a00000f mov dword [0x9004], 0x0 pdt: mov dword [0xa000], 0x0b00000f mov dword [0xa004], 0x0 [...] read more
assembly
x86
paging
bootloader
2votes
2answers

mysql stop working in xampp with error InnoDB: File (unknown): 'read' returned OS error 223

After searching a lot for the error, could not found a solution. I am getting the below error when trying to start Mysql in Xampp > 2019-01-30 8:24:11 6428 [ERROR] InnoDB: File (unknown): 'read' returned OS > error 223. Cannot continue operation 190130 8:24:11 [ERROR] mysqld got > exception 0x80000003 [...] read more
mysql
database
xampp
2votes
1answer

How can I find the reason of HANG with WinDBG? (C++)

I got the full dump using this command when the process doesn't respond and doesn't work. > procdump.exe -ma [PID] Also, I tried to find the reason why this process showed strange behavior using WinDBG. But I'm just a WinDBG beginner, so I didn't get any hint from the FULL [...] read more
c++
windbg
freeze
2votes
2answers

Very strange permission denied for file checkout

I am not a ClearCase newbie, I already did setup some CC-Servers in very well organized networks managed by LDAP. But this time it is a bit different in a non-LDAP managed network… I am facing a real strange checkout issue and I am stuck… To mention it directly at [...] read more
ubuntu
view
permissions
clearcase
vcs-checkout
2votes
1answer

OnMouseDown creates "Screen position out of view frustum" error in Visual Studio

How to reproduce: * Make a new empty hololens project with a cube in the middle. * Deploy it on the hololens and check that it works. I use "Debug/x86/Remote Machine" as configuration. * Create a new script and add an empty method called OnMouseDown() > void OnMouseDown() > { [...] read more
hololens
2votes
2answers

Bare metal C Function not working

I have been writing a kernel for the Raspberry Pi 2 using C. To do so I have been following the Valvers and Baking Pi (written in Assembly) tutorials to do so. But each time I try to port the function to set a pin to output from the Baking [...] read more
c
assembly
raspberry-pi
kernel
2votes
1answer

Deploying unity 3d app to hololens apps fails with code -2147483645

I recently upgraded my unity 3d app from unity version 5.6.0 to 5.6.1 and holotoolkit-unity from 1.5.6 to 1.5.7. Now, whenever I build the app and attempt to deploy it to the device via Visual Studio 2017, I get the following error: 'LabanotationAR.exe' (CoreCLR: DefaultDomain): Loaded 'c:\data\Programs\WindowsApps\Microsoft.NET.CoreRuntime.2.1_1.1.25129.1_x86__8wekyb3d8bbwe\System.Private.CoreLib.ni.dll'. Skipped loading symbols. [...] read more
visual-studio
hololens
2votes
2answers

MySQL crash on startup

I'm developing on my laptop with wamp and mysql is running fine from weeks. Today after 60 seconds after boot mysql crashes I and find the following error inside the log: 2016-03-17T20:34:37.662021Z 0 [ERROR] InnoDB: Cannot allocate 4294956804 bytes of memory after 60 retries over 60 seconds. OS error: Not [...] read more
mysql
crash
2votes
1answer

Getting information from minidumps that have WerReportFault() on the stack

I have crash dumps that have WerpReportFault() in their stack and they really don't look the way I expect them to. MY EXPECTATION If have seen WerpReportFault()along with 0x80000003 breakpoints and I was able to use WinDbg to re-dump with different exception pointers, taken from the second argument passed to [...] read more
debugging
vb6
windbg
crash-dumps
windows-error-reporting
1vote
1answer

Hyper-V Server Cluster with Microsoft iSCSI Target Storage

I Have a windows 2008 R2 Ent Server. I installed a Microsoft iSCSI Target 3.3 configured and everything was fine until one reboot. The iSCSI Service will not start. You Can reproduct the error: 1 Install Windows Server 2008 R2 Ent. (64bit) 2 Run Windows Update 3 Run DCPROMO and [...] read more
windows-server-2008
hyper-v
iscsi
windows-storage-server
1vote
2answers

Exchange Auth breaks when no local GC

I ran into a problem while installing our Exchange 2010 server where client access authentication does not work unless the server is configured as a domain controller with global catalogue. I went to production with this because of time constraints but I really need to fix it now. I have [...] read more
active-directory
windows-server-2008-r2
exchange-2010
1vote
1answer

Windows explorer crashes randomly

I have a user on windows 10 that is having windows explorer crash at seemingly random times. It does not look like it always shows up in the EventLog but here are two times I have seen it: Faulting application name: explorer.exe, version: 10.0.14393.479, time stamp: 0x58258a90 Faulting module name: [...] read more
windows
windows-explorer
crash
dump
windbg
1vote
1answer

AMD ATI driver - atikmdag.sys causing BSODs

For the past two years I've been having problems with ATI drivers on Win7. From what I can gather, it's caused by ATI drivers. I have AMD Radeon Sapphire HD 7750 Ultimate Edition 128-bit 1GB DDR5 graphic card. I've been getting BSODs a few times a month for the past [...] read more
windows-7
bsod
amd-radeon
display-driver
1vote
1answer

Faulting module name: vrfcore.dll, version: 6.3.9600.16384 and Exception Code : 0x80000003

I created a winform application in VS express 2013 for windows Desktop and sql server 2012, everything runs beautifully and as expected both in debug and release modes but when i try to run the exe out of the visual studio (by clicking on .exe) it crashes and i found [...] read more
.net
vb.net
windows
winforms
visual-studio
1vote
0answers

ImportError: No module named os | trying to run .exe programm

I'm using Ubuntu 20.10 and I am relatively new to Linux so I would like to kindly ask you to tell me if there is any info needed. I am trying to install Ableton Live 10 in Ubuntu but I get this when I try to wine program_name.exe wine Ableton\ [...] read more
python
sys
wine
python-os
ubuntu-20.10
1vote
1answer

How do you track down winform ntGetContextThread + 0xc crash

What is my next step to track down my app crash? I have a c# winforms app which seems to randomly close without warning. I have run a dump file though winDbg but it hasn't narrowed down my search. Here's what it has given me. 0:000> !analyze -v ******************************************************************************* * [...] read more
c#
winforms
windbg
1vote
0answers

Record instructions stepping/tracing in a multithreaded application on a multi-core system

I created an extension for WinDbg using DbgEng, which records trace containing the state of the registers and stack for each executed instruction in user mode and in kernel mode. For step-tracing, I use breakpoints (I also tried sets the TRAP flag to threads context for which a trace is [...] read more
multithreading
debugging
windbg
trace
dbgeng
1vote
1answer

How to get physical and virtual address bits with C/C++ by CPUID command

I'm getting physical and virtual address bits size with C by using CPUID command in windows. I can get the processor information this way, but I'm confused by getting the address bits. Looks like I should you the 80000008 instruction but I do this way, only 7-8 digits change continuously [...] read more
visual-c++
x86
operating-system
bit
cpuid
1vote
0answers

Why does Bochs crash on simple mov instruction

I'm building a small operating system and was using Qemu before which was working properly. Now I'm stuck on a Windows 10 machine and Qemu doesn't work well with GDB on this machine. I thought I'd try Bochs or Virtual box instead. The problem is that with both of these [...] read more
assembly
x86
qemu
bootloader
bochs
1vote
2answers

Unity3d Huge memory usage textures

I have a 3D endless runner game built in Unity3D running on iOS, Android and Windows Phone. It works fine on Windows Phones with 1014MB memory and above, but under that it crashes as soon as it starts (see error message from Visual Studio at the bottom of this post). [...] read more
memory
windows-phone-8
unity3d
textures
1vote
1answer

MSVC++ Exception 0x80000003 In Different Language

I have some software that I've helped modify. We took the application from 32 to MFC to 64 bit MFC. It's been a pretty big project, but we are having this one really strange issue. My installer works on all of our computers here, the application works and doesn't have [...] read more
c++
mfc
runtime-error
1vote
1answer

Task Scheduler: Problem attempting to retrieve a task object

I am using/learning the Windows Task Scheduler in win32 C++. I am attempting to retrieve a task object (for a task that exists) but it continually fails & returns the error COR_E_FILENOTFOUND 0x80070002 = The task does not exist What do you think is going wrong? I know this task [...] read more
winapi
scheduled-tasks
1vote
2answers

Why does Raygun on .NET Native cause my app to crash?

I'm working on a Windows 10 Store application where I'm using Raygun.io (5.2.0). We released the app couple of times (latest in mid December) I see in Rayguns web interface the logs coming from previous versions. While testing the app now before publishing next version I found out that Raygun [...] read more
c#
uwp
raygun
1vote
2answers

Crystal Reports runtime for Visual Studio 2010 not working in Server 2008

Our web application used the old Crystal Reports XI Rel 2 activeX to render the reports called from classic ASP. We would like now to have it run alongside the new Crystal Reports 13 run time to render reports called from ASP.NET. We installed the exe found in http://scn.sap.com/docs/DOC-7824 (support [...] read more
asp.net
crystal-reports
1vote
1answer

mysqld.exe has stopped working in xampp windows?

Mysqld.exe has stopped working in xampp windows. I started my computer while the XAMPP software was running in the background, MySQL will not start! > 2017-11-20 11:05:36 14f4 InnoDB: Warning: Using > innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in > future releases, together with the option innodb_use_sys_malloc and [...] read more
mysql
xampp
1vote
0answers

how to fix "Failed to request MethodData, not in JIT code range" error

0:000> g TTD: End of trace reached. (1fe4.59dc): Break instruction exception - code 80000003 (first/second chance not available) Time Travel Position: 33D60F:0 clr!MetaData::TableRO::GetRecord+0x3: 00007ffb`97c3b863 48895808 mov qword ptr [rax+8],rbx ds:00000000`0014bc70=000000003530bb58 Here's the stack trace: 0:000> k # Child-SP RetAddr Call Site 00 00000000`0014bc68 00007ffb`97c46dfd clr!MetaData::TableRO::GetRecord+0x3 01 00000000`0014bc70 00007ffb`97d6b79b clr!MDInternalRO::GetParentToken+0xe9 02 [...] read more
.net
wcf
debugging
clr
windbg
1vote
0answers

BSOD 0x8E STATUS_SINGLE_STEP

I have a BSOD 0x8E every day on five devices in same times on Windows 7. Allways exception code - 04 - STATUS_SINGLE_STEP as example: 1: kd> !analyze -v ******************************************************************************* * * * Bugcheck Analysis * * * ******************************************************************************* KERNEL_MODE_EXCEPTION_NOT_HANDLED_M (1000008e) This is a very common bugcheck. Usually the exception [...] read more
c#
.net
driver
bsod
kaspersky
1vote
1answer

Finding appropriate debug symbols

I got the memory dump from another PC. It is also an x64 machine, but the different version of Windows. It is a dump of usual app work. I took it to make sure that I have all required analyzing next dump (next dump will be with problem inside) At [...] read more
c#
windbg
debug-symbols
pdb-files
memory-dump
1vote
1answer

lldb unresolved breakpoint via c++ api

I have got executable module iCoreTest.exe, wich dynamicly loaded library IRTest.rs. I want to debug it via lldb c++ api. When I create "iCoreTest.exe" process under lldb throug lldb::SBTarget::Launch(..); everything works fine. With fine, I mean I can set breakpoints BreakpointCreateByLocation and when the debugger stops on it get the [...] read more
c++
debugging
lldb
llvm-c++-api
1vote
0answers

mysql large tables (>4Gb) corrupt after local server restart

I hope someone can help me with this problem I'm having (I'm a newbie to Mysql and Stackoverflow, so it's probably something silly I'm missing)... Whenever I build a large table in MySQL and then restart xampp's local MySQL server, the table then becomes unreadable under code runs that consider [...] read more
mysql
crash
0votes
1answer

OSPF - default-information originate : multiple routers

basic network [https://i.stack.imgur.com/ibFOc.gif] I receive a default route via iBGP from R1. On both R2 and R3 I have default-information originate configured. On R4 I only see one default route in the OSPF database; either to R2 or R3. When I shutdown one of the links from R2 / R3 [...] read more
networking
cisco
0votes
0answers

IIS 7 Application Pool Crash how to debug

We have several websites configured on our windows server 2012 and we noticed that one site seems crashing intermittently and the only way to get back this online is to restart that particular site and for some reason recycle application pool seems not helping the site to come online. Can [...] read more
iis-7
application-pools
windbg
0votes
1answer

DX12 Games Crash, DDU in Safe Mode, OS reinstalled, BIOS updated Still no fix

PC Specs: * Ryzen 5 5600x * 16gb Trident Z Neo @ 3600mhz * B550 Aorus Pro AC Wireless (Bios Version 13h) * EVGA - SUPER XC ULTRA GAMING NVIDIA GeForce RTX 2070 Super 8GB GDDR6 * 700w EVGA PSU I've been trying to get DX12 games to run for [...] read more
windows-10
drivers
graphics-card
crash
directx
0votes
0answers

BSOD system thread exception not handled

I get bsod at least once a day on my new PC while gaming and i ran a mini dump and it says system thread exception not handled. I don't know exactly whats causing this to happen. I've tried a lot of things but nothing seems to fix it. this [...] read more
bsod
0votes
0answers

WIFI 6 Card not working even though the computer detects it and up to date drivers are installed

I have run into a dead end here. I am trying to install an Intel AX200 WIFI + Bluetooth network card onto my desktop PC. I connected it to a PCIe port that had more slots than needed but I read that this should be fine. Additionally, a cable from [...] read more
wireless-networking
drivers
network-adapter
computer-building
0votes
0answers

What could cause heap corruption?

Preamble: I would assume that this is just a bug, but I've been having some mysterious problems with this machine, so this question is (partly) an attempt to rule out hardware as a likely cause. I've been having problems with a particular application (Elder Scrolls Online) that I haven't had [...] read more
crash
diagnostic
0votes
2answers

Windows 7 blue screen upon startup

Blue screen crash upon startup. Can someone help? Dell XPS 15 Windows 7 Ultimate, Service pack 1 Here is the debug information: Microsoft (R) Windows Debugger Version 6.12.0002.633 AMD64 Copyright (c) Microsoft Corporation. All rights reserved. Loading Dump File [C:\Windows\Minidump\112115-25131-01.dmp] Mini Kernel Dump File: Only registers and stack trace are [...] read more
windows-7
vga
0votes
1answer

How should I approach analysing this Windows crash dump?

My Windows Vista x64 is crashing every once in a while. Can somebody tell me what is wrong according to this crashdump? Microsoft (R) Windows Debugger Version 6.11.0001.404 X86 Copyright (c) Microsoft Corporation. All rights reserved. Loading Dump File [C:\Windows\Minidump\Mini102109-01.dmp] Mini Kernel Dump File: Only registers and stack trace are [...] read more
crash
minidumps
data-dump
0votes
1answer

Dinning philosophers problem MPI C++. Everytime process 0 exit without using finalize

I have some troubles with solving of the problem and i dont know what to do here. Everytime when i compile this code i get the same error : "job aborted: [ranks] message [0] process exited without calling finalize [1-5] terminated ---- error analysis ----- [0] on USER-PC Philosophers.exe ended [...] read more
c++
mpi
0votes
0answers

MySQL doesn't start in Xampp

My MySQL Xampp is suddenly not working. The past few days it is working fine but now it suddenly stops when I start. The error in logs looks like this: 2020-09-07 17:19:15 0x4818 InnoDB: Assertion failure in file D:\winx64-packages\build\src\storage\innobase\include\ut0new.h line 248 InnoDB: Failing assertion: ptr != NULL InnoDB: We intentionally [...] read more
mysql
xampp
mariadb
0votes
0answers

Getting Semaphore wait has lasted > 600 seconds error while using MySql(5.7.31)

Since i'm not to sure what to do other then what i've seen on here and stackoverflow but i'm getting this error when i startup MySql in WampServer: Semaphore wait has lasted > 600 seconds error. I've tried lowering and raising the values of these variables and this is what [...] read more
mysql
wamp
wampserver
0votes
0answers

Maria DB keeps dying

I run a stock trading bot, but Maria DB keeps dying. Even if I look at the error log, I do not know the cause. Please Help. > 2021-02-20 15:10:46 0 [Note] InnoDB: innodb_page_size=32768 InnoDB: using > atomic writes. 2021-02-20 15:10:46 0 [Note] InnoDB: Uses event mutexes > 2021-02-20 15:10:46 [...] read more
python
mariadb
0votes
0answers

iwlwifi drivers not loading for ax200 in MX linux

Kernel is 5.8, wifi driver is the intel iwlwifi version for ax200 requiring a kernel of at least 5.1 and the wifi card appears in lspci -k but nothing I've tried is working as I can't find any documentation from intel surrounding this or any other thread someone has asked, [...] read more
linux-kernel
driver
intel
firmware
0votes
0answers

Trying to save an image in VS C# exits with code -2147483645 (0x80000003)

so I'm trying to save an image via this code: SaveFileDialog saveFileDialogThing = new SaveFileDialog(); Bitmap test = new Bitmap(5, 5); //Do some image edit thingies try { if(saveFileDialogThing.ShowDialog() == DialogResult.OK){ test.Save(saveFileDialogThing.FileName); } } catch (Exception ex) { Console.WriteLine(ex.ToString()); } When running in Debug configuration, everything works as intended. However, [...] read more
c#
0votes
0answers

Readering resposnse headers with CefGlue

In my .net project, we would like to embed a web browser and be able to read the header responses that are returned when we navigate to a remote website. I was able to do that using CefSharp but since it does not support .Net Core t is off the [...] read more
.net-core
cefsharp
chromium-embedded
cefglue
0votes
0answers

SB3 USB keyboard and mouse intermittently disconnect (dump attached)

I have G413 Logitech mechanical keyboard, and G300 Logitech gaming mouse, each plugged in at 2 different usb ports on the laptop base. I found both external usb devices connection to the laptop was not stable. Plugging back in or restarting computer sometimes work and sometimes not. I have also [...] read more
windows-10
surface
0votes
0answers

How to set the output cpusubtype when using gobjcopy?

I use the below command to generate an object file, but the corresponding "cpusubtype" is incompatible with the current system, what I suppose to have is "0x3", but the actual what I have is "0x80000003", how do I resolve this problem? gobjcopy -I binary -O mach-o-x86-64 -B i386:x86-64 test test.o [...] read more
objdump
objcopy
0votes
3answers

System Error Code 0x32 when trying to attach debugger to calc.exe

I am currently learning how debuggers function and I am trying to program one myself following the book 'Gray Hat Python' by Justin Seitz. I am quite new to python and using the Windows API so any help is appreciated. I am using python 2.7 and Windows 10 64bit (in [...] read more
python
ctypes
0votes
1answer

MySQL server shuts down immediately after starting

I had MySQL Workbench installed, I was trying to make a script and open .sql files of database I got sent over (I am a noob practising), later on I realised my local server was off, I tried win + R and running on services.msc but it shuts itself down [...] read more
mysql
0votes
0answers

InnoDB: File (unknown): 'read' returned OS error 403. Cannot continue operation ; [ERROR] mysqld got exception 0x80000003 ;

i am facing the following error recently. Mysql was hosted by XAMPP in local, and recently getting repetitively Error. 2020-04-28 7:28:12 260 [Warning] InnoDB: Retry attempts for reading partial data failed. 2020-04-28 7:28:12 260 [ERROR] InnoDB: Tried to read 16384 bytes at offset 49152, but was only able to read [...] read more
mysql
database
xampp
0votes
1answer

Windows process handle count continues to grow

I'm working on a C++ project on Windows 10, its been noticed that over time the Handles associated with the process increases and continues to grow. Searching online for a reason I'm not sure if this means that the process has a memory leak or if this is normal. When [...] read more
c++
windows
windbg
0votes
2answers

Can't load any drivers on Windows 2008 R2, the example project in VS 2019 results in instant BSOD

I'm trying to build the example project from VS 2019: enter image description here [https://i.stack.imgur.com/ejECI.jpg] Then I enabled testsigning and try to load it in Windows 2008 R2, the Virtual Machine immediately crashed. When I loaded MEMORY.DMP in WinDBG: EXCEPTION_CODE: (NTSTATUS) 0x80000003 (2147483651) - { FAULTING_IP: test!__security_init_cookie+2d fffff880`0d16d119 cc int [...] read more
windows
kernel
driver
visual-studio-2019
0votes
1answer

How to load registry hive for a newly created windows user who have never login?

I created a new windows user using C# and I would like to restrict list of apps to run through setting registry using C#. But the user profile and its registry is not initialized yet, since the user has never login, it will not have registry hive loaded and I [...] read more
c#
windows
0votes
1answer

Vuforia ARcamera Screen position out of view frustum

We are working on a project for the Hololens and for some reason, when running it crashes on the hololens but not in the simulation. We have tried all the simple fixes (rebooting, closing, deleting camera, setting the size) and all have failed. We get the following error: (Filename: C:\buildslave\unity\build\artifacts/generated/Metro/runtime/DebugBindings.gen.cpp [...] read more
unity3d
vuforia
hololens
frustum
arcamera
0votes
0answers

EXCEPTION_ACCESS_VIOLATION while printing pdfs

Some (~4 of many) of our customers have the problem that while trying to print some documents (pdfs) with our software that the application crashes without any exception. The problem occurs only on windows and I can't find any coherences. All in all it's a very curious bug. Here is [...] read more
java
windows
intellij-idea
printing
0votes
0answers

The KMDF driver crashes with no useful information from !analyze -v

I am trying to debug Hello World KMDF driver from MSDN in Virtual Box. Symbols loads and everything looks fine. But when I am trying to debug the code the following happens: ----------------------------------------------------------------------- ----------------------------------------------------------------------- Starting New Debugger Session ----------------------------------------------------------------------- ----------------------------------------------------------------------- [debug session data] Break instruction exception - code 80000003 (first [...] read more
windows
windbg
kmdf
0votes
1answer

How to understand apparent memory leak in WmiPrvSE process?

My application is running lots of WMI queries, which are done by opening a connection to root\cimv2, executing the query, and then closing that connection. Now it seems that the WmiPrvSE.exe process in going into a memory leak. A heap_stat.py memory leak investigation (heap_stat.py, as explained under this URL), shows [...] read more
memory-leaks
wmi
windows-server-2016
0votes
0answers

PAPI_num_counters() shows the system doesn't have available counters

I have a question regarding PAPI (Performance Application Programming Interface). I downloaded and installed PAPI library. Still not sure how to use it correctly and what additional things I need, to make it work. I am trying to use it in C. I have this simple program: int retval; retval [...] read more
c
caching
x86
papi
0votes
0answers

XAMPP-MYSQL crashes

I have a problem with MySql on Xampp. It crashes after has been launched. My SO is Windows 10 on a Macbook Pro with Bootcamp. The used port is 6528. The system establishes a connection (the left indicator became green) and after a moment crashes. 2019-01-18 10:44:30 a38 InnoDB: Warning: [...] read more
mysql
crash
xampp
0votes
2answers

select/match a Section in Python

I'm trying to match each section of any Link State type from OSPF Database as shown in CLI_Output below using following regex in python: regex = r'\n\n(\s+\S+( \S+)?(.+?)\n\n)(\s+\S+( \S+)?)?' section = re.findall(regex,_original_result, re.M) But I get only (the 1st) one line after the heading line i.e. Router Link States (Area [...] read more
python
regex
match
multiline
findall
0votes
1answer

Calling C++ function with LPStr return value from C#

I have a C++ dll in 64-Bit, which contains a function that returns an LPStr. I would like to call this function in C#. The function declaration looks like this: __declspec(dllexport) LPSTR __stdcall function(int16_t error_code); In my C# code I have tried the following: [DllImport(@"<PathToInterface.dll>", EntryPoint = "function")] [return: MarshalAs(UnmanagedType.LPStr)] [...] read more
c#
c++
dll
lpstr
0votes
2answers

Unable to query value of CSDVersion

I followed this C# example and am able to query some registry values, but not all of them: How to obtain a registry value from a remote machine if I don't know its type? (C#) I can reliably get registry keys such as the CurrentVersion, the ProductName, etc. But when [...] read more
c#
0votes
1answer

How to use this in ffi

std::string __cpuid() { char VendorName[49] = {0}; char VendorID[13] = {0}; unsigned int a, b, c, d; __asm xor EBX, EBX; __asm xor ECX, ECX; __asm xor EDX, EDX; __asm mov EAX, 0x80000002; __asm cpuid; __asm mov a, EAX; __asm mov b, EBX; __asm mov c, ECX; __asm mov d, [...] read more
assembly
lua
jit
luajit
0votes
0answers

Form crashes with Error code 0x80000003 on startup

I've run into issues when deploying a scanning application that uses IBM FileNet/P8 components. On our normal dev and test environments, it starts without any issues. When we install on the client's environment, it fails at the startup splash screen. The event log shows a cryptic (to me) error: -------------------------------------------------------------------------------- [...] read more
vb.net
winforms
filenet-p8
0votes
1answer

MySQL keeps crashing when using xampp

I have recently started with web-development. I need a good server to run PHP and mySQL applications. The problem I am facing now is that mySQL keeps crashing whenever I open xampp. I have read most of the threads on StackOverflow and have also reconfigured the ports, deleted the ibdata1 [...] read more
xampp
0votes
1answer

XAMPP MySQL starts then stops

So I've tried a lot of things and can't get my SQL to work (Apache is working) Here is the error log. All it does is show green in the control panel then just stops. 2018-04-14 14:42:34 37c InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in [...] read more
mysql
sql
xampp
0votes
2answers

Mysql Server Down frequently

below is a log of mysql MYSQL shutdown frequent and i cant solve the problem image file logfile 2018-02-26T08:15:08.301271Z 591 [Warning] IP address '192.168.1.4' has been resolved to the host name '192.168.1.4', which resembles IPv4-address itself. 2018-02-26T08:15:08.395035Z 596 [Warning] IP address '192.168.1.4' has been resolved to the host name '192.168.1.4', [...] read more
mysql
database
0votes
0answers

mysqld.exe has stopped working. Trying to start mysql in XAMPP

Right now I am learning how to code HTML and PHP and use SQL. I am using XAMPP for mysql. Whenever I try to start mysql I always get an error. This is the error log. 2018-02-24 17:22:30 f04 InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed [...] read more
mysql
sql
xampp
0votes
2answers

MariaDB: ERROR 2013 (HY000): Lost connection persists only for one database

I have several databases: - curr - curr_add and many others on the same MariaDB instance. When I submit an sql to curr_add I get connection and the results. When I send the query to curr I get the error: MariaDB: ERROR 2013 (HY000): Lost connection to MySQL server during [...] read more
mysql
connection
mariadb
mysql-error-2013
0votes
0answers

CryptoJS is not defined at

I am trying to use DES encryption/decryption on Google chrome. In my folder I have three files. 1. tripledes.js 2. mode-ecb.js 3. CryptoJS-DES.html The scripts in my html file is defined as follows :- <script type="text/javascript" src="tripledes.js"></script> <script type="text/javascript" src="mode-ecb.js"></script> and another script file which is :- function encryptByDES(message, key) [...] read more
javascript
html
node.js
cryptojs
0votes
1answer

MySQL crash while mysqldump / mysqlcheck

everytime I try to backup or check all tables mysql server crashes on Windows server 2012, I am using XAMPP stack for my development environment. The database crypto has more then 1100+ tables in DB. I am including the logs below. > InnoDB: End of page dump 2017-09-24 13:58:35 7dc [...] read more
mysql
mysqlcheck
0votes
0answers

Mysql crashes on query INSERT IGNORE INTO table_1 SELECT * FROM table_2

I am trying to merge to tables to a single one with the query INSERT IGNORE INTO table1 SELECT * FROM table2 When I run each time this query crashes mysql in Xampp. Both table1 and table 2 are very large contains more than 1 crore (ten million) records. Mysql [...] read more
mysql
0votes
1answer

Error in cef in c# windows forms

good afternoon everybody I was trying to upgrade my GUI in c# by using the webBrowser component but it doesnt support everything and the file doesnt show as it should be so i tried using ChromiumWebBrowser which appeared to be a great solution but when i compiled the project it [...] read more
c#
chromium-embedded
0votes
0answers

mysql crashed(mysql has gone away) while getting gmail api data and storing it in the database

while getting data from from gmail and storing it in a databas. mysql database always crashes. here is the latest log from the latest crash 2017-07-28 15:50:10 3708 [Note] InnoDB: Using mutexes to ref count buffer pool pages 2017-07-28 15:50:10 3708 [Note] InnoDB: The InnoDB memory heap is disabled 2017-07-28 [...] read more
php
mysql
xampp
0votes
1answer

Why do I need to run an application as a root for the PAPI library to work?

I just upgraded to Ubuntu 16.04 LTS. In my C++ applications I use the PAPI library, so I installed it from http://icl.utk.edu/papi/. However for some reason I can not run my applications anymore without having to type sudo in the beginning. Even just typing papi_avail on the terminal to see [...] read more
c++
ubuntu-16.04
papi
0votes
2answers

Windows Server Crash Dump Analysis

I'm not certain that this is the right venue for this question, but a programmer friend of mine said I should try this here. My company's main application is hosted on a terminal server running Windows Server 2008. Since last Thursday we have seen this server crash and reboot 3 [...] read more
windows
crash-dumps
0votes
1answer

Firefox error occurs when use quit function of selenium in python

I'm trying to run a python script that imports selenium (using firefox browser). I tried close().. but it's not working.. window remains the same after the script I want to close firefox window, so I use driver.quit() and it succeeded to close the window, but it gives me an error [...] read more
python
selenium
firefox
exit
0votes
0answers

Custom Lua allocation function's freeing throws COMException

I'm trying to use a custom allocation function to control the amount of memory used by Lua, but for some reason I get a COMException while Lua is trying to free memory, saying that an argument is invalid (HRESULT: 0x80000003), if I let a script that creates and extends strings [...] read more
c#
.net
lua
pinvoke
luajit
0votes
1answer

XMS.NET exits the process on factory.CreateConnection

This is a follow up on XMS.NET hanging indefinitely on factory.CreateConnection("username", null); . As recommended in the comments, I installed the newest versions of MQ client and XMS.NET. The application stopped hanging, now it just terminates the process after a few seconds. There is no exception beingh thrown. The only [...] read more
c#
.net
jms
ibm-mq
xms
0votes
0answers

Sometimes getting null value for windows version and processor type

For the most part, the function below works but in rare cases returns a null value: DWORD WinVerMinor() { OSVERSIONINFO osvi; ZeroMemory(&osvi, sizeof(OSVERSIONINFO)); osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&osvi); return osvi.dwMinorVersion; } Also cpustr below sometimes ends up being null. For example, from an executable app cpustr stores the correct string while [...] read more
c++
c
windows
version
processor
0votes
1answer

OpenQA.Selenium.WebDriverException : Cannot find a file named '...\bin\Debug\getAttribute.js' or an embedded resource with the id 'getAttribute.js'

I have some tests that use Geckodriver to run a test in Firefox. Today, Firefox updated to version 50 on my development machine. I saw this error: System.NotImplementedException : GET /session/ffffffff-ffff-ffff-ffff-ffffffffffff/element//attribute/ did not match a known command I updated to geckodriver-v0.11.1-win64 and selenium-dotnet-strongnamed-3.0.0 (for .NET 4.0), thinking maybe Selenium and [...] read more
.net
selenium
firefox
geckodriver
0votes
1answer

MySQL crash after enormous row locks

I'm using MySQL 5.7.14 x64 on Windows Server 2008 R2 Sometimes (randomly times at day) mysql crashing with this stack trace 11:44:40 UTC - mysqld got exception 0x80000003 ; This could be because you hit a bug. It is also possible that this binary or one of the libraries it [...] read more
mysql
crash
locking
innodb
0votes
2answers

MYSQL Crash on building Full Text Search Index

I need help and Guidance. I am using XAMPP local server. I tried to create a Full Text search index using below command: CREATE FULLTEXT INDEX corp_nz ON corp_news(content ASC, subject ASC); The table corp_news has around 91000 records with 7 columns. When I fire this query, in phpmyadmin, i [...] read more
mysql
full-text-search
0votes
1answer

MariaDB of XAMPP hanging when trying to add fulltext search for a large table's column

I have XAMPP 5.6.15 for Windows which is running 10.1.9-MariaDB. I have a table, InnoDB, with large amount of records and size, 49888 records and 245 MiB size. The main of its size in a column contains text named tafText. Using PHPMyAdmin, I try to set fulltext search on that [...] read more
mysql
phpmyadmin
xampp
mariadb
0votes
0answers

Error cannot connect to local host visual studio professional 2013

I am working on a project in Visual Studio Professional 2013, I have been working on this project previously on VS web 2015. A while ago VS stopped being able to run projects on all of my internet browsers including brand new or blank projects that I just created. Whenever [...] read more
asp.net-mvc-4
visual-studio-debugging
-1votes
0answers

.net application with CEF Sharp is blocked on start hanging in process explorer with 5 MB

I have a Windows Forms Application written on C# and it targets .net framework 4.8. This application uses Chromium Browser from CEF Sharp. Sometimes my application just refuse to start but when I open process explorer I see Browser.exe which holds 5MB of RAM. It seems that something is blocking [...] read more
c#
.net
winforms
cefsharp
dump
-1votes
0answers

Execute binary in-memory using go ( Without touching disk )

I'm trying to Execute a binary from Memory ( Without touching disk ) Here is some code that i tried but it's failed with error. This is what i've tried: import( "fmt" "io/ioutil" "syscall" "time" "unsafe" ) const ( mfdCloexec = 0x0001 memfdCreate = 319 AbsPathOfExecutable = "Path\\To\\Executable\\File" NameOfExecutable = [...] read more
windows
memory
binary
system-calls
execute
-1votes
1answer

How to free memory allocated in C# to an IntPtr passed from C++ dll?

A pointer is passed to me from a C++ dll as followed: [DllImport("myfile.dll", EntryPoint = "LoadFile", SetLastError = true, CharSet = CharSet.None)] public static extern IntPtr dLoadFile(string x); IntPtr p = dLoadFile("myfile"); //Do things with p. Marshal.FreeHGlobal(p) //crash on this line with exception below. > System.Runtime.InteropServices.COMException: 'One or more arguments [...] read more
c#
dll
marshalling
-1votes
2answers

Selenium error 0x80000003 with Firefox

I am developing a website that runs selenium tests on Firefox, Chrome, IE... Although the tests pass perfectly on Chrome and IE, I have the problem that follows with Mozilla Firefox: error 0x80000003 [https://i.stack.imgur.com/1dCFi.png] This appears at the end of a run when the driver closes the firefox window. I [...] read more
java
selenium
firefox
gecko
-3votes
1answer

Detect SMB1 version via powershell for all OSes

My workflow: * check if server is pingable * find if they are domain connected or not and perform a task accordingly. if Operating system 2012 and/or R2 ,2016 or 2019 newer OSes then I will run Get-SmbServerConfiguration cmdlet. if machine is not a part of default domain then else [...] read more
powershell

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