I need to install and call a Powershell script from an Azure Web job. The Powershell script will then call a java based command line tool.
And also, in an Azure environment, how would I know what the path to the files (Powershell and Java) would even be?
I am thinking of something like this:
private static void CallPowershell([QueueTrigger("queueName")CloudQueueMessage, TextWriter log)
{
Process.Start("/pathToFile.ps");
}
Thanks.