Luego de darme cuenta que no es posible encontrar ese parametro por las buenas en iexplorer, por que el valor no existe.
opte por hacerlo de esta manera
Código HTML:
<html>
<head>
<title></title>
<script language="JavaScript">
var ieDiffWidth;
var ieDiffHeight;
function init() {
var w, h, offW, offH, diffW, diffH;
var fixedW = 800;
var fixedH = 600;
if (document.all) {
offW = document.body.offsetWidth;
offH = document.body.offsetHeight;
window.resizeTo(fixedW, fixedH);
diffW = document.body.offsetWidth - offW;
diffH = document.body.offsetHeight - offH;
w = fixedW - diffW;
h = fixedH - diffH;
ieDiffWidth = w - offW;
ieDiffHeight = h - offH;
window.resizeTo(w, h);
}
}
function outerWd() {
if (document.all)
return document.body.offsetWidth + ieDiffWidth;
else
return window.outerWidth;
}
function outerHt() {
if (document.all)
return document.body.offsetHeight + ieDiffHeight;
else
return window.outerHeight;
}
</script>
</head>
<body onload="init()">
<a href="#" onclick="alert(outerWd() + 'x' + outerHt()); return
false;">Tamaño de la ventana de navegación</a>
</body>
</html>
Quizas con vbscript se pueda, igual voy a buscar un poco mas
Saludos y gracias