0
如何在startupscript中啓動Firefox配置文件?這想這樣做:在startupscript中啓動Firefoxprofile?
Set shell = CreateObject("WScript.Shell")
progList = Array("C:\Program Files\Mozilla Firefox\firefox.exe" -P "PrimaryNew" -no-remote")
For Each prog in progList
'WScript.Echo "File Name: " & prog
shell.run """" & prog & """", 1, false
WScript.sleep 10000 '10 seconds
Next