var fDesc=new Array();
fDesc[0] = "EXE 64bit Detector is the simple command-line tool to find if the file is 32-bit or 64-bit Executable. You can specify any valid PE file like EXE, DLL, OCX etc.
Often there is a need to know if the particular executable file is 32-bit or 64-bit. Also there is no easy or direct way to find this out. 'EXE 64bit Detector' makes your job easier by quickly telling you if the file is 32-bit or 64-bit one.
In addition to this, it also displays following properties of Executable file,
# ASLR (Address space layout randomization)
# DEP (Data Execution Prevention)
# SEH (Structured Exception Handling)
Being a command-line tool makes it easy to use on remote systems and also automate through scripts.
'EXE 64bit Detector' works on both 32-bit & 64-bit 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 = '';
}
}