Add-AzureVMImage
Add-AzureVMImage
Parameter Set: Default Add-AzureVMImage [-ImageName] <String> [-MediaLocation] <String> [-OS] <String> [-Label <String> ] [ <CommonParameters>]
The Add-AzureVMImage cmdlet adds a new operating system image to the image repository. The image should be a generalized operating system image, using either Sysprep for Windows or, for Linux, using the appropriate tool for the distribution.
-ImageName<String>
Specifies the name of the image being added to the image repository.
Aliases | none |
Required? | true |
Position? | 1 |
Default Value | none |
Accept Pipeline Input? | true (ByPropertyName) |
Accept Wildcard Characters? | false |
-Label<String>
Specifies a label to give the image.
Aliases | none |
Required? | false |
Position? | named |
Default Value | Image name |
Accept Pipeline Input? | true (ByPropertyName) |
Accept Wildcard Characters? | false |
-MediaLocation<String>
Specifies the location of the physical blob page where the image resides. This is a link to a blob page in the current subscription’s storage.
Aliases | none |
Required? | true |
Position? | 2 |
Default Value | none |
Accept Pipeline Input? | true (ByPropertyName) |
Accept Wildcard Characters? | false |
-OS<String>
Specifies the operating system version of the image.
Aliases | none |
Required? | true |
Position? | 3 |
Default Value | none |
Accept Pipeline Input? | true (ByPropertyName) |
Accept Wildcard Characters? | false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/p/?LinkID=113216).
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
- OSImageContext
Provides the information about the new operating system image.
-------------- Example 1 --------------
This example adds a new operating system image in the repository
C:\PS>Add-AzureVMImage -ImageName imageName -MediaLocation http://yourstorageaccount.blob.core.azure.com/container/sampleImage.vhd -Label imageLabel
Related topics