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
We have discontinued this forum and moved support tickets to the GitHub issue tracker. More info
Run In Silent Mode
- Steven
- CrystalIDEA Developer
- Posts: 2294
- Joined: 21 Dec 2009, 11:48
- Location: CrystalIDEA headquarters
- Contact:
Re: Run In Silent Mode
Help->Command Line
Re: Run In Silent Mode
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
Got It !!!!
@echo on
START "s" C:\Users\Dave\Desktop\speedyfox.exe /Firefox:default /Thunderbird:default
Exit
@echo on
START "s" C:\Users\Dave\Desktop\speedyfox.exe /Firefox:default /Thunderbird:default
Exit
Re: Run In Silent Mode
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
@echo on
TASKKILL /F /IM firefox.exe
TASKKILL /F /IM thunderbird.exe
Exit
- Steven
- CrystalIDEA Developer
- Posts: 2294
- Joined: 21 Dec 2009, 11:48
- Location: CrystalIDEA headquarters
- Contact:
Re: Run In Silent Mode
dauge, thanks for sharing the info
Re: Run In Silent Mode
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.