You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have pipelines running PS scripts calling AzureRM commands like
New-AzureStorageContext
Get-AzureStorageQueue
etc
last Friday 03/07 we noticed those scripts started falling. We guessed it was because AzureRM modules were removed from the agents (deprecated), so we tried to switch to the new Azure PS modules Az, now using commands like the following
New-AzStorageContext
Get-AzStorageQueue
but the scripts are still falling.
We listed the PS modules installed in the agents (Get-Module -ListAvailable) and we couldn't find neither AzureRM nor Az modules.
Do you know when those modules are going to be back?
Thanks,
Robert
Platforms affected
Azure DevOps
GitHub Actions - Standard Runners
GitHub Actions - Larger Runners
Runner images affected
Ubuntu 20.04
Ubuntu 22.04
Ubuntu 24.04
macOS 13
macOS 13 Arm64
macOS 14
macOS 14 Arm64
macOS 15
macOS 15 Arm64
Windows Server 2019
Windows Server 2022
Windows Server 2025
Image version and build link
Current image version: '20250303.1.0'
Is it regression?
Current image version: '20250209.1.0'
Expected behavior
Able to use PS commands like New-AzStorageContext and Get-AzStorageQueue
Actual behavior
This error:
'New-AzStorageContext' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
Hi @bautistagr Thank you for bringing this issue to our attention. We are looking into this issue and will update you on this issue after investigating.
Description
Hi,
We have pipelines running PS scripts calling AzureRM commands like
New-AzureStorageContext
Get-AzureStorageQueue
etc
last Friday 03/07 we noticed those scripts started falling. We guessed it was because AzureRM modules were removed from the agents (deprecated), so we tried to switch to the new Azure PS modules Az, now using commands like the following
New-AzStorageContext
Get-AzStorageQueue
but the scripts are still falling.
We listed the PS modules installed in the agents (Get-Module -ListAvailable) and we couldn't find neither AzureRM nor Az modules.
Do you know when those modules are going to be back?
Thanks,
Robert
Platforms affected
Runner images affected
Image version and build link
Current image version: '20250303.1.0'
Is it regression?
Current image version: '20250209.1.0'
Expected behavior
Able to use PS commands like New-AzStorageContext and Get-AzStorageQueue
Actual behavior
This error:
'New-AzStorageContext' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
Repro steps
$azureStorageContext = New-AzStorageContext -StorageAccountName -StorageAccountKey
The text was updated successfully, but these errors were encountered: