ThePoro Posted March 4, 2019 Posted March 4, 2019 Hi, I just want to open many firefox profiles with loop and each profile can start an imacros code as well. So I have this batch script like this set /p start=Profile from: set /p end=To Profile : FOR /L %%X IN (%start%,1,%end%) DO start /B "" "C:\Program Files\Mozilla Firefox\firefox.exe" -P -no-remote "%%X" imacros://run/?m=#Run.js" Can anyone show me how to do it with AutoIt? Thank you
ThePoro Posted March 5, 2019 Author Posted March 5, 2019 Now I know how to run specific firefox with imacros : #include <Process.au3> $rc = _RunDos("start firefox.exe -p <profile> -no-remote imacros://run/?m=<imacros>") with <profile> is firefox profile and <imacros> is imacros file name.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now