我发现下面的 vbs 脚本可以按照我想要的方式完美地打开 IE。我已经看到一些用于禁用最小/最大按钮的网页 javascript,但并没有真正无缝地工作。
我在 XP Pro 上。
有什么方法可以编辑它以禁用应用程序窗口中的最小/最大按钮?
Set oIE = CreateObject("InternetExplorer.Application")
With oIE
.FullScreen = True
.AddressBar = False
.ToolBar = True
.StatusBar = True
.Navigate("www.google.com")
.Visible = True
End With