我一直在混合一些脚本来启动带有链接到网络摄像头的 URL 的便携式版本的 Firefox。我的目标是让 2 个脚本使用相同的 FF.exe,但转到 2 个不同的 URLS/IP。我试图通过删除滚动条。菜单和状态来限制浏览器功能,因此只能看到网络摄像头控件和视图。
这是当前代码,但我似乎犯了一个错误,因为现在没有显示 URL,只有启动时的默认值。尺码很完美。
dim wshshell
FirefoxProfile = "Profile"
FirefoxPath = "C:\ADMIN\FF\FF.exe"
webappurl = "http://Domain.com"
Height = "870"
Width = "920"
Set wshshell = WScript.CreateObject("WScript.Shell")
wshshell.run """" & FirefoxPath & """ -P """ & FirefoxProfile & """ -Height """ & Height & """ -Width """ & Width & "" & webappurl
Set wshshell = Nothing
wscript.quit
您可以提供的任何帮助或只是朝着正确方向轻推将不胜感激。这是我发现的其他东西,所以也许可以使用它,不幸的是,我认为它本身没有任何用处。
window.open('Domain.com',null,"height=100px,width=100px,status=0,toolbar=0,menubar=0,location=0");
工作代码:
dim wshshell
Function qq(str)
qq = Chr(34) & str & Chr(34)
End Function
FirefoxProfile = "Profile"
FirefoxPath = "C:\ADMIN\FF\FF.exe"
webappurl = "172.22.111.8"
Height = "700"
Width = "920"
Status ="0"
Toolbar = "0"
Menubar = "0"
Set wshshell = WScript.CreateObject("WScript.Shell")
wshshell.run qq(FirefoxPath) & " -P " & qq(FirefoxProfile) _
& " -status " & qq(status) & " -Toolbar " & qq(toolbar) & " -menubar " & qq(menubar) _
& " -Height " & qq(Height) & " -Width " & qq(Width) _
& " " & webappurl
Set wshshell = Nothing
wscript.quit