Is there a Windows utility to delete contents of RAM left by an application?

0

2

Ideally, this utility would know where in physical RAM an application was and completely clear its contents when it's closed. Does anyone know of such a utility?

christiansonk

Posted 2013-03-09T23:56:36.873

Reputation: 47

Question was closed 2013-03-10T20:05:56.517

4What would you expect to be the result of this? When a process exits, all memory it allocated is automatically freed. – Der Hochstapler – 2013-03-10T00:00:49.543

1What's the possible threat here? If you're worried about live forensics, unplugging the system does usually work, and very often people do it anyway. Considering the window for a freeze attack is tiny, adding a physical lock to a case and pulling the cord should utterly negate most forms of memory acquisition, live or offline. – Journeyman Geek – 2013-03-10T00:16:32.937

1@OliverSalzburg and Journeyman Geek: I am a bit worried about live forensics, and am looking for a solution to zero out an area of RAM when a restart would not be ideal. – christiansonk – 2013-03-10T00:32:50.710

Answers

1

Windows already zeros all free Memory before it is used again (zero page thread):

http://blogs.msdn.com/b/tims/archive/2010/10/29/pdc10-mysteries-of-windows-memory-management-revealed-part-two.aspx

magicandre1981

Posted 2013-03-09T23:56:36.873

Reputation: 86 560

0

http://www.jaystech.com/2007/12/how-to-clear-your-ram-without.html

  1. Right click anywhere on your desktop.
  2. Point over “New”, then select “Shortcut”.
  3. Copy the below line (as it is):

    %windir%\system32\rundll32.exe advapi32.dll,ProcessIdleTasks

  4. Paste it there & click “Next”.
  5. Give it a name like Clear RAM
  6. That’s it, run it every time your computer goes slow.

vujke

Posted 2013-03-09T23:56:36.873

Reputation: 223

2

Thats a bit of an urban myth - lifehacker points at microsoft's documentation, which disagrees with this

– Journeyman Geek – 2013-03-10T03:19:00.867