How to upload Documents in a folder to SharePoint list in Office 365/SharePoint 2010/2013/2016/2019?
Hello Sharepointers, Below are the powershell script to upload Documents in a folder to SharePoint list in Office 365/SharePoint 2010/2013/2016/2019. if((Get-PSSnapin “Microsoft.SharePoint.PowerShell”) -eq $null) { Add-PSSnapin Microsoft.SharePoint.PowerShell Write-Host “SP Add-in Activated” } $webUrl = “https://lakssite” $docLibraryName = “Employee” $docLibraryUrlName = “Emp” $localFolderPath = “C:\Employee Folder” $web = Get-SPWeb $webUrl Write-Host “webSite = ” + $webSite […]