将powershell脚本作为微服务运行

时间:2016-11-25 14:25:28

标签: windows azure powershell automation microservices

是否可以制作我的PowerShell脚本,作为微服务运行?

Param(
    $a,
    $b
)

$x = [int]$a + [int]$b

echo $x

1 个答案:

答案 0 :(得分:1)

实际上,您应该看一下Azure Functions,它们可以实现您想要的功能,并支持PowerShell /

https://david-obrien.net/2016/07/azure-functions-PowerShell/

https://azure.microsoft.com/en-us/services/functions/