Peter Schroeder
Peter Schroeder

Reputation: 492

Alternative to scheduled tasks

I'm moving stuff from Azure to AWS, and the only thing I'm really gonna miss is the webjobs, where I can schedule command line jobs.

I know I can achieve somewhat the same with task scheduler or windows services, but I do also like the way webjobs shows logs and that stuff...

Do anybody know a tool like that, that can run windows command line apps on AWS?

Upvotes: 1

Views: 780

Answers (1)

helloV
helloV

Reputation: 52433

Checkout AWS Lambda. It is a new service from AWS.

AWS Lambda, compute service that runs your code in response to events and automatically manages the compute resources for you, making it easy to build applications that respond quickly to new information.

Lambda vs WebJobs

Upvotes: 2

Related Questions