Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.

External exception C0000006

Post Reply
User avatar
salvadordf
Posts: 4032
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: External exception C0000006

Post by salvadordf »

Hi,

I've never developed any app to be run from a network drive but according to this answer :
https://stackoverflow.com/questions/143 ... minal-serv

You should declare this once in the DPR file of your app :

Code: Select all

{$SetPEOptFlags IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE}
{$SetPEFlags IMAGE_FILE_RELOCS_STRIPPED   
  or IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP   
  or IMAGE_FILE_NET_RUN_FROM_SWAP
  or IMAGE_FILE_LARGE_ADDRESS_AWARE}
After a quick search, it looks like this might be fixed with a windows patch :
https://community.spiceworks.com/topic/ ... plications

Others suggest different solutions :
https://stackoverflow.com/questions/131 ... n-c0000006
Post Reply