-
Notifications
You must be signed in to change notification settings - Fork 0
Add PpePublisher
Add a publisher to a Power Platform environment.
Add-PpePublisher [-EnvironmentId] <String> [-UniqueName] <String> [-FriendlyName] <String> [-Prefix] <String>
[[-OptionValuePrefix] <Int32>] [[-Description] <String>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
Creates a new Dataverse publisher (publishers) with the bare minimum of required fields.
Requires the unique name, display name, customization prefix and option value prefix. The option value prefix defaults to a random value between 10000 and 99999 when omitted.
Add-PpePublisher -EnvironmentId "eec2c11a-a4c7-4e1d-b8ed-f62acc9c74c6" -UniqueName "contoso" -FriendlyName "Contoso" -Prefix "cont"
This will create the "Contoso" publisher with the prefix "cont" and a random option value prefix.
Add-PpePublisher -EnvironmentId "eec2c11a-a4c7-4e1d-b8ed-f62acc9c74c6" -UniqueName "contoso" -FriendlyName "Contoso" -Prefix "cont" -OptionValuePrefix 12345 -Description "Contoso publisher"
This will create the "Contoso" publisher with full details.
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 unique name of the publisher. Must be unique across the environment.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThe display / friendly name of the publisher.
Type: String
Parameter Sets: (All)
Aliases: DisplayName
Required: True
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThe customization prefix used for new entities, attributes and relationships for solutions associated with this publisher.
Type: String
Parameter Sets: (All)
Aliases: CustomizationPrefix
Required: True
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThe default option value prefix used for newly created options for solutions associated with this publisher.
Must be between 10000 and 99999. Defaults to a random value in that range when omitted.
Type: Int32
Parameter Sets: (All)
Aliases: CustomizationOptionValuePrefix
Required: False
Position: 5
Default value: 0
Accept pipeline input: False
Accept wildcard characters: FalseAn optional description of the publisher.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 6
Default value: None
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)