0

I need to map crawled property to managed refinable string property in sharepoint online using powershell.

I cannot do this through UI interface as I have multiple sites to map. I tried powershell cmdlet like Get-PnPSearchConfiguration https://pnp.github.io/powershell/cmdlets/Get-PnPSearchConfiguration.html , but I cannot find anything which returns me property to map, neither any cmdlet to map the properties.

I checked this link it says through powershell it is not possible https://stackoverflow.com/a/68739248/4549001 , can you suggest any alternative with some sample code.

Thanks in advance.

Surendra Mourya
  • 593
  • 3
  • 8
  • 29
  • Pipe to select object : | -Property * The asterisk will give all properties. – jdweng Jul 24 '23 at 12:34
  • Can you give the entire command, because Get-PnPSearchConfiguration | -CrawledProperties * do not return me anything, may be I am trying incorrectly – Surendra Mourya Jul 24 '23 at 13:17
  • 1
    Get-PnPSearchConfiguration | Select-Object -Property * or Get-PnPSearchConfiguration | Select-Object -Property | Format-List – jdweng Jul 24 '23 at 14:16

0 Answers0