< Back

Get-AzureServiceAvailableExtension

Wed Jan 30, 2019 5:44 pm

NAME Get-AzureServiceAvailableExtension



SYNOPSIS

Gets information about the available extensions for hosted services.





SYNTAX

Get-AzureServiceAvailableExtension [[-ExtensionName] <String>] [[-ProviderNamespace] <String>] [-AllVersions] [-Profile <AzureSMProfile>]

[-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]



Get-AzureServiceAvailableExtension [[-ExtensionName] <String>] [[-ProviderNamespace] <String>] [-Version] <String> [-Profile <AzureSMProfile>]

[-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]





DESCRIPTION

The Get-AzureServiceAvailableExtension cmdlet gets information for the latest available extensions for hosted services.





PARAMETERS

-ExtensionName <String>

Specifies the extension name.



Required? false

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ProviderNamespace <String>

Specifies the extension provider namespace.



Required? false

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Profile <AzureSMProfile>

Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-InformationAction <ActionPreference>





Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-InformationVariable <String>





Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-AllVersions [<SwitchParameter>]

Indicates that this cmdlet gets all versions of an extension.



Required? true

Position? 2

Default value False

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Version <String>

Specifies the extension version.



Required? true

Position? 2

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



NOTES









-------------------------- Example 1: Get available extensions --------------------------



PS C:\\>Get-AzureServiceAvailableExtension



ProviderNameSpace : Microsoft.Windows.Azure.Extensions

ExtensionName : RDP

Version : 1.0

Label : Microsoft Azure Remote Desktop Extension

Description : Microsoft Azure Remote Desktop Extension

HostingResources : WebOrWorkerRole

ThumbprintAlgorithm : sha1

PublicConfigurationSchema : <?xml version="1.0" encoding="utf-8"?><xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"

xmlns:xs="http://www.w3.org/2001/XMLSchema"><xs:element name="PublicConfig"><xs:complexType><xs:sequence><xs:element

name="UserName" type="xs:string" minOccurs="1" /><xs:element name="Expiration" type="xs:string" minOccurs="1"

/></xs:sequence></xs:complexType></xs:element></xs:schema>

PrivateConfigurationSchema : <?xml version="1.0" encoding="utf-8"?><xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"

xmlns:xs="http://www.w3.org/2001/XMLSchema"><xs:element name="PrivateConfig"><xs:complexType><xs:sequence><xs:element

name="Password" type="xs:string" /></xs:sequence></xs:complexType></xs:element></xs:schema>

OperationDescription : Get-AzureServiceAvailableExtension

OperationId : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

OperationStatus : Succeeded



This command gets all available extensions.

-------------------------- Example 2: Get extensions in a specified namespace --------------------------



PS C:\\>Get-AzureServiceAvailableExtension -ProviderNamespace Microsoft.Windows.Azure.Extensions -ExtensionName "RDP" -AllVersions



ProviderNameSpace : Microsoft.Windows.Azure.Extensions

ExtensionName : RDP

Version : 1.0.0.1

Label : Microsoft Azure Remote Desktop Extension

Description : Microsoft Azure Remote Desktop Extension

HostingResources : WebOrWorkerRole

ThumbprintAlgorithm : sha1

PublicConfigurationSchema : <?xml version="1.0" encoding="utf-8"?><xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"

xmlns:xs="http://www.w3.org/2001/XMLSchema"><xs:element name="PublicConfig"><xs:complexType><xs:sequence><xs:element

name="UserName" type="xs:string" minOccurs="1" /><xs:element name="Expiration" type="xs:string" minOccurs="1"

/></xs:sequence></xs:complexType></xs:element></xs:schema>

PrivateConfigurationSchema : <?xml version="1.0" encoding="utf-8"?><xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"

xmlns:xs="http://www.w3.org/2001/XMLSchema"><xs:element name="PrivateConfig"><xs:complexType><xs:sequence><xs:element

name="Password" type="xs:string" /></xs:sequence></xs:complexType></xs:element></xs:schema>

OperationDescription : Get-AzureServiceAvailableExtension

OperationId : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

OperationStatus : Succeeded



This command gets the extensions with a specified name in a specified namespace.

-------------------------- Example 3: Get a specific version of an extension --------------------------



PS C:\\>Get-AzureServiceAvailableExtension -ProviderNamespace Microsoft.Windows.Azure.Extensions -ExtensionName "RDP" -Version 1.0.0.1



ProviderNameSpace : Microsoft.Windows.Azure.Extensions

ExtensionName : RDP

Version : 1.0.0.1

Label : Microsoft Azure Remote Desktop Extension

Description : Microsoft Azure Remote Desktop Extension

HostingResources : WebOrWorkerRole

ThumbprintAlgorithm : sha1

PublicConfigurationSchema : <?xml version="1.0" encoding="utf-8"?><xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"

xmlns:xs="http://www.w3.org/2001/XMLSchema"><xs:element name="PublicConfig"><xs:complexType><xs:sequence><xs:element

name="UserName" type="xs:string" minOccurs="1" /><xs:element name="Expiration" type="xs:string" minOccurs="1"

/></xs:sequence></xs:complexType></xs:element></xs:schema>

PrivateConfigurationSchema : <?xml version="1.0" encoding="utf-8"?><xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"

xmlns:xs="http://www.w3.org/2001/XMLSchema"><xs:element name="PrivateConfig"><xs:complexType><xs:sequence><xs:element

name="Password" type="xs:string" /></xs:sequence></xs:complexType></xs:element></xs:schema>

OperationDescription : Get-AzureServiceAvailableExtension

OperationId : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

OperationStatus : Succeeded



This command gets information about a specific version of an extension.



RELATED LINKS

Get-AzureServiceExtension