You can also launch the browser with SystemUtil or a WScript.Shell and specify the window state when opened (along with the startup URL). 3 = maximized.
Quote:SystemUtil.Run "iexplore.exe", "www.google.com", , , 3
Browser("micclass:=Browser").Sync
Quote:Dim wsh
Set wsh = CreateObject("WScript.Shell")
wsh.Run "iexplore.exe about:blank", 3, False
Browser("micclass:=Browser").Sync
Set wsh = Nothing