Latest Posts

Enable On Quick Launch in SharePoint using PowerShell

  • # Provide credentials over here
  • $creds = (New-Object System.Management.Automation.PSCredential "<>",(ConvertTo-SecureString "<>" -AsPlainText -Force))
  •  
  • # Provide URL of the Site over here
  • # If you do not wish to pass credentials hard coded then you can use: -Credentials (Get-Credential). This will prompt to enter credentials
  • Connect-PnPOnline -Url http://MyServer/sites/MySiteCollection -Credentials $creds
  •  
  • $clientContext = Get-PnPContext
  •  
  • $targetlist = Get-PnPList -Identity "Documents"
  • $targetlist.OnQuickLaunch = 1
  • $targetlist.Update()
  •  
  • $clientContext.ExecuteQuery()
  •  
  • Disconnect-PnPOnline 

We value your Feedback:

Page URL:

Name:

Email:


Suggestion:

© 2025 Code SharePoint