Creating an Application to Save Arbitrary Application State

Posted by ashes999 on Stack Overflow See other posts from Stack Overflow or by ashes999
Published on 2011-01-11T23:49:12Z Indexed on 2011/01/11 23:53 UTC
Read the original article Hit count: 183

Filed under:
|

See this SuperUser question. To summarize, VM software lets you save state of arbitrary applications (by saving the whole VM image).

Would it be possible to write some software for Windows that allows you to save and reload arbitrary application state? If so (and presumably so), what would it entail?

I would be looking to implement this, if possible, in a high-level language like C#. I presume if I used something else, I would need to dump memory registers (or maybe dump the entire application memory block) to a file somewhere and load it back somewhere to refresh state.

So how do I build this thing?

© Stack Overflow or respective owner

Related posts about c#

Related posts about vm