Page 1 of 1

Re: External exception C0000006

Posted: Mon Jun 26, 2017 2:16 pm
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