sparky

Distinguished
Nov 9, 2003
325
0
18,780
Archived from groups: microsoft.public.windowsxp.general (More info?)

when using the scheduled tasks to run a given program in XP you have the
option to start on user logon. with this option selected will the given
program continue to run when a user logs off or will the program be stopped
when the user logs off?
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.general (More info?)

"sparky" <sparky@discussions.microsoft.com> wrote in message
news:5A6A74F8-8964-4188-9D40-A05BCB7C4BD6@microsoft.com...
> when using the scheduled tasks to run a given program in XP you have the
> option to start on user logon. with this option selected will the given
> program continue to run when a user logs off or will the program be
stopped
> when the user logs off?

I suggest you give it a try all you have to do is to create
the following batch file run it with the task scheduler log
off then log on again you can now examine c:\test.log
and find out if the job stopped while you were logged off.
(By the way, using punctuation makes it much, much
easier to read a text!).

@echo off
:again
echo This task was active on %date% at %time% >> c:\test.log
ping localhost -n 30 > nul
goto again