SharePoint Online : Get List settings properties using PowerShelll
Requirement : Loop through all subsite and site collection to get list settings properties. ********************************************************************************************************************** ####################################################################################### $Username = "ABC@domain-name.com" $Password = ConvertTo-SecureString -String "*******" -AsPlainText -Force $Credentials = New-Object System.Management.Automation.PSCredential ($Username, $Password) $targetWeb = "https://abc.sharepoint.com/sites/sitecollection" ## URL of the site you are uploading to $clientid = "abc-abc-abc-abc-abc" #Add client id of site $clientsecret = "abcdefghijklmnopq=" #Add client secret of site ######################################################################################### try { Connect-PnPOnline -Url $targetWeb -AppId $clientid -AppSecret $clientsecret Write-Host "Connection to site established:...