Pregunta

There are many links that shows how to change the settings for Global and Current navigation and we can use Get-PnPNavigationNode to modify the navigation nodes for the Quick Launch but I can't find anything that enable/disable the Quick Launch and Tree View under Navigation Elements. Is it possible with SharePoint PnP/CSOM?

Image attached for clarificationenter image description here

Thanks in advance

¿Fue útil?

Solución

You can do that as below:

Connect-PnPOnline "https://site-url/"
$web = Get-PnPWeb
$web.QuickLaunchEnabled = $true
$web.TreeViewEnabled = $true
$web.Update()
# Execute-PnPQuery is working now, but is being deprecated, so use Invoke-PnPQuery
# Execute-PnPQuery
Invoke-PnPQuery
Licenciado bajo: CC-BY-SA con atribución
scroll top