How to dump the memory of a process to a file and then restore the process into memory?

3

1

I have a game where saving is impossible most of the time, there are big gaps between saves and many progress is lost if the game crashes or I die.

I want to know if it's possible to dump the RAM of a process onto the disk and then restore it when needed? and if yes, how do I do that?

Just like suspending a VM-Ware virtual machine... but not a virtual machine yet a process in windows.

Gizmo

Posted 2013-08-13T16:30:48.007

Reputation: 1 549

Question was closed 2013-08-14T14:27:02.003

Sorry, there is no way to do that. See my answer here: http://superuser.com/questions/904441/possible-to-save-process-as-dump-file-to-disk-and-then-reload-the-process-later/978777#978777

– Jamie Hanrahan – 2015-09-27T13:20:50.153

Sort of related: http://superuser.com/questions/133938/how-can-i-dump-the-memory-of-a-process-in-windows-7?rq=1

– Ƭᴇcʜιᴇ007 – 2013-08-13T16:41:32.477

@Gizmo - Unless the software supports this feature its not possible to do this. An application's memory space is protected. – Ramhound – 2013-08-13T16:46:06.690

2invalid duplicate - I want for WINDOWS, "duplicate" wants for LINUX – Gizmo – 2013-08-13T20:10:14.073

1and I know how I can dump using task manager, but I want to restore that dump into memory.. – Gizmo – 2013-08-13T20:15:56.697

No answers