latest Post

SharePoint 2016 Manage Hidden List and Library using powershell command




  1. Get the list of all hidden list or library: Using below power shell command you can get the list of all list and library                                                                                                       (Get-SPWeb webapp-url).Lists | select Title, Hidden
  2. Show / Hide List or Library:                                                                                                                                                                              $web = Get-SPWeb "your site URL"
    $list = $web.Lists["List or library name"]
    $list.hidden = $false
    $list.updte()
  3. Get the SharePoint Farm build version: Using below comand you can get the SharePoint Farm build version                            (Get-SPFarm).buildversion                                                                             


About Yogendra Bhardwaj

Yogendra Bhardwaj
Yogendra has been in the IT services industry for almost 10 years and Microsoft certified Professional. He specialized in Service and Delivery management, Design and development of Microsoft technology based systems including Collaboration, also having experience of Automation and integration of different platform. He has got extensive experience with Microsoft technology stake for Office 365, SharePoint 2010/2013, and .net , C#. Also having hands on knowledge on Telerik Sitefinity, site core, Visual studio Test Manager, He has extensive experience for App Dev and App Support projects with supporting end to end SDLC process for Support and Maintenance projects.
Recommended Posts × +

0 comments:

Comment