asked on
ASKER
Web development can range from developing the simplest static single page of plain text to the most complex web-based internet applications, electronic businesses, and social network services using a wide variety of languages and standards, including the familiar HTML, JavaScript and jQuery, ASP and ASP.NET, PHP, ColdFusion, CSS, PHP, Flex and Flash, but also the implementation of a broad list of standards including XML, WSDL, SSDL, VoiceXML and many more.
TRUSTED BY
you can put this batch in the "scheduled tasks" and go
example of batch script
@echo off
if exist *.goto (
for /f %%i in ('dir /w /b *.goto') do goto :%%i
) else (
echo For starting the job chain
echo you need to create th file FASE1.goto
echo EX: echo. ^> FASE1.goto
)
goto :end
rem ------------------------3 jobs parts--------------------
:FASE1.goto
echo FASE 1
Rem your code
del *.goto
echo. >FASE2.goto
rem shutdown /r
goto :end
:FASE2.goto
echo FASE 2
Rem your code
del *.goto
echo. >FASE3.goto
rem shutdown /r
goto :end
:FASE3.goto
echo FASE 3
Rem your code
del *.goto
rem ---- stop the execution chain -----
echo. >END.goto
goto :end
:END.goto
echo job chain finished!
:end