var fDesc=new Array(); fDesc[0] = "DEP Process Scanner is the free command-line tool to scan and show all the DEP enabled Processes.

Data Execution Prevention (DEP) is a security feature to prevent an application executing code from a non-executable memory regions such as Stack or Data region. DEP runs in two modes: hardware-enforced DEP and software-enforced DEP

DEP Process Scanner currently detects only Software-enforced DEP and helps you to find Processes which have DEP enabled/disabled.

Here is the list of things you can do with this tool,

# Show all DEP enabled Processes
# Show all Non-DEP or DEP disabled Processes
# Check the DEP status of Process with the ID
# Check the DEP status of Process with the name

Being a command-line tool makes it easy for automation. Also it can be handy tool for developers and researchers.

DEP Process Scanner is available in both 32-bit & 64-bit versions and works on all platforms starting from Windows XP to Windows 8."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }