Right now I'm trying this: #include <stdio.h> int main(int argc, char *argv[]) { if (argc != 3) { printf("Usage: %s %s sourcecode input", argv[0], argv[1]); } else { char source[] = "This is an example."; int i; for (i = 0; i < sizeof(source); i++) { printf("%c", source[i]); } } [...] read more
I'm using Make from the MinGW distribution. It has always worked, but recently I've gotten the following error: > make clean make: Interrupt/Exception caught (code = 0xc0000005, addr = 0x0040b0ac) And the respective part looks like this: clean: del /S /Q *.o > nul del /S /Q *.cy.c > nul [...] read more
How can I create a bootable Windows 10 USB drive from Linux ? Please note: * WinUSB doesn't work with Windows 10. * UNetbootin doesn't work either. * dd method didn't work as well. Beside this, I've tried creating a GPT partition table and one partition of type ef00 and [...] read more
Updated my Windows 10 with the Creators Update last night and installed Bash/Ubuntu subsystem. Not sure which of those caused the issue but now I find, when I attempt to run VirtualBox (5.0.24.8355), absolutely nothing seems to happen. This is the case whether I run it via the normal GUI [...] read more
My computer running Windows 7 x64 crushes time to time. Could you please advise how to analyze the memory dump or point out possible cause and further troubleshooting steps? > The computer has rebooted from a bugcheck. The bugcheck was: 0x0000003b > (0x00000000c0000005, 0xfffff96000015de8, 0xfffff88007db9fb0, > 0x0000000000000000). A dump was [...] read more
Today I decided to continue working on a program that I had created for my Computer Science class. Upon running it, I am greeted with this in the console: # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffeb23c7510, pid=7320, tid=9084 [...] read more
When I open Indexing Options, it says: > 4,317 items indexed Indexing in progress. Search results might not be complete > during this time. It's stuck at 4,317 though; no more items have been indexed. Worst of all, SearchIndexer.exe is taking up 100% CPU (well, 50%, but I have a [...] read more
When I un-dock a tab in SQL Server Management Studio and later attempt to re-dock it, SSMS crashes. This happens every time, and I can reproduce the problem at will. All I have to do is un-dock a tab (let's say, in order to view two SQL queries in different [...] read more
first time on ServerFault, and I've got a nice little conundrum. Since a few months now, we've been having issues with our internet connectivity. Environment: Servers: 2 Terminal Servers as an RDSFarm running Windows Server 2008 R2 Browser: Internet Explorer 9 Test/debug browser: Chrome AntiVirus: Avast 7.0.1455 Problem: At irregular [...] read more
Whenever I view a folder which contains .MP4 (H.264) video files in large icon view (shows thumbnails), Windows 7's Explorer crashes. Explorer loads for a few seconds, the green progress bar shows up, and then boom!, Explorer crashes. The thumbnails are not shown before crashing. Does anyone know how to [...] read more
We have an application that is used as a RemoteApp. Users access the RemoteApp via gateway. We are experiencing crashes with users running MSTSC v.6.3 on Win64 (tested with Windows 7 and Windows 8) every time an abnormal disconnection happens (connectivity failure). Typical crash is an access violation inside MSTSC [...] read more
I have a problem with a virtual Windows Server 2008 R2 SP1 server running withing VMWare. The server is running Citrix and also has Symantec Endpoint protection installed. It randomly crashes and goes to BSOD. Investigating the event log didn't yield any useful information about the cause of the crash. [...] read more
Here I have a function that creates a string, assigns it to a string pointer, and returns it. I tried returning a regular string and it worked fine. But then when when I integrated the pointers and de-referenced them, my program crashed. When I tried to debug it, this is [...] read more
In monday I updated windows 10, and then, in tuesday I tried to start apache from xampp, but I failed. xampp told me to see what Windows Event Viewer writes and this is what I I had seen in Windows-> application Bad application name: httpd.exe, version: 2.4.39.0, timestamp: 0x5cee4f90 Failed [...] read more
I'm a developer and running a SQL Server 2008 SP1 instance (default instance) on my local machine (Windows 7 RC 32-Bit). Sometimes when the program I'm developing sends a query to the SQL Server, the whole SQL Server crashes. The SQL queries are not complex, just simple CRUD queries. When [...] read more
So I was trying to learn how to do facial recognition using OpenCV v3.0. Now after confirming that the camera can actually runs and that my XML files load. I began by uncommenting the code line by line until I found the error in line 64. face_cascade.detectMultiScale(frame_gray, faces, 1.1, 2, [...] read more
When i run Emulator from Android Studio in Windows 10 Pro 64-bit then it shows the below error 13-01-2021 10:42 AM Emulator: handleCpuAcceleration: feature check for hvf 10:42 AM Emulator: cannot add library vulkan-1.dll: failed 10:42 AM Emulator: cannot add library vulkan-1.dll: failed 10:42 AM Emulator: Process finished with exit [...] read more
I am using Eclipse Mars 4.5.2. When running coverage tests for my application, which has 317 test methods so far, when it's about to finish (around 274 methods run), I am getting errors I can't find a solution to. First a popup window saying: > No Coverage Data > > [...] read more
I have a Windows 10 build 1511 host, running a Hyper-V guest of Windows 10 build 1511 as well. The guest runs fine on Standard Mode. However, as soon as I switch to Enhanced Session mode, the VMConnect.exe process crashes. It happens with RDP too. Anybody knows a workaround ? [...] read more
It happened when I tried to upgrade my JDK from 8u162 to 8u172. I found all the 8u162, 8u171 and 8u172 installers exits with code 0xC0000005, but this happens only with JDK 8. JDK 10.0.1 could be installed successfully. Here is the dump file analysis by Visual Studio: Dump Summary [...] read more
Looking for merciful soul that would help me analyze few BSOD minidumps :) I have updated the BIOS, have latest NVIDIA drivers and all works OK even under load testing. But from time to time (1-3h) a BSOD with random message will appear. System info Windows 7 x64 RTM AMD [...] read more
I'm responsible for a Citrix Presentation Server 4.5 farm. Starting Friday 30. November, my servers started to crash randomly. So far we've experienced 80 crashes, so it's obviously becoming an increasingly big problem for us. I have 12+ years experience with IT, so I know the difference between 0 and [...] read more
I installed the latest version of android studio. I was able to create and run projects just a few hours ago but now, when I try to open an existing project or trying to create a new one, it crashes (studio exits automatically). The crashing happens mainly two times, when [...] read more
I started to learn SFML, I want to create sprite to load an image from a file, so I just followed the tutorial and made the obvious thing. sf::Texture texture; texture.loadFromFile("C:\image.png"); sf::Sprite sprite; sprite.setTexture(texture); window.draw(sprite); And when I start the program I just get a white screen and "Unhandled exception [...] read more
My Pycharm IDE cannot connect debugger in one of my anaconda environment. As I try to debug some code it says: Connection to Python debugger failed Socket operation on nonsocket: configureBlocking the exit code is -1073741819 (0xC0000005) I moved the project to another anaconda environment and the debugger opens normally. [...] read more
I cannot open a file unless I open inDesign (the program) and then do File->Open If I double click, it starts to open, then just hangs forever. AFTER I close it, and look in the directory where they're saved, I see a (temporary?) "lock" file. Now I can double click [...] read more
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
I have some strange errors on multiple Server 2012 R2 Virtual Machines (Hyper-V hosts). * Missing VSS writers on startup: System Writer and Exchange Writer. I have scoured the net for possible solutions, including the hotfixes, but they are not applicable to my case. If I restart the services responsible [...] read more
I have written a simple .NET Core console app (which writes some log files, hits a database and sends some emails). Triggering the task by double-clicking on the .exe within Windows works fine. However when attempting to trigger the task through Task Scheduler it immediately fails with the code 0xC0000005. [...] read more
I have been working with Apache for more than 8 years, but now I'm facing a severe problem and I couldn't find a solution on internet so far. I'm running Apache 2.2.15 32bit on a Windows 2008 R2 64bit with Service Pack 1. I always used a 32bit Apache because [...] read more
We have Windows 2008 RS Server running IIS hosting an ASP.NET site. This morning there was a weird sequence. First a notice that the AppPool was being recycled due to inactivity: > "A worker process with process id of '6896' serving application pool 'xxxx' > was shutdown due to inactivity. [...] read more
I had a two Windows servers that sharing files SERVER1 (Windows 2008), SERVER2 (Windows2012). On one share I've got .exe file which is very simple application - simple.exe. It works great while it is placed on SERVER1 - I can run it directly from SERVER1, from Windows 7 workstation machine, [...] read more
we did an in-place upgrade of a windows 2003 server to windows 2008 server. After the upgrade, couple of windows services stopped working. The error i am getting in the event viewer looks like this: > Faulting application someservice.exe, version 0.0.0.0, time stamp 0x38f21f27, > faulting module ntdll.dll, version 6.0.6002.19346, [...] read more
I am trying to install the above but am getting the following errors when its attempting to install the setup support files, This is the first error that occurs during installation of the setup support files TITLE: Microsoft SQL Server 2008 R2 Setup ------------------------------ The following error has occurred: The [...] read more
In our project we are using MySQL 5.0.90(InnoDB engine) server with an external storage. We store MySQL data files in an external storage. When the external storage down for a reason we have unstable behaviours. So we made some tests. In Windows Server 2008 We closed external storage physically. MySQL [...] read more
I am using Apache 2.2 with PHP 5.3 and Microsoft SQL Server 2008 on Windows Server 2008 64-bit. Every 3 to 5 hours, I get the error in the event viewer that Apache crashed for 20 seconds and then resumed. The error is: > Faulting application httpd.exe, version 2.2.14.0, time [...] read more
On windows 2008/IIS a asp.net page with heavy processing gets called every hour. If that server is doing nothing else it's fine. If the server is handling other web requests at the same time we get this error occasionly: .NET Runtime version 2.0.50727.4016 - Fatal Execution Engine Error (000007FEF630A5C6) (80131506) [...] read more
Ableton Live 10 is crashing often. I am opening the crash reports and opening the .dmp files in WinDBG. There are recurring themes: So I was seeing a memory access violation due to a VST drum plug-in. I uninstalled the plug-in and deleted the .dll files. Things got better, but [...] read more
This morning I updated Windows 10 Pro (64-bit) to build number 19041.388. But since the update, Outlook has been refusing to start up. All the other Office applications work without error. Only Outlook is behaving problematically. It crashes almost immediately with the following message in Event Viewer: Faulting application name: [...] read more
I started up my PC/Windows 7 64-bit tonight and since then Microsoft Security Essentials (MSE) seems to keep crashing. I uninstalled MSE then re-installed it, but still the same issue. Each time MSE stops/crashes I try to restart it, but still crashes. Here are some of the logs from the [...] read more
Following up the story Moving windows from HDD to SSD (Dualboot Windows 10 + Ubuntu 16) , I tried to install a fresh copy of Windows 10 to my SSD drive. I took 100gb space from Ubuntu and formatted into NTFS. When I tried to install Windows 10 on it, [...] read more
Good afternoon So when my laptop starts up I get this error box several times: "The application was unable to start correctly (0xc0000005). Click OK to close the application." I get the same error whenever I try to open a program, like Chrome, Opera, Skype, antivirus programs. Internet Explorer opens, [...] read more
Windows 10 Home / "x64-based PC" / Dell XPS 13 9360 In Reliability Monitor, I have many "app failures" every day. They go back all the way to 2017-12-04 without variation (the details below are identical), when I believe this machine was first used. The problem is marked as having [...] read more
My default page in MS Edge is Google. When I load Edge, I can see the google URL in the address bar, then it changes to this > ms-appx-web:///assets/errorpages/acr_error.htm#http://www.google.co.uk/ and then Edge disappears. It's clearly crashed but I don't see any warning or message. Even if after Edge opens I [...] read more
We are having an issue at the office I work. One of our users who has a workflow which consists mostly of Excel documents with dynamic formatting and macros which she uses to print building permits from. These documents were originally made in 2003 and when we made the switch [...] read more
On boot into Windows 7 I get a good login but no explorer.exe is started. Hence, no desktop, no GUI generally. I can start task manager with Ctrl+Alt+Del and run programs from there, including cmd.exe, msconfig, even Firefox. So I have a semi-working system. Starting explorer.exe manually results in immediate [...] read more
There is a Dell XPS 400 with Windows Media Center installer. It is installed on RAID (Intel Matrix Storage) which is built-in chipset south bridge. Raid has two 150 Gb WDC drivers connected as mirror. All drivers and updates are installed( sp3 and so on). A week ago PC changed [...] read more
I often get BSOD on my notebook Dell Vostro 3550 with OS Win 8 x64. I tried analyze memory.dmp and minidump with Debugging Tools Windows (http://weblogs.asp.net/owscott/archive/2012/07/18/reading-a-memory-dmp-or-other-dmp-file.aspx) but I couldn’t find root of my problem. After analyze minidump I found this: EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - The instruction at 0x%08lx referenced memory [...] read more
This morning when I got to my Windows 10 PC, I had the banner overlay requesting me to restart because an upgrade needs to be completed. It appears this was the patch to build 10586.17. I shut down my running VM, named 'mercury' and restarted the Windows machine to apply [...] read more
we are 4 developers (not professional server administrators) and running 2 servers with IIS 8.5 (Windows server 2012 R2) and ASP.NET 4. Multiple times per day we get this exception in the windows event log: Application: w3wp.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. [...] read more
When running Apache 2.4.37.0 (with PHP) on a German Windows 10, it runs successfully when having a file path to the httpd.exe without German umlauts (ä, ö, ü). As soon as having a path component with German umlauts, Apache immediately exists with exit code 0xc0000005. The event log has an [...] read more
I've been trying to troubleshoot an error message on our Server 2008 RDS farm for about 3 weeks now and I'm getting nowhere. Randomly Outlook 2016 crashes and freezes. Sometimes it recovers and the user can carry on with their work and other times it bombs and completely throws the [...] read more
I have: windows Server 2003 - IIS 7.0 - PHP 5.2 Now I tried to install cURL. I get the php_curl.dll in the php.ini and have the right extension path. I also added the both needed dll-files to the system32 directory. Poorly as soon as I activate the extension=php_curl.dll line, [...] read more
So here is an interesting problem. Over the past few days we have been migrating from an unreliable DC runnign server 2008 to a new DC running server 2016. We have moved ADDS, certificate services, DNS, DCHP although we ran into some bumps in the road it is all done [...] read more
I noticed that an Azure AD Connect Password sync was giving Warning: no recent synchronization, which was clearly caused by misconfiguration: password synchronization was indeed disabled. Trying to modify settings however failed, Connect to Azure AD claiming that the account wasn't an administrator. > Please provide administrator credentials for contoso.onmicrosoft.com [...] read more
I'm having a lot of problem here trying to start the development of a new website. We have an external host running on Windows (our client already have a website on the root - we end up not having control over the server environment). I installed Wordpress through FTP and [...] read more
I just started using a new HP laptop with Windows 8.1 using the same domain account I've used for years. I can remote desktop to any server / VM on the local network, however when I disconnect the session from my laptop (close the window) the RDP client crashes with [...] read more
In brief: I cannot Remote desktop a particular server - say "X" from "A" server, but with MSTSC /ADMIN switch I was able to RD "X" server. But the same "X" server can be RD'd from "B" server even without ADMIN Switch. All servers are 2012 R2 DataCenter I am [...] read more
I did a fresh installation of a SQL Server Standard 2016 on Microsoft Windows Server 2016. During the installation and manually starting the database engine service i get the following error: Windows could not start the SQL Server (MSSQLSERVER) service on Local Computer Error 1053: The service did not respond [...] read more
I need some help with my Windbg output on our Win Server 2008 R2 Standard installation. It is our mission critical production server and it crashes every 2 months or so. It's done it a couple of times already. Logs say it might be a driver, but which? who crashed [...] read more
I am following this article I installed all, but after I am running the test I am getting this error : HTTP Error 500.0 - Internal Server Error C:\php\php-cgi.exe - The FastCGI process exited unexpectedly Detailed Error Information Module FastCgiModule Notification ExecuteRequestHandler Handler PHP Error Code 0xc0000005 Requested URL http:// [...] read more
We've moved from a 6 year old server to a brand new dual hex core windows server expecting to see marked improvements with page load times - we are not seeing the page load times we had expected. I suspect there are some server tweaks we may need to make [...] read more
I have a standard PHP5.3 install under w2k8r2/IIS7.5 (with and without WinCache as I've tried both options). The events happens as follows: 1) I get an error on the Application event log that says: Faulting application name: php-cgi.exe, version: 5.3.6.0, time stamp: 0x4d81eb28 Faulting module name: kernel32.dll, version: 6.1.7601.17514, time [...] read more
My Windows server 2003 standard has lately same problems with stability and one in two weeks it stops with BSOD and restarts. I really dont know wheres the problem. RAID seems to be ok. Please help how to diagnose the problem and how to prevent it Thank you Here is [...] read more
I'm trying to get php_mysql to work. I'm on a windows 7 box, with php When I have ;extension=php_mysql.dll commented out like that, apache works, php works, and of course mysql in the background is working, but I cannot use mysql with php. (My objective is to install a phpBB3 [...] read more
I have just restarted my dev machine, and now MySQL refuses to start up. When I start the service, it instantly throws an exception and dies... I can't think of anything I could've changed before restarting that could've affected MySQL in any way... This is MySQL Server 5.1 running on [...] read more
I'm having strange issue with my current AD CA server, when I try to generate a certificate by using the url https://localhost/certsrv/certrqma.asp I got the following error eventhough I did the following steps: 1. Login to the server using DOMAIN\Administrator credentials 2. Turn Off DEP by using the following command: [...] read more
On a virtualized (ESXi 4.1) Windows Server 2008 SP2 32-bit machine which is used as a terminal server, I occasionally (approximately 1-3 event log entries a day) see applications fail with an 0xc0000005 error - apparently a memory access violation. The problem seems quite random and only badly reproducable - [...] read more
We just setup new Windows machine as a web server, with Apache 2.2.19 with openssl installed and we want to move our existing web including the SSL certificate (Verisign) from the old setup, Linux, Apache 2.2.3. Now, if I search online, all I can find is to copy and paste [...] read more
We are running some asp.net(3.5) applications on the Windows2008 r2, IIS7.5. Recently we got some event logs so difficult, we have not idea hope some guys can help. 1.EventID: 1334 (9-1-2011 8:41:57) Error message An error occurred during a process host idle check. Exception: System.AccessViolationException Message: Attempted to read or [...] read more
Apache 2.2.16.0 Windows 2008 64bits mod_dav_svn dated from 2010-06-30 libapr-1.dll version 1.4.2 -------------------------------------------------------------------------------- The whole is configured for months and working perfectly. Commits/Updates/Checkouts/Other everyday uses are working perfectly. Today, a user tried to do a Lock on a file. Apache is crashing. Here's the entries from the Event log Error [...] read more
Microsoft Visual Studio 2019 shows a "Server Busy" dialog every time I open a dialog. A Procmon search for devenv.exe finds at least 100 NO SUCH FILE entries for the following file: C:\Users\jlavallet\AppData\Local\Microsoft\VSApplicationInsights\vstelf144292e-e3b2-4011-ac90-20e5c03fbce5\*.trn FileInformationClass: FileBothDirectoryInformation Filter: *.trn Procman results [https://i.stack.imgur.com/A2xaK.png] I performed the search because I was following @Blaise's advice [...] read more
I want to call the function from a python file from the visual studio 2019. By googling, it looks like I need to use the following function. I added a "Sample.py" in the same place where the exe is stored for the c++ . int main() { Py_Initialize(); // Create [...] read more
BUILDING NODE-API LINKED NATIVE ADDON I am out of thoughts on the cause of the problem after 3 days of investigating and researching. Basically I am loading a hello world Node JS addon compiled with MinGW64 and linked against C node-api. The code is as follows: // hello.c #include <node/node_api.h> [...] read more
I am using a simple C++ console app to communicate with a PostgreSQL 13 database. To do so, I use the libpqxx 7.3.1, and get some trouble when trying to connect to the database. Here is my code : #include <iostream> #include <pqxx/pqxx> int main() { try { pqxx::connection c{ [...] read more
I have an MFC app containing a C++/CLI project that calls MFC::CWinFormsControl<MyWidget>::CreateManagedControl() to create a control written in C#. This worked fine under .Net Framework 4.6.1, but now I have upgraded the C++/CLI and C# projects to .Net 5 it causes an access violation: Exception thrown at 0x00007FFC81A3F528 (clr.dll) in [...] read more
I am new to C programming, I am trying to run a code snippet that create a dynamic array of struct object and then uses scanf to save values. When I run the code in code blocks it works just fine but throws memory access exceptions in Visual studio 2019 [...] read more
I have the following opengl code to bind a created buffer and fill it with some data. #include <glad/glad.h> #include <GLFW/glfw3.h> #include <glm/glm.hpp> #include <array> #include <iostream> template <size_t max_lights = 100> class SceneLights { private: struct Light { glm::vec4 position; glm::vec4 color; }; std::array<Light, max_lights> lights; public: SceneLights() { [...] read more
Why QApp constructor fails with WinMain parameters? int CALLBACK WinMain(HINSTANCE, HINSTANCE, LPTSTR _lpCmdLine, int _nShowCmd) { QApplication app(_nShowCmd, & _lpCmdLine); And here it fail with exception: Exception at adress 0x0F3621DC (Qt5Guid.dll) in updater_app.exe: 0xC0000005 Whats wrong? how to fix it? UPD: And it works in such way: int CALLBACK WinMain(HINSTANCE, [...] read more
I have been trying to create an OpenGL window making use of GLAD and GLFW, following the instructions found at learnopengl.com and glfw.org. At first glance according to the documentation, this is enough to get a window working: #include <iostream> #include <glad/glad.h> #include <GLFW/glfw3.h> using namespace std; // framebuffer size [...] read more
My program reports the error when the program executes to StartServiceCtrlDispatcher(). The error: Exception thrown at 0x74BFFF70 (sechost.dll) in ConsoleApplication33.exe: 0xC0000005: Access violation reading location 0xCCCCCCCC. I tried many ways but failed. Where did i write wrong. Please let me know. Thank you in advance. The code is below: #include [...] read more
I am trying to add a third-party .NET Framework 3.5 DLL with a WinForms control to my unmanaged Visual C++ MFC application. Therefore, I have built a C# com-interop-wrapper DLL, which is registered as an ActiveX control. It is working well, but exiting the MFC container application leads to an [...] read more
When I start Cassandra 3.11.6 using cassandra -f from cmd, I get error # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000010014ed4, pid=29376, tid=0x0000000000007aa4 # # JRE version: Java(TM) SE Runtime Environment (8.0_281-b09) (build 1.8.0_281-b09) # Java VM: Java HotSpot(TM) [...] read more
I faced this problem with manual decompression following this guide. Tried steps below: 1. Find and pause the job related to compression policy. SELECT alter_job(job_id => ( SELECT s.job_id FROM timescaledb_information.jobs j INNER JOIN timescaledb_information.job_stats s ON j.job_id = s.job_id WHERE j.proc_name = 'policy_compression' AND s.hypertable_name = 'sensorsdata' ), scheduled [...] read more
When I enter different numbers in "studentNumber" and "testNumber" variables, the code closes at a specific place. No matter what value I give to the variables, the code stands in the second exam part of the 1st student. Code terminates with this error "Process returned -1073741819 (0xC0000005) execution time: 11.105 [...] read more
I try to integrate the latest version of CryptoPP into UE4 and follow the example in the Wiki, but an error occurred on line 226 https://www.cryptopp.com/wiki/CFB_Mode 222 CFB_Mode< AES >::Encryption e; 223 e.SetKeyWithIV(key_byte, sizeof(key_byte), iv_byte); 224 225 StringSource ss(plain, true, 226 new StreamTransformationFilter(e, 227 new StringSink(cipher), BlockPaddingSchemeDef::DEFAULT_PADDING 228 ) 229 [...] read more
I'm trying to connect c-TreeSQL using Python. I know I have the correct driver because I can connect using George Poulose's Query Tool I have tried these variations and each one has crashed; import pyodbc ## Instructions from http://doc.4d.com/4Dv17/4D/17/Using-a-connection-string.200-3786162.en.html # conn = pyodbc.connect('Driver={c-treeACE ODBC Driver};Host=<Host from driver config>;UID=<User name>;PWD=<Password>;DATABASE=liveSQL;') # [...] read more
I am here because I am encountering a outmost obscure problem. Right when I begin by creating my model I encounter that my gpu usage spikes and then my python code crashes. This only happens when I try to use any of the models 'from_pretrained' only, I haven't had issues [...] read more
I'm using the latest version of VirtualBox 6.0.4 r128413 (Qt5.6.2) trunning on x64 Windows 10. Had been running a Windows XP guest for this morning, then shut it down. After an unrelated update to a Visual Studio installation, the VM now will not start with the following error: Failed to [...] read more
I have cygwin installed on Windows 10 and am seeing that I cannot SSH to any of my servers. When trying to ssh, I just see ➜ ~ ssh -vv me@myserver OpenSSH_8.4p1, OpenSSL 1.1.1f 31 Mar 2020 and it just hangs from there. Running the command with strace shows... ➜ [...] read more
Recently a lot of Windows features stopped working on my Surface Pro (2017) with Windows 10 Pro. E.g. can't open start menu, Edge, system settings. On top of that, WiFi network adapter stopped working - so using ethernet connection via Surface Dock. The following errors pop up in EventViewer when [...] read more
Since recently, when doing a "Save as" in the following Microsoft Office 2013 applications, they crash: * Word 2013 * Excel 2013 * PowerPoint 2013 The crash immediately quits the application with the usual dialog box (in German): enter image description here [https://i.stack.imgur.com/GCq7b.png] When looking at the Windows Event Log, [...] read more
I have this weird problem that almost every .NET application crashes, including .NET Core 3.0. (2.2 runs fine) Noticed this first with Visual Studio Installer and Visual Studio. ServiceHub is almost constantly crashing. Several error logs are being reported in the event viewer about .NET Runtime. In some cases, there [...] read more
I get the same error when trying to launch Spyder using Anaconda 3.7. Here is the error: Log Name: Application Source: Application Error Date: 9/12/2019 10:10:50 AM Event ID: 1000 Task Category: (100) Level: Error Keywords: Classic User: N/A Computer: Dave-PC Description: Faulting application name: python.exe, version: 3.7.3150.1013, time stamp: [...] read more
Since about a month I have the problem that a game (Grand Theft Auto V) is crashing all the time. Sometimes the complete PC freezes too so that it displays the old image e.g. a few minutes ago (completely unresponsive, only restarting the PC helps). The time is not predictable, [...] read more
I am using Windows 10. It was upgraded from Windows 8. I recently did a PC reset and also did a reinstall of all drivers; however I am still experiencing crashes when running applications, especially games. I tried this with multiple games that crash the PC and always got the [...] read more
Recently, I started getting BSODs a few times a week. I have a hunch that they are related to the display driver/docking station (I'm using IBM T480) because they seem to happen around the time I connect/disconnect to the docking station and more importantly, I don't actually see the BSOD, [...] read more
So, I have been trying to get a Windows 7 and 8 designed app to work in Windows 10, but it seemed like there was no way. Up until today, that was, when I upgraded a PC with Windows 8 to Windows 10: that app was installed on the machine [...] read more
I have an issue after installing a language pack for office now outlook doesn't start after I made the new language the default language:" Faulting application name: OUTLOOK.EXE, version: 16.0.4351.1000, time stamp: 0x56ba05a5 Faulting module name: OUTLOOK.EXE, version: 16.0.4351.1000, time stamp: 0x56ba05a5 Exception code: 0xc0000005 Fault offset: 0x000260ab Faulting process [...] read more
I have in front of me an Acer V5 171, it is running a clean install of Windows 7 X64 SP1 will all current hotfixes and updates, with the latest drivers from Acer the version of bcmwl664.sys is 5.100.196.18 If I connect to a BT "Home Hub 2" (Speedtouch with [...] read more
Cisco AnyConnect Secure Mobility Agent was working until yesterday, then it suddenly stopped. I have not installed/updated any software on my PC in the past week. When I start the Cisco AnyConnect client, I get the messages: > VPN Service not available. > > The VPN agent service is not [...] read more
In Windows 10 the Blue Screen of Death: enter image description here [https://i.stack.imgur.com/P9QhC.png] hides the parameters of the kernel panic: enter image description here [https://i.stack.imgur.com/3n6sj.png] Ideally you would tell the user to write them down, or take a picture: (0xC0000005, 0x8A9A8020, 0x8B39AEC4, 0x8B39ABC0) And then i'd know: * The exception [...] read more
One of the ExpressKeys on my Wacom Bamboo Capture graphics tablet is mapped to Bamboo Preferences, so that I can quickly access the tablet settings and view the battery level (I have the Wireless Accessory Kit installed). However, when I connect the tablet to the computer, in wired or wireless [...] read more
So at the company I work in, we have had this Blue Screen (SYSTEM_SERVICE EXCEPTION) show up with the file win32kfull.sys mentioned below that code. I have the crash dump, which says CPU_VENDOR: GenuineIntel CPU_FAMILY: 6 CPU_MODEL: 9e CPU_STEPPING: 9 CPU_MICROCODE: 6,9e,9,0 (F,M,S,R) SIG: 5E'00000000 (cache) 5E'00000000 (init) DEFAULT_BUCKET_ID: WIN8_DRIVER_FAULT [...] read more
Internet Explorer 11 (64 bit on Windows 7) has been giving me problems for a while, dying when I push the Favorites button. Unfortunately, one time it didn't die, and the next time I ran it, IE remembered that my Favorites (star) button was pushed to show the favorites/history pane [...] read more
Since upgrading to Windows 10, the remote desktop client has been intermittently failing with “Remote Desktop Connection has stopped working.” Again it’s intermittent, and sometimes when I re-open and attempt to reconnect it goes through fine. It’s quite annoying. The following are in the application logs in event viewer. I [...] read more
Excel 2016 is crashing on at least 3 computers when the user has a file open on the network. There are several of these events on all affected computers: Faulting application name: EXCEL.EXE, version: 16.0.7167.2060, time stamp: 0x57cdbe01 Faulting module name: EXCEL.EXE, version: 16.0.7167.2060, time stamp: 0x57cdbe01 Exception code: 0xc0000005 [...] read more
After installing new Creators Update, I've got issues with my Network settings. When I open Settings app, then click on Network & Internet and choose any tab, app just crashes. Only a few tabs are working (such as Proxy, Data Usage, Airplane mode and Status). Every other tab crashes the [...] read more
Every time I try to install a printer on this one PC, the Spooler crashes and the installation fails. PC is brand new. Through troubleshooting, I found out that anytime I try to do anything with the printers, the spooler fails, like trying to delete drivers. When the spooler crashes, [...] read more
I'm running a Windows 10 Enterprise build 1607 guest on my Windows 10 Pro build 1607 host machine. I'm not doing it for any useful purpose; just so I can mess around with some Windows settings without doing harm to my host machine. However, if I use Enhanced Session Mode, [...] read more
Google Chrome crashes often on my system. Sometimes it says "Cannot set allocations" and other times it shows "The instruction at 0x0000000067CB1514 referenced memory at 0x00000000E9E44D9B. The memory could not be read." I noticed this usually happens when opening up to YouTube or Facebook. But it can happen other times [...] read more
I've recently updated to the new insider preview, but I don't know if this is related. Anyways, when I right click anywhere (on the desktop, inside of a folder) and click on any of the context menu options I have (namely, "Git Bash Here" or "Open with Atom") file explorer [...] read more
I have a problem with my ASUS laptop (Windows 7 x64 Home Premium), where whenever I try to start any program (cmd.exe, explorer.exe, and various tools in control panel still work, but any 3rd party .exe files, iexplore.exe, MS Office apps - don't) - it crashes instantly with the following [...] read more
I recently bought the latest and "best" Dell XPS 15 with preinstalled Windows 8.1. In the two weeks I am using it now, there have been a lot of application crashes, unexpected system shutdowns and also some BSODs. * In Chrome some websites crash frequently * A lot of java [...] read more
I have a Lenovo Z470 notebook with these specs: * Windows 10 64-bit Version 1511 (OS Build 10586.164) * Intel Core i5-2450M @ 2.50GHz (Sandy Bridge) * 2047MB NVIDIA GeForce GT 630M with Optimus Technology * 8GB RAM * 465GB Seagate ST9500325AS (SATA) * Hard disk has C:\ and D:\ [...] read more
Windows 2016 server reboots randomly, about once a week. Any ideas? here is the memory dump log Bugcheck Analysis * * * ******************************************************************************* SYSTEM_THREAD_EXCEPTION_NOT_HANDLED (7e) This is a very common bugcheck. Usually the exception address pinpoints the driver/function that caused the problem. Always note this address as well as the [...] read more
We are facing the same error on two different Windows Server 2019 of two different customers with Azure Backup installed and only File Backup is made with it. The problem exists since at least two or three releases of Azure Backup Agent and both Servers still facing the problem on [...] read more
I have below 2 errors showing up in event logs every 30 minutes. Please help me to figure out the root cause. Error1: Application: wmiprvse.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info: System.AccessViolationException at Microsoft.Management.Infrastructure.Native.ClassHandle.ReleaseHandle() at System.Runtime.InteropServices.SafeHandle.InternalFinalize() at System.Runtime.InteropServices.SafeHandle.Finalize() Followed by error2: [...] read more
Initially it was because of a corrupt database file so as I'm not fussed about missing the emails, I removed the files in the data\queue folder. When I try to restart the edge transport service, it re-creates the mail.que file (and some log files) but still fails to start. The [...] read more
Our company had a new Windows App developed to use to connect to a SQL database. When the app is run outside of the domain environment, it works perfectly. When the computer running it is attached to the domain, the app immediately crashes. I've found a couple of errors that [...] read more
Windows Server 2008 R2 Datacenter Edition 64 bit Using AWS EC2 m1.xlarge instance 15GB RAM , 4 vCPUs Intel Xeon Problem: crashing every 10 secs / every minute / sometimes 1 hour / randomly -------------------------------------------------------------------------------- WINNT MPM Setting: # WinNT MPM # ThreadsPerChild: constant number of worker threads in the [...] read more
I'm using Outlook 2013 as client with a gmail account. The OS is Windows 10. I received some emails which I cannot open from Outlook (although from Gmail have no problems). The message which I get when I double click the email is this: > Sorry, we're having trouble opening [...] read more
We have Windows Server 2012 R2, Apache 2.2.31 and Php 5.6.18, Zend Server Version: 8.5.3 Apache seems to be hanging more and more frequently, a restart of apache seems to fix the problem most times. There are a quite a few php-cgi's open when we look at the the process [...] read more
I am trying to get Apache version 1.3.22 to run as a service on windows 2008 server. If i start Apache.exe from the command prompt, it works fine. But when i add i start it as windows service, it throws me an error. This is how i am adding it [...] read more
Today we got some DB crash. The DB is InnoDB. At firstin log: 120404 10:57:40 InnoDB: ERROR: the age of the last checkpoint is 9433732, InnoDB: which exceeds the log group capacity 9433498. InnoDB: If you are using big BLOB or TEXT rows, you must set the InnoDB: combined size [...] read more
There is a remote desktop server (also file server) that works just fine for almost exactly 14 days give or take a day or two. Then, it just locks everyone out with "access denied". It can be resolved by restarting the server. The "access denied" not only applies to RD [...] read more
I'm looking to reinstall Apache 2.2.25 since I continue to get these errors in the Windows Application log every 2-5 minutes: Faulting application name: httpd.exe, version: 2.2.25.0, time stamp: 0x51dd049c Faulting module name: zlib1.dll, version: 1.2.3.0, time stamp: 0x4790446a Exception code: 0xc0000005 Fault offset: 0x00002bad Faulting process id: 0x38e8 Faulting [...] read more
I'm experiencing several crashes in the last days on our production server and I can't figure out how to fix this issue. The server hosts an ecommerce application, written in classic ASP, that runs under IIS 7.5 + MSSQL. Approximately one time a day, since Monday, the w3wp.exe process crashes [...] read more
Small business server 2011 standard - applications randomly closing for remote desktop users I have an issue where when you are connected through remote desktop (doesn't matter whether you have administrative rights or not). What happens: Any application that you run (outlook, word, excel, notepad, cmd etc..) the application will [...] read more
I'm unable to determine what is causing a Lenovo Tablet 2 equipped with Win 8 Pro / Office 2013 not to be able to connect to our exchange server 2010 SP2 RU4. The weird part is that it only happens once I've joined the Tablet to the SBS domain & [...] read more
I have a Jira install running on Windows using MySQL database hosted on the same instance. We're having an issue where the MySQL service keeps crashing (after a few page requests). We've been running in this same configuration without issue for months. This is a recent problem. The error I [...] read more
I'm facing problem with printer spooler on Windows 2008 R2. After user logon via RDP with printer redirection, process spoolsv.exe crashes with error: Faulting application name: spoolsv.exe, version: 6.1.7601.17514, time stamp: 0x4ce7b4e7 Faulting module name: localspl.dll, version: 6.1.7601.17514, time stamp: 0x4ce7c718 Exception code: 0xc0000005 Fault offset: 0x0000000000062edf Faulting process id: [...] read more
On a new install of Windows Server 2008, I attempting to use ssh to connect to another host. I have installed putty/openssh. This works without a problem when trying a command such as: ssh 192.168.0.2 However, this will crash when trying something like: ssh testserver with the error as follows [...] read more
I am working with jboss AS6 also developed some services using jbossws, when multiple user request for services , i am getting error as follows A fatal error has been detected by the Java Runtime Environment How to detect root and cause of this error , is that with kind [...] read more
I was following the steps in Scott Hanselman's blog post describing how to create a certificate authority and code signing certificate for PowerShell scripts. Initially, I created the certificate authority and a personal certifcate and used it to sign a powershell script successfully. All went as described in the blog [...] read more
We are running some asp.net(3.5) applications on the Windows2008 r2, IIS7.5. Recently we got some event logs so difficult, we have not idea hope some guys can help. 1.EventID: 1334 (9-1-2011 8:41:57) Error message An error occurred during a process host idle check. Exception: System.AccessViolationException Message: Attempted to read or [...] read more
A server (Windows Server 2008 R2) in our office got hard reset and now SQL Server (2008 R2) is not starting. The Event log shows this error: Faulting application name: sqlservr.exe, version: 2009.100.1746.0, time stamp: 0x4cabc0fc Faulting module name: sqlservr.exe, version: 2009.100.1746.0, time stamp: 0x4cabc0fc Exception code: 0xc0000005 Fault offset: [...] read more
Has anyone had any problems pushing out sp3 though active directories group policy. I have a had full of Dell Optiplex 740 PC running xp pro SP2 w/AMD Atholon 64 x2 4050e. Every time i push out sp3 after reboot i get a BSOD "STOP: 0x0000007E (0xC0000005, 0xF79ED8EB, 0xF79ED7F4, 0xF79ED4F0)". read more
Trying to connect Python to an OPC simulated server using OpenOPC. I am able to connect to the server, but when I try to read an item I get Process finished with exit code -1073741819 (0xC0000005). Could this be a problem with the installation of the OpenOPC package? I am [...] read more
I am moving to a new Azure VM and all of a sudden getting crashes and errors in crazy places I never have before. (The new VM is a switch from Windows Server 2016 to 2019 but that may be a complete red herring.) I've tracked down one spot where [...] read more
So, I'm a little newbie about c++ but I know some basics. So I have a tridimensional matrix p[11][4][4] whit full with hex values. So if I do somenthing like this: for (int i = 1; i <= 10; ++i) { somefunction1(something, p[i]); somefunction2(something, p[i]); } and the i is [...] read more
Hoping someone can explain this to me. I've uploaded the code here: https://github.com/jherman/golang-bug-0 The code it's panicking on has to do with the func getDevicePath. If I return an empty string, I get a panic, but if I turn the buffer pointer to a string, it returns fine. I also [...] read more
I am trying to write a basic http server in c++, and i need to fetch information from a local database. I'm using MySql c++ connector with the legacy API but on connection creation i receive this exception: Unhandled exception at 0x00007FFE69031416 (vcruntime140d.dll) in HTTP_SERVER.exe: 0xC0000005: Access violation reading location [...] read more
Always get the error code. I'm trying to reverse transverse the list and print. Is there something I'm missing in the creation of the list? I can print the list normal but just not reversed Any help would be appreciated struct stNode { char *pName; double avg; struct stNode *next; [...] read more
I am writing an extension (that is compiled as dynamic library), and I get extension error. Unfortunately, I have to draw entire GUI by myself, unfortunately, in pretty raw GDI/WinAPI. This is my code that crashes: Slider::Slider(const char* objectId, int height, POINT topLeft, int visibleElements, int totalElements, int elementHeight, EuroScopePlugIn::CRadarScreen* [...] read more
This will be a foolishness, but this code to change the Drive letter of the Wide-String throws me an Acces violation when writting the new value. (0xC0000005) wchar_t* disk2 = L"D"; wchar_t* wszDrive = L"\\\\.\\C:"; wszDrive[5] = *disk2; //here is the acces violation I'm using the lattest version of Visual [...] read more
I genuinely can't figure this out. When I run this program in the debugger, it all works until the final line, which contains return 0;. For some reason I can't figure out, it causes an exception in the Visual Studio debugger when going past a breakpoint I put on it. [...] read more
My vulkan application is throwing an error while trying to create graphics pipeline exeption- Exception thrown at 0x03FCCCB2 (nvoglv32.dll) in VulkanSandbox.exe: 0xC0000005: Access violation reading location 0x00000049. at line- vkCreateGraphicsPipelines(mainDevice.logicalDevice, VK_NULL_HANDLE, 1, &pipelineInfo, nullptr, &graphicsPipeline); validation layer says that pName has to be defined- VUID-VkPipelineShaderStageCreateInfo-pName-00707(ERROR / SPEC): msgNum: -1282697375 - [...] read more
People, i've tried to understand how to input and print the data to structure with terminal by scanf function...but it`s not working. I'm going to have my exam on c, and it is hard to understand for me. My code is bellow. When i run the code it cause some [...] read more
my code is working fine, but after 5-10 minutes, I get the following error; Managed Debugging Assistant 'FatalExecutionEngineError' : 'The runtime has encountered a fatal error. The address of the error was at 0x641ad419, on thread 0x5d0c. The error code is 0xc0000005. This error may be a bug in the [...] read more
I've been learning GStreamer to manage and forward streams from one RTMP server to another. I've hit a roadblock when trying to replicate the tutorial found here, albeit without the data buffer. Whenever I run the program, it stops when I set the rtmpsink URL. It doesn't throw an error [...] read more
I noticed some quite strange behavior when working with Qt 5.15/C++. I was working on a small application when I wanted to set a context property for my root context. My application is a QtQuick app which uses QQmlApplicationEngine instead of QQuickView (which was, for whatever reason, the default when [...] read more
My function is returning the following error when executing the program: Process returned -1073741819 (0xC0000005). Until the moment I assign the inputs to the variables, it works. However, when the program is going to assign the values of the variables to the pointers, the program stops. void Cadastrar(pessoas *p){ char [...] read more
I have been following a tutorial on making a 2d game in C++ when all of a sudden I got an error. It worked in the tutorial with all of the same code so it could be something wrong with my setup but I didn't think it would be. I [...] read more
1-testmex.exe is the name of our project and exception error was occurred for our project in line mexCallMATLAB(1, plhs, 1, prhs, "test_mex"); Sorry for duplicating name of our MEX file and the project. But, if we call any other MEX file, the exception error is still thrown. 2-If even lines [...] read more
I was doing a school project of making a program which uses insertion sort to sort the name of cities. While doing this, This error appeared and I can't find an appropriate answer or a solution to this problem. #include <stdio.h> #include <string.h> #define MAX_COUNT 10 void ISAscend(const char* astr_list[], [...] read more
I am building a project using mrpt. I am linking the windows binaries in a c++ project, visual studio 2015, 64 bit. When I run this code, to create a window: //.h #include <mrpt/opengl.h> #include <mrpt/opengl/CPointCloudColoured.h> #include <mrpt/gui.h> #include <mrpt/utils/CConfigFile.h> #include <mrpt/utils/CConfigFileBase.h> using namespace mrpt; using namespace mrpt::gui; using namespace [...] read more
As the title state python is crashing whenever I try to call sift.detectAndComputer() def compare_images(): cwd = os.getcwd() target = os.path.join(cwd, 'target.png') images_list = os.listdir('images') for image in images_list: # get my 2 images img1 = cv2.imread(os.path.join(cwd, 'images', image)) img2 = cv2.imread(target) # Initiate SIFT detector sift = cv2.SIFT() # [...] read more
The specific error is: "Error while watching: short read in readEvents()" this error is being output by the hugo server. The phenomena this causes is continuous local server "Change detected, rebuilding site". In trying to find a resolution (not to create a red-herring, but at least something I found), it [...] read more
Sqlite crashes on SqliteConnecion I have an application that uses Sqlite. I has been working perfectly for a couple of year. I'm using Nuget System.Data.SQLite.Core 1.0.113.7 I tried to run it and i get this exception. > System.AccessViolationException HResult=0x80004003 > Message=Attempted to read or write protected memory. This is often [...] read more
help please. how to install sigar api to java maven corretto program. i need it but i dont know how to install it. any tutorials on internet didnt work / they didnt showed how to do it. it sometimes worked but after compiling it showed error # # A fatal [...] read more
I built a C# WPF (.NET Core 3.1) application using that has got some interest and I'm about to monetize it. However, building any kind of license check in C# is pretty much useless, and any user would be able to use a decompiler such as ILSpy to crack it, [...] read more
I had a Xampp installation in my PC which I was using for some development purpose and due to some circumstances the data folder in mysql was copied and with new windows installation same xampp was reinstalled and data folder was copied back, but after this my mysql is not [...] read more
Code #include <glad.h> #include <glad.c> #include <GLFW/glfw3.h> int main() { glfwInit(); GLFWwindow* window = glfwCreateWindow(640, 480, "Hello World", NULL, NULL); while (!glfwWindowShouldClose(window)) { glClear(GL_COLOR_BUFFER_BIT); } return 0; } Background information My Operating System is the latest version of windows 10 I use visual studio v16.6.3 (latest) I am very new [...] read more
I am trying to make a desktop application with PyQt5 which utilizes the webcam. I saw a YouTube video in which the guy used threading to achieve that. I modified the code for my use case. The modified code is below: - import sys from PyQt5.QtWidgets import * from PyQt5.QtGui [...] read more
I am trying to compute the SVD of a large matrix (4799 x 53130) using Pycharm as my IDE. The following returns the exit code -1073741819 (0xC0000005), but no error message is displayed. I have looked up this error code on here and people have found a mixture of things [...] read more
I am trying to work on the project which is to connect MariaDB with C++ application. I referred to the URL: https://mariadb.com/docs/clients/connector-cpp/#installing-mariadb-connector-c-via-msi-windows. This URL is quite a good source to connect MariaDB with C++. However, it doesn't describe how to deal with the lib file and dll file. When I [...] read more
I used the following PowerShell command to create a Windows failover cluster on Windows server 2016, New-Cluster –Name MyCluster –Node 5011-a1ca9b8d.kc.com,8766-a1ca9b8d.kc.com –StaticAddress 10.177.12.14,10.111.36.100 -NoStorage And then I get this error: enter image description here [https://i.stack.imgur.com/JD1S7.png] I found this in the event viewer: New-Cluster System.AccessViolationException 应用程序: powershell.exe Framework 版本: v4.0.30319 说明: [...] read more
I am trying to compute the SVD of a large matrix (4799 x 53130) using Pycharm as my IDE. The following returns the exit code -1073741819 (0xC0000005), but no error message is displayed. I have looked up this error code on here and people have found a mixture of things [...] read more
Using polymorphism I have created a Sofa, Bed and Table class from an abstract class called Item. printDetails() is a virtual function in the Item class and it is redefined for the Sofa, Bed and Table classes. I have also created a class for dealing with vectors of Items called [...] read more
I am building a application with the backend done in python and the front end done in QML using PyQt5. When I run my application sometimes it runs with no problem but 80% of the time python crashes. When it crashed this message will be shown, Process finished with exit [...] read more
I am trying to install Visual Studio Community edition using the installer from the official site but when I download the installer and run it ,it opens and automatically closes within 2 secs. I am just not able to get my head around as to why it is not working. [...] read more
I have create a new .Net core 3.1 web api, that has no other dependencies except StackExchange.Redis. In StartUp.cs, I am setting up the connection as public static ConnectionMultiplexer redis; public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { redis = ConnectionMultiplexer.Connect("localhost"); ... and then later setting up a key as string [...] read more
I have an assignment for C and trying to solve it for hours and have not succeeded yet. So I need to read a text file and append its content to struct type array, text file => > 5 5 7 > > H 1 1 MILK White liquid produced [...] read more
The Emulator shows following error when you run it in Android Studio on Windows 10: 04-04-2021 14:45 AM Emulator: handleCpuAcceleration: feature check for hvf 14:45 AM Emulator: cannot add library vulkan-1.dll: failed 14:45 AM Emulator: cannot add library vulkan-1.dll: failed 14:45 AM Emulator: Process finished with exit code -1073741819 (0xC0000005) [...] read more
I'm trying to plot data from serial port in a tkinter gui. The plot should be plotted and updated only when a specific pack comes from serial. I can parse the new incoming data and update the GUI (text area). But when I call the "plot()" function from the "update_gui" [...] read more
Trying to follow the Microsoft Azure Spatial Anchors tutorial (even after it was recently updated) but the Release build of the project crashes on launch on the device (just after the Unity splash screen). Interestingly a Debug build of the same project seems to launch ok. I've been able to [...] read more
I'm trying to create a very simple dll and load it to another file for learning purpose. I'm using VC++ same version for both the DLL and the C++ file. Here is my source code: load.cpp: #include <iostream> #include <windows.h> using namespace std; typedef int(__stdcall* nsum)(int a, int b); int [...] read more
CONTEXT I'm currently implementing some form of A* algorithm. I decided to use boost's fibonacci heap as underlying priority queue. My Graph is being built while the algorithm runs. As Vertex object I'm using: class Vertex { public: Vertex(double, double); double distance = std::numeric_limits<double>::max(); double heuristic = 0; HeapData* fib; [...] read more
Using SDL 2.0.14 I wrote a basic main function creating an empty window and closing it upon a SDL_QUIT event. When run from the Visual Studio 2019 IDE I am using (x64 platform, both Debug and Release modes), the program works fine up to the point when the window is [...] read more
I have searched a lot for this error, on stack overflow and other websites but I cannot seem to find a solution to my problem. Basically, I have a program that is in python, and I am using python's module rpy2 for communicating with some R functions, from python. The [...] read more
I am in the process of trying to upgrade a VC++ 6.0 project to the latest version and am running into an issue. The program starts up fine but in the process of creating two child windows within the main view it crashes with an access violation. When run in [...] read more
Unhandled exception in 0x7B372F75 (ig9icd32.dll) in forespend.exe: 0xC0000005: access violation writing to location 0x07E00000. i have tried to run glClear(GL_COLOR_BUFFER_BIT); but it returned me this error, my program kept running and working, but seems that it wont work properly due to this error. the glClear is working with other tags [...] read more
I wrote this simple user struct: typedef struct { char login[20]; char password; int privArm; int privNav; int privCom; }User; On main, i want to create multiple users using pointers (i want to send them to other functions later), so for that i wrote this malloc: User *newUsrPtr; newUsrPtr = [...] read more
I have a Windows Service that I am trying to upgrade to use dependency injection and Serilog. This is not a .net core windows service. This is the older style with ServiceBase Below is my setup code for the logger. public static IServiceProvider ConfigureServices() { var services = new ServiceCollection(); [...] read more
I have a UWP application with a desktop extension. The application is now crashing intermittently with the following message in Visual Studios output: The program '[28160] Desktop_Extension.exe' has exited with code 0 (0x0). The program '[2032] My_UWP_Application.exe' has exited with code -1073741819 (0xc0000005) 'Access violation'. It seems the problem is [...] read more
Header #include <iostream> #define GLFW_INCLUDE_VULKAN #include "GLFW\glfw3.h" #include "PhysicalDeviceVK.h" #define CATCH(value) if(value != VK_SUCCESS){ __debugbreak;} class DeviceVK { private: /** * @return VkPhysicalDevice Get the best physical device. */ VkPhysicalDevice getPhysicalDevice(VkInstance instance); /** * @return uint32_t Get the index of the best queue family. */ uint32_t getQueueFamily(std::vector<VkQueueFamilyProperties> queueFamilies); /** * [...] read more
I'm trying to create an event queue in Allegro using ALLEGRO_EVENT_QUEUE but I get an error of infringement for trying to read a location 0x0000. This is the error message (it's in Spanish): Excepción no controlada en 0x7BE755AF (allegro-5.0.10-monolith-md.dll) en Geometry World.exe: 0xC0000005: Infracción de acceso al leer la ubicación [...] read more
I am trying to call an Oracle 19c stored procedure from Excel VBA. I should preface by saying that I can query data without issue. When the command is executed, Excel crashes. Below is my code followed by the entry in the Event View. Dim Oracon As ADODB.Connection Dim cmd [...] read more
I'm trying to open an AI file that opened last week but won't open anymore. It was saved as an AI file with CS6 compatibility. It will open in Adobe reader but I can't just resave it and open the new file in Illustrator because it has some Map Layers [...] read more
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
I have a laptop that seems to have lost permission to create, update or delete files. It doesn't happen for every file, however. Microsoft Office will not save any new files. Some other non-Microsoft programs can't save files either. For example, programs that have an auto-save feature throw errors about [...] read more
Yesterday I encountered a problem regarding chrome. Whenever I click a link in an external application, obviously Windows tries to open it with the default browser. However, I am getting the following error after clicking the link with Chrome set to the default browser: > chrome.exe - Application Error: The [...] read more
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
I have installed VB on a new machine running Windows 10 Pro 1803 (build 17134.556) and running any machine instance always fails with this error: The virtual machine 'linux' has terminated unexpectedly during startup with exit code -1073741819 (0xc0000005). More details may be available in 'C:\Users\osama.shabrez\VirtualBox VMs\linux\Logs\VBoxHardening.log'. Result Code: E_FAIL [...] read more
I turned my computer off to go on vacation, and came back to find that, on reboot, it would not start correctly. When I try to login, I get a blinking strobe light effect, and the start menu never shows up. Event log showed that explorer.exe crashed in a loop. [...] read more
After creating a Linux bootable USB, I noticed that at start up I got an error message from avastui.exe The application was unable to start correctly (0xc0000005) Click Ok to close the application. The creation of the bootable USB might have had nothing to do with it and was probably [...] read more
After creating a Linux bootable USB, I noticed that at start up I got an error message from avastui.exe "The application was unable to start correctly (0xc0000005) Click Ok to close the application." so I reinstalled it. Then I tried to install mirc but I got an error message that [...] read more
On a Windows server 2016 we recently installed, whenever ANY user goes to Settings -> Accounts, it starts loading and crashes. The event log shows an error every time (see below). All users are local and the system is not in a domain. We have tried several things to resolve [...] read more
Hi I am trying to upgrade to the latest Windows build to be able to get the Windows terminal and because the Windows Update tool is telling me that updates will stop for my current build. However when I am using the upgrade tool to upgrade, I am getting an [...] read more
I'm trying to take system backup on Windows 8.1 Pro (EFI system partition + C:\ drive). It works perfectly well via Control panel however such command in command prompt fails: wbadmin start backup -backupTarget:F: -allCritical -vssFull -quiet wbadmin 1.0 - Backup command-line tool (C) Copyright 2013 Microsoft Corporation. All rights [...] read more
I have a problem with my PC being unable to shutdown or restart after prolonged usage. I enabled verbose mode during boot / shutdown / restart and I can see the system looping very fast through shutdown messages and then after the ffinal message "Stopping Services", it gets stuck on [...] read more
Explorer.exe crashes every time I do this: 1. Click Start 2. Click Run 3. Type C:\ and hit Enter The problem just started today, and I need help tracking down the cause. SYMPTOMS It only happens when I target a root directory in step #3, e.g. C:\, D:\, etc. If [...] read more
0 I am using Anaconda and python crashes during startup. I have re-installed Anaconda. Tried 3.6 and 3.7 both. I updated conda using anaconda prompt. I upgraded all the libraries. Crash Log: Faulting application name: python.exe, version: 3.6.5150.1013, time stamp: 0x5abd3210 Faulting module name: DbgHelp.dll_unloaded, version: 10.0.16299.15, time stamp: 0x38fe792a [...] read more
I have been getting the BSOD regularly on the ThinkPad p52. The details are shown below. Can someone kindly help me deal with this issue ? enter image description here [https://i.stack.imgur.com/FMP9r.png] I have ran the tests from the Lenovo solution center and there was no errors. enter image description here [...] read more
MS Outlook 2013 automatically closes and restarts continuously. When I checked the Event Viewer, I found the below mentioned error. Kindly check and provide the solution for the same. Faulting application name: OUTLOOK.EXE, version: 15.0.4420.1017, time stamp: 0x506742d6 Faulting module name: outlph.dll, version: 15.0.4997.1000, time stamp: 0x5a2f8819 Exception code: 0xc0000005 [...] read more
The latest Windows 10 feature update has somehow corrupted my Office Home and Business 2013 installation. I cannot run any of the applications. I get the flashy popup from Office, stating that "Something went wrong" and suggesting going to Apps & Features to use the Repair option. Using Apps & [...] read more
After upgrading to Windows 10 v1709, I have been getting errors regarding Windows programs. Windows Explorer, Microsoft Management Console, and Snipping Tool have all had "stopped responding" issues. Here are the 2 logged errors I get from the Snipping Tool crash: 1st error (.NET Runtime): Application: SnippingTool.exe Framework Version: v4.0.30319 [...] read more
I have a program that detects that I am running procmon.exe and after searching a lot I found this solution: > > The Device Name of PM is 'PROCMON10' You can see it if you run the Device > > Manager from the console (cmd.exe) like this set > > [...] read more
My issue is very similar to the one asked in that question: Windows Service SearchIndexer.exe Crashes on Indexing , however the asker there seems to have abandoned it, hence the repost by me. Basically, when I check windows error report, I see Windows Indexing crash every 5 minutes. I'm also [...] read more
I can't manage to install window 10 here is what happened in order. First I tried to put my window 10 disk content on an USB key using this tutorial : Install Windows from a USB Flash Drive | Microsoft Docs I then tried to install it but it failed [...] read more
The .NET Framework installer crashes (or at least the following failed message pops up) before even starting to install. On a windows 7 machine without SP1 although I've read this shouldn't matter. I've tried running as administrator, uninstalling all .NET stuff from the control panel, using the .NET repair tool [...] read more
I want to upgrade from Windows 10 Home (which came pre-installed with the HP Spectre laptop) to Windows 10 Professional so I can run Virtual Machines. I think I can do this on the activation tab, but it crashes. This is in the event log. > Faulting application name: SystemSettings.exe, [...] read more
Recently I began transferring old messages from a work (Exchange) account to Gmail using the IMAP connector in Outlook. It had been going fine for a few days as I organized and then moved folders. Then, when I tried to drag over a large number of messages from the Inbox, [...] read more
Every time I open System Properties explorer crashes. I'm working on getting Windbg to get a better reason behind it but here is the Event Viewer log for now. > Faulting application name: explorer.exe, version: 6.1.7601.23537, time stamp: > 0x57c44efe Faulting module name: ntdll.dll, version: 6.1.7601.23915, time > stamp: 0x59b94ee4 [...] read more
I have a Dell Latitude E7470 laptop, purchased late 2016. Currently standard apart from an Intel 600p 1tb SSD. I am experiencing frequent application crashes - Excel, Word, Visual Studio 2015, SQL Management Studio. The Video driver also crashes regularly. It occasionally crashes as I am trying to shut it [...] read more
Background I successfully setting up a database for SQL Server Reporting Services in Windows Server 2008 R2 using Reporting Services Configuration Manager with "Create a new report server database" option. The next step I want to do is test connecting the created database remotely via a client machine running Windows [...] read more
When I launch php -v from the command line, a pop-up window appears saying CLI has stopped working. I am using wampserver 2.5 and PHP version 5.5.12 on Windows 8.1. Because of this I cannot install Composer and get any coding work done. php error log is blank I'm getting [...] read more
In recent insider builds, lots of desktop apps crashes upon saving a file or browse for a file. The error is something as below Unhandled exception at 0x00007FFA166E134D (shell32.dll) in Xamarin Workbooks.exe: 0xC0000005: Access violation writing location 0xFFFFFFFFFFFFFF8B. Now I am using the Build 15063.14 with latest updates. This is [...] read more
My initial setup was: D1: 128GB SSD GPT -> Grub2 D2: 128GB SSD MBR -> Windows 10 Bootmgr (Note: both SSDs are identical.) I installed a beta version of the Debian-based OS on the GPT disk, this time as UEFI. After that GRUB2 didn't manage to add Windows 10 to [...] read more
I have a usb wifi adapter by "Glam Hobby", which I can link to if required but basically it's just a rebranded Realtek USB wifi adapter. For over a month I had been using it with the drivers included on the CD it came with, along with a tool called [...] read more
I installed a fresh copy of Windows 10 and now when I run a certain adobe air application, it will crash intermittently with a Windows error. *Faulting module name: ntdll.dll, version: 10.0.14393.447, time stamp: 0x5819be95* *Exception code: 0xc0000005* *Fault offset: 0x000ab3b3* *Faulting module path: C:\WINDOWS\SYSTEM32\ntdll.dll** This never happened on my [...] read more
My old hard drive crashed so I had to replace it with a new one. I performed a fresh install of Windows 10 in it. I have a file history backup on my external hard drive, so I connected it and set up the file history on my new Windows [...] read more
I am having problems trying to copy and paste files in Windows 10 and I can't open the control panel. I am getting the following error message: > Windows Explorer has stopped working > Windows is checking for a solution for the problem And a few moments later.. > Windows [...] read more
every time user logs into windows 10, explorer.exe error appears on screen. Here are event viewer error: Faulting application name: explorer.exe, version: 10.0.10240.16384, time stamp: 0x559f3c97 Faulting module name: SHELL32.dll, version: 10.0.10240.16384, time stamp: 0x559f3ee0 Exception code: 0xc0000005 Fault offset: 0x00000000005bf22c Faulting process id: 0x1560 Faulting application start time: 0x01d20c06cdc85bdb [...] read more
I have an one year old ASUS laptop, which originally shipped with Win 8.1. When Windows 10 was released I upgraded without hassle to Windows 10. Trying to update to November update (Threshold-2) or more recently Redstone just doesn't work. The upgrade starts and finally Windows is restarting. Then after [...] read more
I open my pc failed, it shows blue scree with error (SYSTEM SERVICE EXCEPTION), than I start it for safe mode and get the dump file, open in another pc. This is my analyze result by windbg in below. Please help me. Thanks. 3: kd> !analyze -v ******************************************************************************* * * [...] read more
My PC is running Windows 7. I keep on getting the following BSOD (captured by a program I ran): On Thu 16/06/2016 16:58:33 GMT your computer crashed crash dump file: C:\Windows\Minidump\061616-28392-01.dmp This was probably caused by the following module: win32k.sys (win32k+0x9C52) Bugcheck code: 0x3B (0xC0000005, 0xFFFFF96000069C52, 0xFFFFF880046DC230, 0x0) Error: SYSTEM_SERVICE_EXCEPTION [...] read more
I have very hard puzzle with blue screens on windows 7. Few weeks ago a computer started to have some blu screens during smartcard computation. This is a POS machine with a smartcard, for every recepit issued it has to compute an hash in the smartcard. So I started to [...] read more
Trying to install the Microsoft Bot Framework Emulator on Windows 10 x64, ClickOnce is crashing and Event Log is showing the following error: Faulting application name: dfsvc.exe, version: 4.6.1038.0, time stamp: 0x5615c2b6 Faulting module name: kaijuu64.dll, version: 0.0.0.0, time stamp: 0x50153b50 Exception code: 0xc0000005 Fault offset: 0x0000000000018fab Faulting process ID: [...] read more
The cause of this is unknown, as I performed a proper shutdown at the last time before this has occurred. I have attempted to boot into Safe Mode and twice used the Last known good configuration option. At the BSoD, it gives 0x0000007E (0xC0000005, 0x80631072, 0xB677C778) for a third technical [...] read more
I can connect and attach to a docker container / windows container on Windows 2016 Server just fine with Powershell. But when I try the same with Powershell ISE, I get the error below. PS C:\> docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 934be056524b iis "cmd" 11 [...] read more
I am experiencing a strange issue with an RFID Pad and a BSOD. Dell Optiplex 7010, Win7, 64bit, Intel Corie 7 The issue is that I receive a BSOD just before the login screen appears. However if I unplug the RFID pad from it's USB port at start up, the [...] read more
Currently I am trying to copy "GeorgeNotFound" 's MinecraftShocker plugin from his Video (https://youtu.be/rCyJ-TFFxWA) but i am getting this error which means no Arduino is found right? I already checked the Arduino Uno is connected to "COM3" and I already have the Firmata installed on the Arduino. I'm using Maven [...] read more
my function is returning the following error when executing the program: Process returned -1073741819 (0xC0000005). until the moment I assign the inputs to the variables, it works. However, when the program is going to assign the values of the variables to the pointers, the program stop. void Cadastrar(pessoas *p){ char [...] read more
I am trying to implement a small C++ application, which manages a store's products and batches of products. It's kind of silly, but it is not something professional, I'm just practicing for my next exam at university, which has this kind of specific. So, I have three kinds of products: [...] read more
The function listener(TCODMap & map, Engine & engine) of my BSPListener class will never execute because calling *this as a parameter causes an unhandled exception error.(The call using *this is in initializeMap()). In Engine.cpp void Engine::initializeMap() { float maxHratio = rand() % 10 + 1; float maxVratio = rand() % [...] read more
I get a memory error when I am trying to make a base pointer point to a derived object. I know how to fix it, but I would like to find out why it doesn't work like this. I know *bp = d_ob is not the same as bp = [...] read more
I'm trying to use Allegro to draw some shapes for a school project. I got the error: Process returned -1073741819 (0xC0000005). This was the same error I got when I tried to draw bitmaps previously. I borrowed code that my teacher uses for a demo to see if it was [...] read more
The code have an issue in main. When I try cout<<num0-num1; alone or cout<<num0+num1; alone they work fine, but when I do them together, the code just stops print one of them and the rest of the code stops. What I mean is: If I write the main as: cout [...] read more
I trained a model in Python using Tensorflow and exported it. My wish is to use the model from a c++ program for inference. I followed this guide and I successfully built some libraries using Bazel. The selected Tensorflow version is v4.2.0, without GPU. The following files were generated in [...] read more
I was writing some code that converts a adjacency matrix into an adjacency list, and ran into a problem. I traced it down to a memory error, but when I step through with my debugger, it passes right over the error, and does not throw an exception. When the program [...] read more
I should have the newest version of Glew and Glfw so that shouldn't be the problem. Everything should be linked, and I'm using MS visual studio 2019. When i run the code, it show an error: "Unhandled exception at 0xEF04B530 in b1.exe: 0xC0000005: Access violation executing location 0x00000000". I think [...] read more
I'm aware of the previous posts made on SO, however I think my use case is different and I don't see flaws personally in my code. I'm getting an error Uploading to twitter... panic: runtime error: invalid memory address or nil pointer dereference [signal 0xc0000005 code=0x0 addr=0x0 pc=0x7ff7aa4b34cd] goroutine 1 [...] read more
This is the block of code { static float f = 0.0f; static int counter = 0; ImGui::Begin("Hello, welcome to Life Simulator!"); if (ImGui::Button("Dealership")) ImGui::OpenPopup("Dealership"); // Always center this window when appearing ImVec2 center = ImGui::GetMainViewport()->GetCenter(); ImGui::SetNextWindowPos(center, ImGuiCond_Appearing, ImVec2(0.5f, 0.5f)); if (ImGui::BeginPopupModal("Dealership", NULL, ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::Text("Welcome to Rob's Dealership"); ImGui::Separator(); [...] read more
I've been writing this code to implement the C "strcmp()" function using C/C++ with embedded assembly code like this bool myStrCmp(char* mystr1, char* mystr2) { if (myStrLen(mystr1) != myStrLen(mystr1)) return false; char s1[100], s2[100]; strcpy_s(s1, mystr1); strcpy_s(s2, mystr2); int i = 0; int flag = 1; _asm mov ecx, flag; [...] read more
I'm trying to have user login and registration system using binary files to save the data, and check if username and password are equal to those saved. It seems to work fine when Create_Login() and Write() are called and even when Login() is called after. The problem occurs when Login() [...] read more
One day, after creating a Linux bootable USB, I noticed that at start up I got an error message from avastui.exe "The application was unable to start correctly (0xc0000005) Click Ok to close the application." The creation of the bootable USB might have had nothing to do with it and [...] read more
enter image description here [https://i.stack.imgur.com/dDSXH.png] Here's what I've done: * I tried re-installing everything * All display drivers are up to date, directx etc * I don't use any mods or CC * I have tuned off DEP * I included all sims 4 exe files into antivirus/firewall/defender exception list [...] read more
I have a problem, VM server 2008 R2 SP1 , running citrix is randomly crhasing, in event log I found following: The computer has rebooted from a bugcheck. The bugcheck was: 0x0000003b (0x00000000c0000005, 0xfffff9600008744d, 0xfffff88007ba3de0, 0x0000000000000000).. Any Idea what's causing it? Here is results from debug: here is info from [...] read more
I have Problem this my code enter image description here enter image description here enter image description here use this services.AddTransient<IProductRepository, ProductRepository>(); read more
i'm trying to work with OpenGL, which i did before few times, but now i have problem that when i call glCreateSHader(GL_VERTEX_SHADER) i get error 0xC0000005: Access violation executing location i tried reading multiple articles on Stackoverflow, GLFW sites etc etc but everyone was using glew and i use glad [...] read more
I'm trying to create a webserver using a Golang library "github.com/tebeka/selenium" as you can see below // Setup Selenium const ( seleniumURL = "http://192.168.1.3:4444/wd/hub" ) caps := selenium.Capabilities{ "browserName": "chrome", } chromeOptions := chrome.Capabilities{ Args: []string{ //"--user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36", "--user-agent=Applebot", "--lang=en_US", [...] read more
I have a trouble with RDP on Windows server 2003. When I start the system everything seems to work (3389 port is listening), I can connect with rdp client, just after login confirm the client exits and then the Remote Desktop stops (3389 is not listen anymore). Than if i [...] read more
#include <stdio.h> int main(){ char s[10]; scanf_s("%s", s); for (int i = 0; i < 10; i++) printf("%s\n", s); } This error appears in visual studio Exception thrown at 0x7B8BEF1C (ucrtbased.dll) in 1.exe: 0xC0000005: Access violation writing location 0x00942000.enter image description here read more
I have a problem that I am stumped on.. I upgraded my server 2003 to server 2008 enterprise. So far I am only having one problem.. All my programs work besides office 2007. When I click on it it asked to go int safe mode and if I click yes [...] read more
Our application has been used in Windows XP Embedded 32Bit and Windows 7 Embedded 32Bit. Since last year, the source of the application has been changed and used for Windows 10 IOT 64bit Ver 1809. Often, when CEdit is inherited and created in the wrapper class used, or when ShowWindow [...] read more