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.
Thanks everybody yes it worked but it is based on default view.Is it possible to do with specific view(Ex: List View,Detail View)
I mean single script will work for both the view “List View” and “Detail View” instead of checking Default View.
Thanks,
Sayan.
Sayan, in the $url, please type your site collection URL, as the User Information List is created on a site collection basis. So if you want to change the User Information List for http://webapplication/sites/somesite, use this as your URL.
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.