Search Results for

    Show / Hide Table of Contents

    Set-PnPUserProfileProperty

    SYNOPSIS

    Required Permissions

    • SharePoint: Access to the SharePoint Tenant Administration site

    Office365 only: 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

    Requires a connection to a SharePoint Tenant Admin site.

    EXAMPLES

    EXAMPLE 1

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

    Sets the SPS-Location property for the user as specified by the Account parameter

    EXAMPLE 2

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

    Sets the MyProperty multi value property for the user as specified by the Account parameter

    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
    

    RELATED LINKS

    Microsoft 365 Patterns and Practices

    Back to top Generated by DocFX spacer