Thursday, August 4, 2016

Configure Apps for SharePoint 2013


 Step by step create ‘App Management' service application

 Way 1:  Central Administration

 1. In SharePoint 2013 central administration, click on "Application Management", then on "Manage Service Applications"

Manage Service App

 2. Click on "New", then on "App Management Service" 

New App Management Service

 

3. Type a name for the service application and its database

 


New Service

 

 

Type a name for the application pool and the account used by the pool.

 

Uncheck the checkbox if you do not want to create a proxy for the service application, then click on "OK".

 

New Service

 

 4. The service application and its proxy are created

 

New Service Created

 

5. The last action is to start the "App Management Service" service.


 

Click on "Application Management", then on "Manage services on server"

 

Manage services on server

 

 

6. Click on "Start" in front of the service

 

Start Service

 

Way 2: PowerShell


 1. Open SharePoint 2013 "Management Shell"

Management Shell

 

2. To get the Farm account

 

$account = Get-SPManagedAccountFarmAccount

 

3. Using farm account create a new application pool

 

$appPoolAppSvc = New-SPServiceApplicationPool -Name AppServiceAppPool -Account $account

 

4. Using new application pool create the "App management" service application


 

$appAppSvc = New-SPAppManagementServiceApplication -ApplicationPool $appPoolAppSvc -Name AppServiceApp -DatabaseNameNomDeLaBDD

 5. Create a proxy for the service application

 $proxyAppSvc = New-SPAppManagementServiceApplicationProxy -ServiceApplication $appAppSvc

Power Shell

 

6. Now start the "App Management Service" service


 

Get-SPServiceInstance | where-object {$_.TypeName -eq "App Management Service"}

 

(Get-SPServiceInstance | where-object {$_.TypeName -eq "App Management Service"}).Provision()

 

Get-SPServiceInstance | where-object {$_.TypeName -eq "App Management Service"}

Power Shell

 

Thank you very much

          Fahadullah Karimi

         SharePoint Specialist



Auto-Refresh a SharePoint Page Step by Step Install and configure SharePoint 2013 Workflow

No comments:

Post a Comment