Hi guys, I have written several e-mail to Microsoft letting them know about something I have consider a bug in XP for a very long time. When you create a scheduled task it will not run if you don't set a password in your account and in the scheduled task as well, this happens only by using this feature in specific. i.e., your antivirus scan runs fine without any password in your administrator account. The same goes with other tasks... This happens only with Windows Scheduled task
I have written a little script to run
"defrag c:" and
"defrag c: -b" one after the other.
---------------------------------------------------------------------
CODE:
---------------------------------------------------------------------
@echo off
title Windows XP Professional Optimization Task
echo Your System is being optimized for overall Windows performance...
sleep.exe 3
echo.
echo Organizing Information...
sleep.exe 3
echo.
echo Boosting Windows performance...
defrag c:
defrag c: -b
echo.
echo Optimization Completed!
sleep.exe 5
exit
----------------------------------------------------------------
The script runs fine when I execute it but when you schedule it nothing happen due to the crappy Windows Task Schedule feature and the User password issue which I have e-mailed Microsoft so many times!!
Can anyone give me a solution to run the scheduled task without any password in my account?
Thanks in advanced
Yoni5002º
________