Sunday, 5 February 2017

SharePoint and PowerShell PnP View Default Value of a Field

In this page, the steps are given to get the default value of a Choice Column in a list in SharePoint.

Open PowerShell and execute the following commands. Change the URL to your sharepoint URL and execute with your credentials

Install-Module -Name "SharePointPnPPowerShellOnline"
#Please change Demo to yourname in the url
$siteurl = "https://xxx.sharepoint.com/sites/XXX/Demo"

Connect-SPOnline -Url $siteurl -Credentials (Get-Credential)
#View all Fields for Student List
Get-PnPField -List "FruitsDemo1" -Identity "Color" |select DefaultValue

No comments:

Post a Comment