vote up 1 vote down star

Under Windows is there a way to modify a file/executable opened by another process using c++?

flag

71% accept rate
Do you mean "how do you modify an exe in windows?" or "how do you modify a running exe in windows?". If it's neither of these, then sktrdie's answer is bang on. – OJ Feb 8 at 23:03
Yes that is exactly what I meant, sorry if I wasn't clear enough. – workinprogress Feb 8 at 23:39

5 Answers

vote up 0 vote down check

The OS holds the executable file open for read-only sharing as long as it's running, so there's no way to modify it directly. You can, however, open it for reading (if you specify read-sharing in your CreateFile call), and make a modified copy of it, while it's running.

I don't know if that's what you had in mind, but if it's your own program you're doing this to, you can start the new copy and have it pick up where the previous one left off... not straightforward, but not all that difficult either.

link|flag
vote up 0 vote down

Thanks but that was not quite what I meant. I was looking for a way to modify a file that another program has open or an executable that is running.

link|flag
No, you can't do it. – Adam Rosenfield Feb 8 at 23:09
Please amend your question - do not add an 'answer' to explain your question. – Jonathan Leffler Feb 9 at 5:41
vote up 7 vote down

Is there a way to modify an open executable in windows?

No.

Is there a way to modify an open file in windows using c++?

Yes. If it has been opened with the proper share permissions. See http://msdn.microsoft.com/en-us/library/aa363858(VS.85).aspx FILE_SHARE_WRITE

link|flag
vote up 1 vote down

It may be possible but perhaps not easy to achieve. You need inject thread in destination process and know PE format for correctly edit opened file and modify it.
All information is on web.

Good Luck.

I find this freeware tool, it proposes to unlock files and folders.

link|flag
vote up 0 vote down

Of source it's possible.

Just hook it

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.