I have a Custom List that I will have people entering data into from an InfoPath form. However, I do not want anybody to be able to see this list. Is there a way to hide a list form users?
(Visited 16 times, 1 visits today)
Hi, you can hide SharePoint list by using below PS:
$webSite = Get-SPWeb “http://MySharePoint”;
$list = $webSite.Lists[“MyList”];
$list.Hidden = 1;
$list.Update();
(Visited 1 times, 1 visits today)