Index  | Recent Threads  | Unanswered Threads  | Who's Active  | Guidelines  | Search
 

Quick Go »
No member browsing this thread
Thread Status: Active
Total posts in this thread: 5
[ Jump to Last Post ]
Post new Thread
Author
Previous Thread This topic has been viewed 534 times and has 4 replies Next Thread
marrone
Cruncher
Joined: Dec 11, 2006
Post Count: 7
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Run automatically on startup w/out window

I'm having a little trouble getting the boinc agent to run upon bootup of my XP box.

I can put the manager in the startup folder, and it indeed starts crunching, but I also get the manager up on the screen. Sure I can close it, which minimizes it to the tray (Which is what I want) but I'd rather not have to do that...bothers my wife more than me.

Or I can run the boinc program itself, and it runs, but if I try to close that (which is effectively a DOS window), it shuts down completely. Minimizing will keep the dos window still on the taskbar.

Do I have to do a service install, or is there a better way to do it?
(basically, I want it to work like the United Devices agent, which just fires up in the system tray. Preferably the manager)

Thanks
-Mike
[Dec 15, 2006 9:38:10 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: Run automatically on startup w/out window

Try adding /s to the shortcut command. Right click the menu item, select "Properties" and change the target to "C:\Program Files\BOINC\boincmgr.exe" /s
[Dec 15, 2006 10:41:01 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Sekerob
Ace Cruncher
Joined: Jul 24, 2005
Post Count: 20043
Status: Offline
Reply to this Post  Reply with Quote 
Re: Run automatically on startup w/out window

Hi Marrone,

There is a second possibility in amending the shortcut (WinXp).... an option to start normal/maximized/minimized. The latter would put it on the start bar though.

cheers
----------------------------------------
WCG Global & Research > Make Proposal Help: Start Here!
Please help to make the Forums an enjoyable experience for All!
[Dec 16, 2006 8:05:54 AM]   Link   Report threatening or abusive post: please login first  Go to top 
staffann
Cruncher
Joined: Nov 19, 2005
Post Count: 26
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: Run automatically on startup w/out window

I use this little .vbs script, which I put in the startup folder:

set WshShell = WScript.CreateObject("WScript.Shell")
WScript.Sleep 1000
WshShell.Run "boinc.exe", 0, false
rem WScript.Sleep 15000
rem WshShell.Run "boinccmd.exe --set_run_mode auto", 1, true

The last two lines will, if you remove the "rem", attempt to set BOINC to obey the default settings about when it is allowed to run (even if you have previosly chosen the run always menu option).

I also have a script for taking backups of the BOINC folder using ntbackup. It creates a new name for each new backup file, based on the time and date that the backup is taken. It is best to run it when you are not working with the computer, since the ntbackup window will pop up a few times during the backup.

set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.logevent 4, "Starting backup of BOINC folder"

restart = 0

REM Shut down BOINC daemon if running
ret = WshShell.Run ("boinccmd --quit", 0, true)
if ret = 0 then
restart = 1
end if

REM Backup BOINC
MyTime = Time
MyTime= Replace(MyTime, ":", "_")
REM Modify to choose where the backups should be
BackupName = "C:\BOINC_Backups\BOINC_Backup_"& Date & "_" & MyTime
BackupCommand = "ntbackup backup c:\program\BOINC /J ""BOINC Backup"" /F """+BackupName + """"
rem MsgBox BackupCommand
WshShell.Run BackupCommand,1,false
WScript.Sleep 180000
REM If not swedish WinXP, change "säkerhetskopiering" for what the ntbackup window is called.
ret = WshShell.AppActivate ("Säkerhetskopiering" )
i=0
while ret = true
i = i+1
if i = 60 then
WshShell.logevent 1, "Ntbackup still running. Not restarting BOINC!"
WScript.quit -1
end if
WScript.Sleep 30000
ret = WshShell.AppActivate ("Säkerhetskopiering" )
wend

REM Restart BOINC
if restart = 1 then
WshShell.Run "boinc.exe", 0, false
end if
WshShell.logevent 0, "Successfully completed backup of BOINC folder"
----------------------------------------

[Dec 16, 2006 3:01:05 PM]   Link   Report threatening or abusive post: please login first  Go to top 
marrone
Cruncher
Joined: Dec 11, 2006
Post Count: 7
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: Run automatically on startup w/out window

The /s option worked out the best, so I took that.

Thanks!

About the .vbs script...why worry about backing up the directory?

-Mike
[Dec 16, 2006 9:45:09 PM]   Link   Report threatening or abusive post: please login first  Go to top 
[ Jump to Last Post ]
Post new Thread