I can't start applications from a network share or drive. An error Appears saying that the application was unable to start 0xc0000006. If I copy the .exe on my desktop it works fine. I tried to start Windows in safe mode and it works too.
My machine run on an HP laptop core i5 with Windows 7 SP1.
Any idea?
EDIT:
I found my problem: It's a bug that append sometimes with Kaspersky endpoint Security v.10. I just uninstall this version and install an older version (v.8). I hate Kaspersky... Hope it will help someone!
The 0xc0000006 error on Windows 10 typically occurs while trying to run an executable from the network volume. If you're encountering the issue while a third-party antivirus or firewall software, the security suite might be stopping the connection to the network volume because of a false positive.
0xc0000006 error an NTSTATUS code that means STATUS_IN_PAGE_ERROR. 0xc0000006 Error (STATUS_IN_PAGE_ERROR) It's quite common to see this particular error when attempting to run an executable from a network volume. This is most likely due to an intermittent problem facilitated by an overprotective firewall or AV suite.
0xc0000006 is an NTSTATUS
code. Specifically it is STATUS_IN_PAGE_ERROR
.
It is not uncommon to see these errors when you attempt to run an executable from a network volume. For whatever reason, if there is any even intermittent problem accessing the network volume, then you may see this error. When a module is loaded, the code is not physically loaded until it is needed. A memory mapped file is created, and when a particular page is needed, it is brought into physical memory on demand. If your network fails to meet this demand, your application stops with STATUS_IN_PAGE_ERROR
.
The common ways to deal with this include:
IMAGE_FILE_NET_RUN_FROM_SWAP
flag to your PE file options.If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With