Sharepoint 2010 Create External List using Powershell
SharePoint 2010 has introduced a new type of List called External List. The External List is used for displaying content that comes from Business Connectivity Services (BCS) Enterprise content types. Business Connectivity Services is the replacement in SharePoint 2010 for The Business Data Catalog (BDC) in SharePoint 2007. External List needs External Content type for creating itself. External Content Type is created using either SharePoint Designer 2010 or Visual Studio 2010. Once the External Content Type is created, you can create the external list either from the Create page in SharePoint or via SharePoint Designer or Powershell. Here is an example to create External List Using Powershell. clear Remove-PSSnapin Microsoft.SharePoint.Powershell -ErrorAction SilentlyContinue Add-PSSnapin Microsoft.SharePoint.Powershell $SiteUrl = " Site Url " $BusinessListName = " BusinessList " $ConfigListName = "Config" $spweb = Get-SPWeb $SiteUrl $List