AllramEst
AllramEst

Reputation: 1449

Where is the option for PowerShell script in Azure Functions

I want to create Azure Function with PowerShell. When I get to the point Azure wants me to choose which type of function I want to create the only available languages are C#, F# and JavaScript. Have I missed something? How can I create an Azure function with PowerShell or do I have to convert the script to any other supported language?

Help much appreciated!

Upvotes: 2

Views: 1836

Answers (1)

gvee
gvee

Reputation: 17161

At the time of writing Powershell is only available when you toggle the "Experimental Language Support" feature:

Experimental Language Support

This is shown in the top-right of the Azure Portal when creating a new function:

Option shown in top-right

Upvotes: 3

Related Questions