Edit

Share via


Set-EntraPartnerInformation

Sets company information for partners.

Syntax

Default (Default)

Set-EntraPartnerInformation

    [-CompanyType <CompanyType>]
    [-PartnerCompanyName <String>]
    [-PartnerSupportTelephones <String[]>]
    [-PartnerSupportEmails <String[]>]
    [-PartnerCommerceUrl <String>]
    [-PartnerSupportUrl <String>]
    [-PartnerHelpUrl <String>]
    [-TenantId <Guid>]
    [<CommonParameters>]

Description

The Set-EntraPartnerInformation cmdlet is used by partners to set partner-specific properties.

These properties can view by all tenants that the partner has access to.

Examples

Example 1: Update the help URL

Connect-Entra -Scopes 'Organization.ReadWrite.All'
Set-EntraPartnerInformation -PartnerHelpUrl 'http://www.help.contoso.com'

This example shows how to update the help URL.

Example 2: Update the Support URL

Connect-Entra -Scopes 'Organization.ReadWrite.All'
Set-EntraPartnerInformation -PartnerSupportUrl 'http://www.test1.com'

This example shows how to update the support URL.

Example 3: Update the Commerce URL

Connect-Entra -Scopes 'Organization.ReadWrite.All'
Set-EntraPartnerInformation -PartnerCommerceUrl 'http://www.test1.com'

This example shows how to update the commerce URL.

Example 4: Update the SupportEmails

Connect-Entra -Scopes 'Organization.ReadWrite.All'
Set-EntraPartnerInformation -PartnerSupportEmails 'contoso@example.com'

This example shows how to update the support email addresses.

Example 5: Update the SupportTelephones

Connect-Entra -Scopes 'Organization.ReadWrite.All'
$tenantId = (Get-EntraContext).TenantId
Set-EntraPartnerInformation -PartnerSupportTelephones '234234234' -TenantId $tenantId

This example shows how to update support telephone numbers.

Parameters

-CompanyType

Specifies the partner's company type.

Parameter properties

Type:CompanyType
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-PartnerCommerceUrl

Specifies the URL for the partner's commerce website.

Parameter properties

Type:System.String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-PartnerCompanyName

Specifies the partner's company name.

Parameter properties

Type:System.String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-PartnerHelpUrl

Specifies the URL for the partner's Help website.

Parameter properties

Type:System.String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-PartnerSupportEmails

Specifies the support email address for the partner.

Parameter properties

Type:

String[]

Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-PartnerSupportTelephones

Specifies the support telephone numbers for the partner.

Parameter properties

Type:

String[]

Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-PartnerSupportUrl

Specifies the URL for the partner's support website.

Parameter properties

Type:System.String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

-TenantId

Specifies the unique ID of the tenant on which to perform the operation. This parameter provides compatibility with Azure AD and MSOnline for partner scenarios. TenantID is the signed-in user's tenant ID.

Parameter properties

Type:System.String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:True
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.