Skip to content

Instantly share code, notes, and snippets.

@OlafD
Created May 28, 2019 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OlafD/0146048fe904b49ef448b646e73966af to your computer and use it in GitHub Desktop.
Save OlafD/0146048fe904b49ef448b646e73966af to your computer and use it in GitHub Desktop.
Change the FieldTypeKind of a field using PowerShell PnP.
$field = Get-PnPField -List "Documents" -Identity "Users" -Includes FieldTypeKind
$field.FieldTypeKind = [Microsoft.SharePoint.Client.FieldType]::User
$field.Update()
Invoke-PnPQuery
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment