从Azure Web Job调用Powershell脚本

时间:2015-10-14 19:32:32

标签: java powershell azure azure-webjobs

我需要从Azure Web作业安装并调用Powershell脚本。然后,Powershell脚本将调用基于java的命令行工具。

而且,在Azure环境中,我怎么知道文件的路径(Powershell和Java)会是什么?

我在考虑这样的事情:

private static void CallPowershell([QueueTrigger("queueName")CloudQueueMessage, TextWriter log)
{
  Process.Start("/pathToFile.ps");
}

感谢。

1 个答案:

答案 0 :(得分:1)

在WebJobs中运行PowerShell脚本是原生的,但这里有一篇关于如何完成它的帖子。

http://blogs.msdn.com/b/nicktrog/archive/2014/01/22/running-powershell-web-jobs-on-azure-websites.aspx

挑战将是如何让PowerShell运行Java代码。