-
Notifications
You must be signed in to change notification settings - Fork 0
Get PpeSolution
Get solutions from Power Platform environment.
Get-PpeSolution [-EnvironmentId] <String> [[-Name] <String>] [-AsExcelOutput]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
Enables the user to query against the solutions from the Power Platform environment.
Get-PpeSolution -EnvironmentId eec2c11a-a4c7-4e1d-b8ed-f62acc9c74c6
This will fetch all solutions from the environment.
Get-PpeSolution -EnvironmentId eec2c11a-a4c7-4e1d-b8ed-f62acc9c74c6 -Name "*invoice*"
This will fetch solutions with "invoice" in their name from the environment.
Get-PpeSolution -EnvironmentId eec2c11a-a4c7-4e1d-b8ed-f62acc9c74c6 -AsExcelOutput
This will fetch all solutions from the environment. It will then output the results directly into an Excel file.
The id of the environment that you want to work against.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThe name of the solution that you are looking for.
The parameter supports wildcards, but will resolve them into a strategy that matches best practice from Microsoft documentation.
It means that you can only have a single search phrase. E.g.
- -Name "*Retail"
- -Name "Retail*"
- -Name "Retail"
It will search in both friendly name, unique name and id of the solution.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: *
Accept pipeline input: False
Accept wildcard characters: FalseInstruct the cmdlet to output all details directly to an Excel file.
This makes it easier to deep dive into all the details returned from the API, and makes it possible for the user to persist the current state.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False{{ Fill ProgressAction Description }}
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Author: Mötz Jensen (@Splaxi)