external help file: SitecoreInstallFramework-help.xml
online version:
schema: 2.0.0
---
Returns information on the extensions registered with the Sitecore Install Framework.
Get-SitecoreInstallExtension [[-Path] <String>] [[-Type] <String>] [<CommonParameters>]
Fetches all tasks and config functions that are registered with the Sitecore
Install Framework.
By default, only those that are part of the framework itself are returned.
Passing the path to a configuration file will also return the extensions
registered when that configuration is executed.
PS C:\> Get-SitecoreInstallExtension
Will return all tasks and config functions registered by default.
PS C:\> Get-SitecoreInstallExtension -Type Task
Will return all tasks registered by default.
PS C:\> Get-SitecoreInstallExtension -Path c:\configs\example.json
Will return all task and config functions registered by default or through the
given configuration.
The path to a Sitecore Install Framework configuration.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The type of extensions to return.
Type: String
Parameter Sets: (All)
Aliases:
Accepted values: Task, ConfigFunction
Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).