Download sharepoint common framework
Author: A | 2025-04-24
Download SharePoint Common Framework 1.7.3 - A framework that allows you to perform actions in SharePoint by managing entities
SharePoint Common Framework - FREE Download SharePoint Common Framework
This SharePoint Freamework toolchain represents a set of building tools, libraries and framework packages. which help building and deploying client side projects.Toolchain helps to client-side components to be developed and tested on an environment that has SharePoint Workbench.You can also use toolchain for code compilation, packaging the client-side projects into SharePoint app package.What is Required Toolchain for SharePoint FrameworkSharePoint Framework Tool ChainnpmSharePoint Framework uses npm to manage different modules in the project. npm is one of the most preferred package manager for JavaScript client-side development. npm includes one or more JavaScript code files which are called modules. When you install npm it installs its modules and dependency packages.SharePoint Framework not only uses npm packages but also uses its dependencies and publishes its own packages to the npm registry.SharePoint Framework packagesSharePoint Framework contains several npm packages which work together for developers. List of those packages are provided below:@microsoft/generator-sharepointIt is a Yeoman plug-in which is used to setup a client side project for SharePoint Framework. It automatically adds all defaults, best practices and required packages.@microsoft/sp-client-baseIt defines core libraries of client side application required for SharePoint Framework. @microsoft/sp-webpart-workbenchThis is local environment for testing and debugging client side application.@microsoft/sp-module-loaderIt is responsible for versioning and loading client side components, web-parts and other assets. It is built upon SystemJS and WebPack standards and is the first module of SharePoint Framework to load on page.@microsoft/sp-module-interfacesIt defines various shared interfaces used by other modules of SharePoint Framework.@microsoft/sp-lodash-subsetIt provides custom bundle of lodash for use with SharePoint Framework’s module loader. It only includes a subset of most essential functions.@microsoft/sp-tslint-rulesIt defines custom tslint rules for usage with SharePoint client-side projects.@microsoft/office-ui-fabric-react-bundleIt provides a custom bundle of office-ui-fabric-react that is optimized for use with the SharePoint Framework’s module loader.Common building tools packagesSharePoint also uses few building tools which are used to perform required building tasks for SharePoint Framework like compiling Typescript to JavaScript and SCSS to CSS.@microsoft/sp-build-core-tasks@microsoft/sp-build-web@microsoft/gulp-core-build@microsoft/loader-cased-file@microsoft/loader-load-themed-styles@microsoft/loader-raw-script@microsoft/loader-set-webpack-publicPackage installationThe SharePoint Generator installs required npm packages in the project. These packages can be installed in two ways either locally or globally.In the case of web part projects, web part code depends on various SharePoint and common build packages therefore it requires these packages to be installed locally.When we install any package, it is provisioned in node_modules folder in project structure. This folder contains the packages along with all of the dependencies.SharePoint Framework packages are located under the node_module\@microsoft folder. @microsoft denotes that these npm Add-Ins beyond April 2nd, 2026.To learn more about how to migrate SharePoint Add-Ins to alternative solutions check out these articles and accompanying videos.OverviewSharePoint Add-InsSharePoint Add-Ins come in two flavors: SharePoint hosted Add-Ins and provider hosted Add-Ins, both of which are effected by this retirement.SharePoint hosted Add-Ins primarily bring UX elements to the site the Add-In was installed into and the app web that was created for the Add-In. A common use case is showing SharePoint Add-In web parts on pages of the host web, using SharePoint Framework based web parts is the recommended alternative here. These applications use JavaScript for writing business logic using the logged in user context to authenticate.Provider hosted SharePoint Add-Ins run outside of SharePoint and typically have their own UX. They use Azure ACS (Access Control Services) as auth layer to enable calling back into the host web where the SharePoint Add-In was installed. SharePoint provider hosted Add-Ins can be rewritten in various ways as software as a service application hosted externally (e.g. Microsoft Azure) and optionally also offered as Teams application. The auth model for these will be based on Microsoft Entra ID. If there are requirements to integrate in the SharePoint UX then SharePoint Framework can be used as calling into external application APIs can be done from SharePoint Framework solutions.SharePoint Server support for SharePoint Add-InsUsers of SharePoint Server running on-premises can, if configured by the farm admins, install SharePoint Add-Ins from the public marketplace or from the app catalog. The option to acquire and use SharePoint Add-Ins via the app catalog will not be impacted by this retirement, acquiring SharePoint Add-Ins from the public marketplace will stop working from April 2nd, 2026.Project Online support for SharePoint Add-InsProject Online is an extension on top of SharePoint Online and SharePoint Add-Ins could also have beenSharePoint Common Framework 1.7.3 - Download - Softpedia
Skip to main content This browser is no longer supported. Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support. PnP timer job framework Article06/29/2022 In this article -->The PnP timer job framework is a set of classes designed to ease the creation of background processes that operate against SharePoint sites. The timer job framework is similar to on-premises full trust code timer jobs (SPJobDefinition). The primary difference between the timer job framework and the full trust code timer job is that the timer job framework only uses client-side APIs and therefore can (and should) be run outside of SharePoint. The timer job framework makes it possible to build timer jobs that operate against SharePoint Online.After a timer job has been created, it needs to be scheduled and executed. The two most common options are:When Microsoft Azure is the hosting platform, timer jobs can be deployed and run as Azure WebJobs.When Windows Server is the hosting platform (for example, for on-premises SharePoint), timer jobs can be deployed and run in Windows Scheduler.For a video introduction to timer jobs, see the video Introduction to the PnP timer job framework, which introduces the timer job framework and demonstrates the simple timer job example.Simple timer job exampleIn this section, you will learn how to create a very simple timer job. The goal of this sample is to provide the reader a quick view; later on we provide a more detailed explanation of the timer job framework.NoteFor a more extensive PnP solution with ten individual timer job examples, from "Hello world" samples to actual content expiration jobs, see Core.TimerJobs.Samples.The following steps describe how to create a simple timer job.Step 1: Create a Console project and reference PnP CoreCreate a new project of the type "console" and reference the. Download SharePoint Common Framework 1.7.3 - A framework that allows you to perform actions in SharePoint by managing entities SharePoint Framework development tips: create shortcut(s) for your common SharePoint Framework generator commandsSharePoint Common Framework – CodePlex Archive
2 minute read In many situation you would like to do a offline installation of SharePoint 2013 or you are required to do a offline installation because you do not have a network connection on the server.The prerequisites installer of SharePoint 2013 downloads the requirements directly of the internet. So we will have to make sure this will not be done.But first off all we will have to install several Windows Server features. You can install these features by using the following PowerShell command:Import-Module ServerManagerAdd-WindowsFeature Net-Framework-Features,Web-Server,Web-WebServer,Web-Common-Http,Web-Static-Content,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-App-Dev,Web-Asp-Net,Web-Net-Ext,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Health,Web-Http-Logging,Web-Log-Libraries,Web-Request-Monitor,Web-Http-Tracing,Web-Security,Web-Basic-Auth,Web-Windows-Auth,Web-Filtering,Web-Digest-Auth,Web-Performance,Web-Stat-Compression,Web-Dyn-Compression,Web-Mgmt-Tools,Web-Mgmt-Console,Web-Mgmt-Compat,Web-Metabase,Application-Server,AS-Web-Support,AS-TCP-Port-Sharing,AS-WAS-Support, AS-HTTP-Activation,AS-TCP-Activation,AS-Named-Pipes,AS-Net-Framework,WAS,WAS-Process-Model,WAS-NET-Environment,WAS-Config-APIs,Web-Lgcy-Scripting,Web-AppInit,Windows-Identity-Foundation,Server-Media-Foundation,Xps-Viewer Note:In this PowerShell command I also included: “Web-AppInit” . This is the Application Initialization feature (This is not a prerequisites) but can come very handy for warming up your web applications (IIS 8.0 Application Initialization reduces response time for SharePoint 2013).When this is done we can make use of the prerequisites installer that is included on the SharePoint 2013 installation drive. By supplying the executable with certain arguments it will look for the installation files on the locale drive.ArgumentInstallationSQLNCliMicrosoft SQL Server 2008 R2 SP1 Native ClientIDFX11Microsoft Identity ExtensionsIDFXWindows Identity Foundation (KB974405)SyncMicrosoft Sync Framework Runtime v1.0 SP1 (x64)AppFabricWindows Server AppFabricKB2671763Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)MSIPCClientMicrosoft Information Protection and Control ClientWCFDataServicesMicrosoft WCF Data Services 5.0WCFDataServices56 (Added in the SP1 installation)Microsoft WCF Data Services 5.6When you have downloaded the prerequisites by using the below links:Microsoft SQL Server 2008 R2 SP1 Native ClientMicrosoft Sync Framework Runtime v1.0 SP1 (x64)Windows Server AppFabricCumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)Windows Identity Foundation (KB974405)Microsoft Identity ExtensionsMicrosoft Information Protection and Control ClientMicrosoft WCF Data Services 5.0Microsoft WCF Data Services 5.6 (Needed when doing a SP1 installation)After downloading the file we can make use of the following command to start the offline installation of the prerequisites: Start-Process "\PrerequisiteInstaller.exe" -ArgumentList "`/SQLNCli:`"\sqlncli.msi`" ` /IDFX:`"\Windows6.1-KB974405-x64.msu`" ` /IDFX11:`"\MicrosoftIdentityExtensions-64.msi`" ` /Sync:`"\Synchronization.msi`" ` /AppFabric:`"\WindowsServerAppFabricSetup_x64.exe`" ` /KB2671763:`"\AppFabric1.1-RTM-KB2671763-x64-ENU.exe`" ` /MSIPCClient:`"\setup_msipc_x64.msi`" ` /WCFDataServices:`"\WcfDataServices.exe`" ` /WCFDataServices56:`"\WcfDataServices56.exe`""On the TechNet Download site you can also find the scripts created by “Craig Lussier” that you can use to start a offline installation. Keep in mind that these script are not for SharePoint 2013 SP1 (If you want them compatible for SP1 you will have the additional arguments).Download and Install SharePoint 2013 Prerequisites on Windows Server 2012 Microsoft strives to deliver utmost value to our customers through modern, optimized, secure solutions in this newly evolved world focused on digital transformation. As part of this evolution of Microsoft 365 solutions we will be retiring the SharePoint Add-In extensibility model and believe Microsoft 365 customers will be better served by modern SharePoint extensibility models.SharePoint Add-Ins will stop working for new tenants as of November 1st, 2024 and they will stop working for existing tenants and will be fully retired as of April 2nd, 2026. This applies to all environments including Government Clouds and Department of Defense.In parallel with the SharePoint Add-In retirement, adding, updating and acquiring SharePoint Add-Ins via the public marketplace (a.k.a. store) will also be retiring. As of March 1st, 2024 Microsoft will not accept new SharePoint Add-Ins for listing in the public marketplace, from July 1st, 2024 SharePoint Add-Ins cannot be acquired anymore from the public marketplace. Using a tenant app catalog will stay supported and enables 3rd parties to offer their SharePoint Add-Ins until April 2nd, 2026.If you are using custom developed SharePoint Add-Ins, we recommend migrating them to SharePoint Framework based solutions. If you’ve acquired SharePoint Add-Ins from the public marketplace or from a 3rd party then you should inquire for an updated version that does not depend on the SharePoint Add-In extensibility model. There will not be an option to extend SharePoint Add-Ins beyond April 2nd, 2026.To learn more about how to migrate SharePoint Add-Ins to alternative solutions check out these articles and accompanying videos.SharePoint Add-Ins come in two flavors: SharePoint hosted Add-Ins and provider hosted Add-Ins, both of which are effected by this retirement.SharePoint hosted Add-Ins primarily bring UX elements to the site the Add-In was installed into and the app web that was created for the Add-In. A common use case is showing SharePoint Add-In web parts on pages of the host web, using SharePoint Framework based web parts is the recommended alternative here. These applications use JavaScript for writing business logic using the logged in user context to authenticate.Provider hosted SharePoint Add-Ins run outside of SharePoint and typically have their own UX. They use Azure ACS (Access Control Services) as auth layer to enable calling back into the host web where the SharePoint Add-In was installed. SharePoint provider hosted Add-Ins can be rewritten in various ways as software as a service application hosted externally (e.g. Microsoft Azure) and optionally also offered as Teams application. The auth model for these will be based on Microsoft Entra ID. If there are requirements to integrate in the SharePoint UX then SharePoint Framework can be used as calling into external application APIs can be done from SharePoint Framework solutions.Users of SharePoint Server running on-premisesSharePoint Common Framework CodePlex Archive
Skip to main content This browser is no longer supported. Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support. Article03/20/2023 In this article -->Article contains details around supported development capabilities in the SharePoint 2019.Supported capabilitiesModern and classic pagesModern sites - modern team and communication siteClassic sites are also supportedColumn formatting - Only supports "Basic Styled Syntax", "Excel Styled Syntax" is not supported.SharePoint Framework client-side web parts with SharePoint Framework v1.4.xSharePoint Framework extensions in modern experiences with SharePoint Framework v1.4.xWebhooks for list itemsAsset packaging and automatic JavaScript file hosting from app catalog"Tenant" scoped deployment of SharePoint Framework solutionsALM APIs for add-in and SharePoint Framework solution managementNot supported capabilitiesSite Designs and Site ScriptsHub sitesSite collection app catalog"Tenant" propertiesCustom modern themes for communication site or modern team siteYou should always have the latest SharePoint Framework version installed and choose the target environment for the newly created solution to be SharePoint 2019. This option will create you an optimal solution structure with the matching SharePoint Framework version for SharePoint 2019.Visual Studio 2017 v15.9 or includes SharePoint 2019 tooling extensions for SharePoint add-ins, farm solutions, and sandbox solutions.ImportantThere are no plans to change or upgrade the supported SharePoint Framework version for SharePoint 2019.NoteBy a rule of a thumb, SharePoint Framework works with any JavaScript framework version. It's however important to evaluate and validate behavior of the chosen JavaScript framework in the used SharePoint User Interface. There are differences between the support of the different web technologies on classic and modern experiences. Some newer JavaScript framework can take advantage of capabilities which are not supported on the SharePoint 2019 platform.See alsoGetting started with creating SharePoint Framework solutions for SharePoint 2019 YouTube videoCommunity call where SharePoint 2019 developer platform is covered YouTube video --> Additional resources In this articleCommon (mis)conceptions about SharePoint Framework!
Applies To.NET This also applies to: Microsoft .NET Framework 3.5 Summary This security update resolves a vulnerability in Microsoft .NET Framework that could allow remote code execution when .NET Framework processes untrusted input. An attacker who successfully exploits this vulnerability in software by using .NET Framework could take control of an affected system. The attacker could then install programs; view, change, or delete data; or create new accounts that have full user rights. Users whose accounts are configured to have fewer user rights on the system could be less affected than users who operate with administrative user rights. To exploit the vulnerability, an attacker would first have to convince the user to open a malicious document or application. This security update addresses the vulnerability by correcting how .NET Framework validates untrusted input. To learn more about this vulnerability, see Microsoft Common Vulnerabilities and Exposures CVE-2018-8421. Important If you install a language pack after you install this update, you must reinstall this update. Therefore, we recommend that you install any language packs that you need before you install this update. For more information, see Add language packs to Windows. Additional information about this security update For more information about this security update as it relates to Windows Server 2012, see the following article in the Microsoft Knowledge Base: 4457915 Security Only updates for .NET Framework 3.5, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, and 4.7.2 for Windows Server 2012 (KB 4457915) Known issues After the September 2018 .NET Framework security update is applied to resolve CVE-2018-8421 (.NET Framework remote code execution vulnerability), SharePoint out-of-the-box workflows stop working. For more information about this known issue, see the following article in the Microsoft Knowledge Base: 4465015 SharePoint Workflows stop working after you install .NET security updates for CVE-2018-8421 How to obtain and install the. Download SharePoint Common Framework 1.7.3 - A framework that allows you to perform actions in SharePoint by managing entities SharePoint Framework development tips: create shortcut(s) for your common SharePoint Framework generator commandsSharePoint Common Framework v.1.3 - WinSite
Commonly used Windows SharePoint Services objects:The SPWeb.Properties and SPListItem.Properties properties return an object of type Microsoft.SharePoint.Utilities.SPPropertyBag, which overrides theSystem.Collections.Specialized.StringDictionary object. The only difference between the two is that the SPPropertyBag object adds an Update method that commits changes to the property bag to the appropriate Windows SharePoint Services content database. Whenever you make changes to the property bag, you must call the Update method to save all the changes.Using this technique, you can create application pages, site pages, Web Parts, or anything that can write to the current site's property bag.SharePoint ListsA third option available to you is to use SharePoint lists. SharePoint lists are appropriate to use when the timer job is associated with a specific site collection. You can create a special list (or lists) in the top level site of the site collection that the timer job interacts with. Working with SharePoint lists in timer jobs is no different from doing the same thing in a Web Part.Hierarchical Object StorageThe WSS SDK mentions a new addition to Windows SharePoint Services that enables you to create and interact with administrative data by using a common framework to interact with the hierarchical object store. This storage construct lets you keep the configuration data for timer jobs in Windows SharePoint Services, instead of in some external file and not tied so closely with a particular SharePoint site as the list or property bag options do.To add items to the object store, first create a class that will contain the data for the data to store. This class must inherit from theMicrosoft.SharePoint.Administration.SPPersistedObject object and must be serializable. To be serializable, it must have a default constructor that takes zero parameters. All properties that should be persisted must be implemented as public fields and decorated with theMicrosoft.SharePoint.Administration.PersistedAttribute attribute. The following class isComments
This SharePoint Freamework toolchain represents a set of building tools, libraries and framework packages. which help building and deploying client side projects.Toolchain helps to client-side components to be developed and tested on an environment that has SharePoint Workbench.You can also use toolchain for code compilation, packaging the client-side projects into SharePoint app package.What is Required Toolchain for SharePoint FrameworkSharePoint Framework Tool ChainnpmSharePoint Framework uses npm to manage different modules in the project. npm is one of the most preferred package manager for JavaScript client-side development. npm includes one or more JavaScript code files which are called modules. When you install npm it installs its modules and dependency packages.SharePoint Framework not only uses npm packages but also uses its dependencies and publishes its own packages to the npm registry.SharePoint Framework packagesSharePoint Framework contains several npm packages which work together for developers. List of those packages are provided below:@microsoft/generator-sharepointIt is a Yeoman plug-in which is used to setup a client side project for SharePoint Framework. It automatically adds all defaults, best practices and required packages.@microsoft/sp-client-baseIt defines core libraries of client side application required for SharePoint Framework. @microsoft/sp-webpart-workbenchThis is local environment for testing and debugging client side application.@microsoft/sp-module-loaderIt is responsible for versioning and loading client side components, web-parts and other assets. It is built upon SystemJS and WebPack standards and is the first module of SharePoint Framework to load on page.@microsoft/sp-module-interfacesIt defines various shared interfaces used by other modules of SharePoint Framework.@microsoft/sp-lodash-subsetIt provides custom bundle of lodash for use with SharePoint Framework’s module loader. It only includes a subset of most essential functions.@microsoft/sp-tslint-rulesIt defines custom tslint rules for usage with SharePoint client-side projects.@microsoft/office-ui-fabric-react-bundleIt provides a custom bundle of office-ui-fabric-react that is optimized for use with the SharePoint Framework’s module loader.Common building tools packagesSharePoint also uses few building tools which are used to perform required building tasks for SharePoint Framework like compiling Typescript to JavaScript and SCSS to CSS.@microsoft/sp-build-core-tasks@microsoft/sp-build-web@microsoft/gulp-core-build@microsoft/loader-cased-file@microsoft/loader-load-themed-styles@microsoft/loader-raw-script@microsoft/loader-set-webpack-publicPackage installationThe SharePoint Generator installs required npm packages in the project. These packages can be installed in two ways either locally or globally.In the case of web part projects, web part code depends on various SharePoint and common build packages therefore it requires these packages to be installed locally.When we install any package, it is provisioned in node_modules folder in project structure. This folder contains the packages along with all of the dependencies.SharePoint Framework packages are located under the node_module\@microsoft folder. @microsoft denotes that these npm
2025-04-11Add-Ins beyond April 2nd, 2026.To learn more about how to migrate SharePoint Add-Ins to alternative solutions check out these articles and accompanying videos.OverviewSharePoint Add-InsSharePoint Add-Ins come in two flavors: SharePoint hosted Add-Ins and provider hosted Add-Ins, both of which are effected by this retirement.SharePoint hosted Add-Ins primarily bring UX elements to the site the Add-In was installed into and the app web that was created for the Add-In. A common use case is showing SharePoint Add-In web parts on pages of the host web, using SharePoint Framework based web parts is the recommended alternative here. These applications use JavaScript for writing business logic using the logged in user context to authenticate.Provider hosted SharePoint Add-Ins run outside of SharePoint and typically have their own UX. They use Azure ACS (Access Control Services) as auth layer to enable calling back into the host web where the SharePoint Add-In was installed. SharePoint provider hosted Add-Ins can be rewritten in various ways as software as a service application hosted externally (e.g. Microsoft Azure) and optionally also offered as Teams application. The auth model for these will be based on Microsoft Entra ID. If there are requirements to integrate in the SharePoint UX then SharePoint Framework can be used as calling into external application APIs can be done from SharePoint Framework solutions.SharePoint Server support for SharePoint Add-InsUsers of SharePoint Server running on-premises can, if configured by the farm admins, install SharePoint Add-Ins from the public marketplace or from the app catalog. The option to acquire and use SharePoint Add-Ins via the app catalog will not be impacted by this retirement, acquiring SharePoint Add-Ins from the public marketplace will stop working from April 2nd, 2026.Project Online support for SharePoint Add-InsProject Online is an extension on top of SharePoint Online and SharePoint Add-Ins could also have been
2025-04-06Skip to main content This browser is no longer supported. Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support. PnP timer job framework Article06/29/2022 In this article -->The PnP timer job framework is a set of classes designed to ease the creation of background processes that operate against SharePoint sites. The timer job framework is similar to on-premises full trust code timer jobs (SPJobDefinition). The primary difference between the timer job framework and the full trust code timer job is that the timer job framework only uses client-side APIs and therefore can (and should) be run outside of SharePoint. The timer job framework makes it possible to build timer jobs that operate against SharePoint Online.After a timer job has been created, it needs to be scheduled and executed. The two most common options are:When Microsoft Azure is the hosting platform, timer jobs can be deployed and run as Azure WebJobs.When Windows Server is the hosting platform (for example, for on-premises SharePoint), timer jobs can be deployed and run in Windows Scheduler.For a video introduction to timer jobs, see the video Introduction to the PnP timer job framework, which introduces the timer job framework and demonstrates the simple timer job example.Simple timer job exampleIn this section, you will learn how to create a very simple timer job. The goal of this sample is to provide the reader a quick view; later on we provide a more detailed explanation of the timer job framework.NoteFor a more extensive PnP solution with ten individual timer job examples, from "Hello world" samples to actual content expiration jobs, see Core.TimerJobs.Samples.The following steps describe how to create a simple timer job.Step 1: Create a Console project and reference PnP CoreCreate a new project of the type "console" and reference the
2025-04-012 minute read In many situation you would like to do a offline installation of SharePoint 2013 or you are required to do a offline installation because you do not have a network connection on the server.The prerequisites installer of SharePoint 2013 downloads the requirements directly of the internet. So we will have to make sure this will not be done.But first off all we will have to install several Windows Server features. You can install these features by using the following PowerShell command:Import-Module ServerManagerAdd-WindowsFeature Net-Framework-Features,Web-Server,Web-WebServer,Web-Common-Http,Web-Static-Content,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-App-Dev,Web-Asp-Net,Web-Net-Ext,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Health,Web-Http-Logging,Web-Log-Libraries,Web-Request-Monitor,Web-Http-Tracing,Web-Security,Web-Basic-Auth,Web-Windows-Auth,Web-Filtering,Web-Digest-Auth,Web-Performance,Web-Stat-Compression,Web-Dyn-Compression,Web-Mgmt-Tools,Web-Mgmt-Console,Web-Mgmt-Compat,Web-Metabase,Application-Server,AS-Web-Support,AS-TCP-Port-Sharing,AS-WAS-Support, AS-HTTP-Activation,AS-TCP-Activation,AS-Named-Pipes,AS-Net-Framework,WAS,WAS-Process-Model,WAS-NET-Environment,WAS-Config-APIs,Web-Lgcy-Scripting,Web-AppInit,Windows-Identity-Foundation,Server-Media-Foundation,Xps-Viewer Note:In this PowerShell command I also included: “Web-AppInit” . This is the Application Initialization feature (This is not a prerequisites) but can come very handy for warming up your web applications (IIS 8.0 Application Initialization reduces response time for SharePoint 2013).When this is done we can make use of the prerequisites installer that is included on the SharePoint 2013 installation drive. By supplying the executable with certain arguments it will look for the installation files on the locale drive.ArgumentInstallationSQLNCliMicrosoft SQL Server 2008 R2 SP1 Native ClientIDFX11Microsoft Identity ExtensionsIDFXWindows Identity Foundation (KB974405)SyncMicrosoft Sync Framework Runtime v1.0 SP1 (x64)AppFabricWindows Server AppFabricKB2671763Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)MSIPCClientMicrosoft Information Protection and Control ClientWCFDataServicesMicrosoft WCF Data Services 5.0WCFDataServices56 (Added in the SP1 installation)Microsoft WCF Data Services 5.6When you have downloaded the prerequisites by using the below links:Microsoft SQL Server 2008 R2 SP1 Native ClientMicrosoft Sync Framework Runtime v1.0 SP1 (x64)Windows Server AppFabricCumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)Windows Identity Foundation (KB974405)Microsoft Identity ExtensionsMicrosoft Information Protection and Control ClientMicrosoft WCF Data Services 5.0Microsoft WCF Data Services 5.6 (Needed when doing a SP1 installation)After downloading the file we can make use of the following command to start the offline installation of the prerequisites: Start-Process "\PrerequisiteInstaller.exe" -ArgumentList "`/SQLNCli:`"\sqlncli.msi`" ` /IDFX:`"\Windows6.1-KB974405-x64.msu`" ` /IDFX11:`"\MicrosoftIdentityExtensions-64.msi`" ` /Sync:`"\Synchronization.msi`" ` /AppFabric:`"\WindowsServerAppFabricSetup_x64.exe`" ` /KB2671763:`"\AppFabric1.1-RTM-KB2671763-x64-ENU.exe`" ` /MSIPCClient:`"\setup_msipc_x64.msi`" ` /WCFDataServices:`"\WcfDataServices.exe`" ` /WCFDataServices56:`"\WcfDataServices56.exe`""On the TechNet Download site you can also find the scripts created by “Craig Lussier” that you can use to start a offline installation. Keep in mind that these script are not for SharePoint 2013 SP1 (If you want them compatible for SP1 you will have the additional arguments).Download and Install SharePoint 2013 Prerequisites on Windows Server 2012
2025-03-28