Scheduled Tasks - Last Results is 0x0

  • Thread starter Thread starter Teo Chee Yang
  • Start date Start date
T

Teo Chee Yang

I have some scheduled tasks running daily and some of the
tasks are showing the results as 0x0 while the Status
column is empty when I view the outcome of the scehduled
tasks.

What does 0x0 is the Last Results column mean? Is it
successful?

Appreciate some feedback. thanks.
 
Teo Chee Yang said:
I have some scheduled tasks running daily and some of the
tasks are showing the results as 0x0 while the Status
column is empty when I view the outcome of the scehduled
tasks.

What does 0x0 is the Last Results column mean? Is it
successful?

Appreciate some feedback. thanks.

If any of your tasks are scripts written by you, it
would be a good_strategy to return 0x0 on success. In the
WSH env., you would write this
wscript.quit(0)

In the Win32API world,
ERROR_SUCCESS = 0x0;

Here's a list of unsuccessful codes:
http://www.hiteksoftware.com/mize/Knowledge/articles/049.htm

hth,
msp
AIM:Yahoo:tlviewer
 
Back
Top