Forum Moderators: open
Thanks,
Vinny
But since this is the Javscript forum, the .bat could run a .js or .wsf file.
.... openIE.js ....
function openIE(url,L,T,W,H)
{
var IE = WScript.CreateObject("InternetExplorer.Application");IE.left = L;
IE.top = T;
IE.width = W;
IE.height = H;
IE.menubar = 1;
IE.toolbar = 1;
IE.navigate (url);
IE.visible = 1;
while (IE.Busy) {} // wait till ready
return IE;
}