Is it possible to make my powershell script, run as a microservice?
Param(
$a,
$b
)
$x = [int]$a + [int]$b
echo $x
Is it possible to make my powershell script, run as a microservice?
Param(
$a,
$b
)
$x = [int]$a + [int]$b
echo $x
Actually, you should take a look at Azure Functions, they achieve exactly that what you want and they support PowerShell/
https://david-obrien.net/2016/07/azure-functions-PowerShell/