Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.1 KB

File metadata and controls

45 lines (31 loc) · 1.1 KB
tags
lists

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

Hide SharePoint list from Site Contents

Author: David Ramalho

If you need to hide the SharePoint list from the UI this simple PowerShell script will hide a specific list from the site contents. This will prevent users from easily accessing the list while, for example, you are still setting it up.

$listName = "listName"
$site = "https://contoso.sharepoint.com/"

m365 login
$list = m365 spo list get --webUrl $site -t $listName -o json | ConvertFrom-Json
m365 spo list set --webUrl $site --id $list.Id --hidden true
#!/bin/bash

# requires jq: https://stedolan.github.io/jq/

listName="listName"
site=https://contoso.sharepoint.com/

m365 login
listId=$(m365 spo list get --webUrl $site -t "$listName" -o json | jq ".Id")
m365 spo list set --webUrl $site --id $listId --hidden true