Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Dim Titre,Ws,Question1,Question2,NewOnglet,Largeur,NewFenetre,URL
Titre = "Options pour Ouvrir FireFox en ligne de Commande"
Set Ws = CreateObject("Wscript.shell")
'Les Arguments en ligne de commande
NewOnglet = "-new-tab"
NewFenetre = "-new-window"
URL = "[URL unfurl="true"]http://bbat.forumeiro.com"[/URL]
Question1 = MsgBox ("Voulez-vous accéder au site "&qq(URL)&vbcr&" dans un nouvel Onglet ? ",VBYesNO+VbQuestion,Titre)
If Question1 = VbYes then
NouvelOnglet()
else
Wscript.Quit
end if
wscript.sleep 10000
Question2 = MsgBox ("Voulez-vous accéder au site "&qq(URL)&vbcr&" dans une nouvelle Fenêtre ? ",VBYesNO+VbQuestion,Titre)
If Question2 = VbYes then
NouvelleFenetre()
else
Wscript.Quit
end if
Sub NouvelOnglet()
Dim Command1,Execuction1
Command1 = "Cmd /c CD %Programfiles%\Mozilla Firefox\ | Start Firefox.exe " & NewOnglet & " " & URL
Execuction1 = Ws.Run(Command1,0,False)
End Sub
Sub NouvelleFenetre()
Dim Command2,Execuction2
Command2 = "Cmd /c CD %Programfiles%\Mozilla Firefox\ | Start Firefox.exe " & NewFenetre & " " & URL
Execuction2 = Ws.Run(Command2,0,False)
End Sub
Function qq(strIn)
qq = Chr(34) & strIn & Chr(34)
End Function