Link to home
Start Free TrialLog in
Avatar of McGurk1
McGurk1Flag for United States of America

asked on

VB.NET exe return success or fail to Task or Job

I need to run an VB.NET exe using either Windows Task Scheduler or Sql Server Agent Job.  What do I need to code in the exe so it will report to the task or job if it completed successfully or failed?  

Also, what do I need to add to the task or job so it will wait for the program to complete?


Have never done this before so don't know where to start.  Have been searching the web for 2 days but don't really find what I need.

Thanks for any help in advance.
Avatar of Meir Rivkin
Meir Rivkin
Flag of Israel image

so you want a win task scheduler to run vb.net exe.
the executable need to report if success or failed.
does the exe need to get parameters?
to whom the exe need to notify if succeed or failed?
do u need to run the task scheduler only one time, in a specific time or every predefined date time?
does the exe write to log file upon success or failure?
SOLUTION
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of McGurk1

ASKER

sedgwick,
- no parameters are passed
- need to send email if fails, no need if success
- task scheduler needs to run every night (7/365)
- exe does not write to log file at this time, plan to do that if I can get the response set up from the program
Avatar of McGurk1

ASKER

CodeCruiser,

Will check into Environment.Exit(ExitCode)

Thanks
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
if you want to monitor the suceess of your exe outside the application, you can use a script which runs the vb.net exe and send email upon failure or code another small .net application which runs your vb.net exe and send the email upon failure.

i can help you do either one, whatever you feel comfortable with.
Avatar of McGurk1

ASKER

Am using the following to send an email with the Exit.Code and Exit.Time.  I also store the closing information in the database for future reference.  EmailAlert() is the sub created to send the emails.
 Dim p As New Process
            p.StartInfo.FileName = "path to my exe"
            p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
            p.StartInfo.CreateNoWindow = True
          Try
                p.Start()
                p.WaitForExit()

           Catch ex As Exception
                PIMessage = ex.Message
                EmailSubject = "Error Running Scheduler"
                EmailMessage = "Error running Scheduler. " & ex.Message
                EmailAlert()
            Finally
                EmailSubject = "MyProgramName"
                EmailMessage = "MyProgramName reports Exit Code = " & p.ExitCode & " at " & p.ExitTime
                EmailAlert()
                PIMessage = "Exit Code = " & p.ExitCode & " at " & p.ExitTime
                p.Close()
            End Try

Open in new window


 Private Sub EmailAlert()
        Dim myEmail As New MailMessage()

        myEmail.From = New MailAddress("email@myemail.com")
        myEmail.To.Add("me@myemail.com")
        myEmail.Subject = EmailSubject
        myEmail.Body = EmailMessage
        myEmail.Priority = MailPriority.High

        Dim smtp As New SmtpClient("mysmtpclient")

        smtp.Send(myEmail)

    End Sub

Open in new window


Thank you for getting me this far.  Now I need to set up the task.  I will follow your instructions sedgwick and let you know how it went.

One question, I am using clickonce to deploy the program.  What is the best way to call the program from the task scheduler.  Or is it possible using this method to deploy it?
Run the following in the command prompt:
Schtasks /create /tn "task-name" /sc daily /tr "your-vb.net.exe-path"  /st 00:00:00

Change task name to whatever u want and the exe path.
/st is when the task is running, currently is midnight.
Avatar of McGurk1

ASKER

Thanks for the quick response.  I do understand what you have written.  However, using clickOnce deployment the only exe is the setup.exe.  Doesn't seem like this is what is needed to run...   will have to research it more before testing it.
i didn't know there's a setup.exe, so u need to run the setup.exe first which deploy the vb.net application?
and after that to create the task scheduler?
Avatar of McGurk1

ASKER

Found it is possible to use ClickOnce using the Start Menu properties string for that program.
See Eli Gazit's response that is the selected answer on the forum's question.  The Task Scheduler adds the additional information to this string automatically.
http://social.msdn.microsoft.com/forums/en-US/winformssetup/thread/a7b251b1-c9c4-438d-bce0-6b2ec46886c2/