Page 1 of 1

Run In Silent Mode

Posted: 10 Jul 2012, 10:16
by dauge
Is there a way to run SpeedyFox in silent mode? Like adding a parameter of /s or /a or something else? I have it added to Windows scheduler but it just opens the SpeedyFox window but doesn't run.

thx

Re: Run In Silent Mode

Posted: 10 Jul 2012, 10:40
by Steven
Help->Command Line

Re: Run In Silent Mode

Posted: 10 Jul 2012, 11:02
by dauge
Thanks, I have seen that but I need to run it from a batch (.bat) file as I am running it from Task Scheduler. Can't get it to run.

Re: Run In Silent Mode

Posted: 10 Jul 2012, 11:17
by dauge
Got It !!!!

@echo on
START "s" C:\Users\Dave\Desktop\speedyfox.exe /Firefox:default /Thunderbird:default
Exit

Re: Run In Silent Mode

Posted: 10 Jul 2012, 14:03
by dauge
If you want to run SpeedyFox in Task Scheduler you need to kill your Firefgfox and maybe Thunderbird before running SpeedyFox. Do it like this ***

@echo on
TASKKILL /F /IM firefox.exe
TASKKILL /F /IM thunderbird.exe
Exit

Re: Run In Silent Mode

Posted: 10 Jul 2012, 14:17
by Steven
dauge, thanks for sharing the info :good:

Re: Run In Silent Mode

Posted: 10 Jul 2012, 14:29
by dauge
You are welcome. Too many posts complain but don't include how to fix the problem. If I know the answer I am more the willing to post the solution.