Table of Contents

Set-PnPUserProfileProperty

SYNOPSIS

Required Permissions

  • SharePoint: Sites.FullControl.All, TermStore.ReadWrite.All, User.ReadWrite.All
  • Microsoft Graph: User.Read

Uses the tenant API to retrieve site information. You must connect to the tenant admin website (https://<tenant>-admin.sharepoint.com) with Connect-PnPOnline in order to use this command.

SYNTAX

Single

Set-PnPUserProfileProperty -Account <String> -PropertyName <String> -Value <String>
 [-Connection <PnPConnection>] 

Multi

Set-PnPUserProfileProperty -Account <String> -PropertyName <String> -Values <String[]>
 [-Connection <PnPConnection>] 

DESCRIPTION

Updates the value of a specific user profile property for a single user profile in the SharePoint Online environment. Requires a connection to the SharePoint Tenant Admin site.

EXAMPLES

EXAMPLE 1

Set-PnPUserProfileProperty -Account 'john@domain.com' -Property 'SPS-Location' -Value 'Stockholm'

Sets the SPS-Location property to 'Stockholm' for the user john@domain.com.

EXAMPLE 2

Set-PnPUserProfileProperty -Account 'john@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'

Sets the MyProperty multi value property for the user john@domain.com.

PARAMETERS

-Account

The account of the user, formatted either as a login name, or as a claims identity, e.g. i:0#.f|membership|user@domain.com

Type: String
Parameter Sets: (All)

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Connection

Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection.

Type: PnPConnection
Parameter Sets: (All)

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-PropertyName

The property to set, for instance SPS-Skills or SPS-Location.

Type: String
Parameter Sets: (All)

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Value

The value to set in the case of a single value property.

Type: String
Parameter Sets: Single

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Values

The values set in the case of a multi value property, e.g. "Value 1","Value 2"

Type: String[]
Parameter Sets: Multi

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Microsoft 365 Patterns and Practices