12-14-2020 07:33 PM
I'm using PnP PowerShell to create SharePoint Hub navigation nodes (Add-PnPNavigationNode), but cannot find a way to configure the audience targeting via PowerShell.
I tried this. It completed without error but it did NOT work:
$node = Get-PnPNavigationNode -Id 1234
Get-PnPProperty -ClientObject $node -Property "AudienceIds"
$node.AudienceIds.Add("3270e13c-1031-42a3-9104-54139a37527a")
$node.Update()
Any insight would be greatly appreciated!
12-14-2020 11:19 PM
As per my knowledge, currently it is not possible to set audience targeting groups to specific navigation node using PnP PowerShell.
You can only define if the navigation menu on a modern site should be enabled for modern audience using -NavAudienceTargetingEnabled parameter for Set-PnPWeb cmdlet. Check below reference:
Please click Mark as Best Response if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
12-15-2020 09:09 AM
@ganeshsanap
Thanks! I'm aware of how to enable audience targeting through PowerShell. I need to do the next step which is to add groups to the 'audiences to target' field.