IEで任意のフォルダを表示する。
.htmファイルの場合は引数が使えないので、代わりに、
start iexplore.exe file://%cd%\folder.htm?c:\temp
<html>
<head>
<script language=vbscript>
Option Explicit
Sub window_onload
document.all.f1.src=mid(location.search,2)
End Sub
</script>
</head>
<frameset>
<frame id=f1 src="about:blank">
</frameset>
</html>
.htmファイルを使ってHTAに表示することもできます。
mshta.exe file://%cd%\folder.htm?c:\temp