y.selivonchyk
y.selivonchyk

Reputation: 9900

How to schedule .Net console application on Amazon Web Services (AWS)?

I am completly new to AWS.

We need our console application to start once a day on Amazon Web Services. Do anybody know where to find information on how it can be done? Does AWS provide any kind of email-report-on-error?

Upvotes: 1

Views: 1437

Answers (1)

Scrappydog
Scrappydog

Reputation: 2874

Amazon doesn't have the ability to host and run a console application for you directly.

The basic steps to do it yourself would be:

  1. Setup a Windows server instance on Amazon EC2.
  2. Install your console application on your new server.
  3. Setup a job in Task Scheduler to run you console application.

Note: YOU are responsible for administering, updating, and monitoring your job on your EC2 server. Amazon is just renting you a server... nothing more...

Upvotes: 1

Related Questions