Search code examples
azureazure-virtual-machineazure-image-builder

Get-AzImageBuilderRunOutput doesn't exist


This Get-AzImageBuilderRunOutput command on Powershell 7.3 returns this error:

$ArtifactId = (Get-AzImageBuilderRunOutput -ImageTemplateName $imageTemplateName -ResourceGroupName $imageResourceGroup).ArtifactId


 The term 'Get-AzImageBuilderRunOutput' is not recognized as a name of a cmdlet, function, script file, or executable program. 

Running Install-Module AzureRM doesn't help.

What do I need to install to get Get-AzImageBuilderRunOutput.


Solution

  • I tried in my environment with same commands and got same error:

    Console:

    enter image description here

    The command Get-AzImageBuilderRunOutput is previous version of the documentation, The latest command is Get-AzImageBuilderTemplateRunOutput

    Command:

    Get-AzImageBuilderTemplateRunOutput -ImageTemplateName < Template name > ResourceGroupName  < resource grp name >
    

    Console:

    Before using command, please make sure you have installed module Az.ImageBuilder in your environment.

    Command:

    Install-module -Name Az.ImageBuilder
    

    enter image description here