Forum Discussion
María José Pedreira
May 29, 2017Brass Contributor
Allow or avoid items from lists appear in search results with New-PnPList
I have created a Picture Library and I need configure it with value NO for search option. How do I have to use the search property in the New-PnPLIst command? New-PnPList -Title "MyI...
- May 29, 2017If you want to do with PnP, below sample might be helpful to you.
$cdx=Get-PnPContext
$group=Get-PnPList -Identity MyImages
$group.NoCrawl =$True
$group.Update()
$cdx.ExecuteQuery()
May 29, 2017
If you want to do with PnP, below sample might be helpful to you.
$cdx=Get-PnPContext
$group=Get-PnPList -Identity MyImages
$group.NoCrawl =$True
$group.Update()
$cdx.ExecuteQuery()
$cdx=Get-PnPContext
$group=Get-PnPList -Identity MyImages
$group.NoCrawl =$True
$group.Update()
$cdx.ExecuteQuery()
- María José PedreiraMay 29, 2017Brass Contributor
NarasimaPerumal Chandramohan Great!