我創建了一個使用PowerShell作爲編程語言的定時器觸發Azure函數。如何獲取在Azure函數中運行的Azure PowerShell模塊版本列表?
我想知道什麼是Azure PowerShell環境中提供的Azure PowerShell模塊及其各自的版本。我嘗試使用下面的PowerShell代碼來獲得我想要的。
Get-Module -ListAvailable -Name *Azure*
所以問題是我應該/可以在Azure函數中做什麼以獲取Azure PowerShell模塊和版本?
注意:在本地Windows PowerShell上運行的相同PowerShell代碼能夠列出Azure PowerShell模塊的名稱,版本和其他詳細信息。