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.
Hi Sayan,
$url = “<Please put your your site url>”
$spWeb = Get-SPWeb $url
$spList = $spWeb.Lists[“User Information List”]
$spView = $spList.DefaultView
$spView.RowLimit =300
$spView.Update()
$spView | Select RowLimit -> Check that its set or not.
I have tested it and it is working fine.