Hello All,
By default it is 30 for List View and Detail View, I would like to increase it to 300.(Item Limit)
For People and Groups( User Information List).For both the views (Detail and List)
Through a power shell script.
Thanks,
Sayan.
$spWeb = Get-SPWeb
$spList = $spWeb.Lists[“User Information List”]
$spView = $spList.DefaultView
$spView.RowLimit=300
$spView.Update()