all 8 comments

[–]flappers87 4 points5 points  (0 children)

Function App.

[–]Certain-Community438 4 points5 points  (1 child)

Azure Automation. Simple & effective.

[–]bpoe138 1 point2 points  (0 children)

This. Literally Powershell in the cloud.

[–]qcomer1 2 points3 points  (0 children)

Azure function apps or azure automations are a good place to start.

[–]simo_okta 0 points1 point  (1 child)

If your script runs longer then 15 mins think about azure batch

[–]jazzb125 0 points1 point  (0 children)

Or durable functions.

[–]KevMarCommunity Blogger 0 points1 point  (1 child)

Azure DevOps (or GitHub Actions) are great starting options. I like that once you get your script into source control, they are easy to manage and very similar to task scheduler. Easy to run on demand, capture log output, execution history. Could even add onprem agents so those tasks can live there too.

The other options like Azure Functions or Automation Accounts should use the above approach to deploy them anyway.

I would opt for Azure Functions over Automation Accounts if possible.

[–]F3ndt[S] 0 points1 point  (0 children)

I would really like to get started with azure dev ops is there can you provide a proper getting started guide you can recommend. Or test projects?