Start exe from resources
Unsolved
General and Desktop
-
Hello,
I want start exe from resources.My codes like this
but exe not starting. Why ? Why not starting exe ? Can you help me please. Thank you.
-
You can't run executables from resources. They are compiled as a string in the data section of your application's executable. It would be incredibly dangerous and all modern operating systems prevent this. See Executable space protection for more info.
The only option you have is to write it to a file first and run that. Note however that this behavior is incredibly fishy and no sane antivirus on the planet will like that.