external help file | applicable | schema |
---|---|---|
SharePoint Online |
2.0.0 |
Office365 only: Uses the tenant API to retrieve site information.
You must connect to the tenant admin website (https://:-admin.sharepoint.com) with Connect-PnPOnline in order to use this command.
Set-PnPUserProfileProperty -Value <String>
-Account <String>
-PropertyName <String>
[-Connection <SPOnlineConnection>]
Set-PnPUserProfileProperty -Values <String[]>
-Account <String>
-PropertyName <String>
[-Connection <SPOnlineConnection>]
Requires a connection to a SharePoint Tenant Admin site.
PS:> Set-PnPUserProfileProperty -Account '[email protected]' -Property 'SPS-Location' -Value 'Stockholm'
Sets the SPS-Location property for the user as specified by the Account parameter
PS:> Set-PnPUserProfileProperty -Account '[email protected]' -Property 'MyProperty' -Values 'Value 1','Value 2'
Sets the MyProperty multi value property for the user as specified by the Account parameter
The account of the user, formatted either as a login name, or as a claims identity, e.g. i:0#.f|membership|[email protected]
Type: String
Parameter Sets: (All)
Required: True
Position: Named
Accept pipeline input: False
The property to set, for instance SPS-Skills or SPS-Location
Type: String
Parameter Sets: (All)
Required: True
Position: Named
Accept pipeline input: False
The value to set in the case of a single value property
Type: String
Parameter Sets: Single
Required: True
Position: Named
Accept pipeline input: False
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
Accept pipeline input: False
Optional connection to be used by cmdlet. Retrieve the value for this parameter by eiter specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection.
Type: SPOnlineConnection
Parameter Sets: (All)
Required: False
Position: Named
Accept pipeline input: False