Lambda is the only option for serverless computing on AWS and Lambda functions running only on Linux machines.
If you need to run server functions on a Windows computer, try Azure Functions . This is the equivalent of Lambda in the Microsoft cloud. Iβm not sure if it works on a computer running Windows Server 2016 and cannot find links to the platform, but I would expect that they use their own technological technologies as a new service.
To confirm if a platform is needed, try this function:
using System.Management; using System.Net; using System.Threading.Tasks; public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log) {
Zanon source share