IEを少なくとも1つは開く。
HTAでIEを監視して、少なくとも1つは開くようにします。
IeOneOpener.hta
<head><title>IE 1 Opener</title>
<script language=vbscript>
resizeTo 210,10
Set ies=CreateObject("Shell.Application").Windows()
setInterval "proc",1000
Sub proc
For Each ie In ies
If InStr(LCase(ie.FullName),"iexplore.exe") Then Exit Sub
Next
open
End Sub
</script>
</head>