This is a VB Script to Launch IE in Edit Mode, that is it functions kinda like FrontPage, supports command-line arguments it also can be done in VB, check it out so simple!
Inputs
Option Explicit
Main
Public Sub Main ()
Dim Args , FileName , ie
Set Args = WScript.Arguments
If Args.Count > 0 Then
FileName = Args(0)
Else
FileName = "about:blank"
End If
Set Args = Nothing
Set ie=CreateObject("InternetExplorer.Application")
ie.Visible=true
ie.Navigate FileName
ie.Document.designMode = "On"
set ie=Nothing
End Sub