Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

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

-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

-PartnerCompanyName

Specifies the partner's company name.

Parameter properties

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

Parameter sets

-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

-PartnerSupportEmails

Specifies the support email address for the partner.

Parameter properties

Type:

String[]

Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

-PartnerSupportTelephones

Specifies the support telephone numbers for the partner.

Parameter properties

Type:

String[]

Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

-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

-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

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.

Related Links


Feedback

Was this page helpful?