Sharepoint 2013 opens the app configuration app

Source: Internet
Author: User

If there is no enable app, an error occurs when opening the App Store:

Sorry, apps is turned off. If you are know who runs the server, tell them to enable apps.

To open him, first of all to have an app DNS, the following new, if there is no DNS in the management tool, then add to the feature.

Control Panel\system and Security\administrative Tools

Right-click Forward Lookup Zones

Point to New Zone, always click Next, and then enter a domain name.

Then right-click on the new domain and click New Alias

As set

After DNS is new, create a new app Management service and subscription Setting service Application

Then make sure that two service is running, as follows

In short, run the following script to open the

$appManagementService= Get-spserviceinstance | where {$_. TypeName-like' App Management Service '}if($appManagementService. Status-ne' Online ') {Write-Host ' starting App Management Service ' Start-spserviceinstance$appManagementService| out-Null}Else{Write-Host ' App Management Service was already started '}#wait for App Management Service to start " while($service. Status-ne' Online ') {#delay 5 Seconds then check to see if service have started sleep 5$service= Get-spserviceinstance | where {$_. TypeName-like' App Management Service ' }$subscriptionSettingsService= Get-spserviceinstance | where {$_. TypeName-like' Microsoft SharePoint Foundation Subscription Settings Service '}if($subscriptionSettingsService. Status-ne' Online ') {Write-Host ' starting Subscription Settings Service ' Start-spserviceinstance$subscriptionSettingsService| out-Null}Else{Write-Host ' Subscription Settings Service was already started '} while($service. Status-ne' Online ') {#delay 5 Seconds then check to see if service have started sleep 5$service= Get-spserviceinstance | where {$_. TypeName-like' Microsoft SharePoint Foundation Subscription Settings Service ' }$appManagemetnServiceApplicationName=' App Management Service '$appManagementServiceApplication= Get-spserviceapplication | where {$_. Name-eq $appManagemetnServiceApplicationName}#Create an instance App Management Service application and proxy if they does not existif($appManagementServiceApplication -eq $null) {Write-Host ' Creating App Management Service application '$pool= Get-spserviceapplicationpool ' SharePoint Web ServicesDefault'$appManagementServiceDB=' Sharepoint_appmanagementservicedb '$appManagementServiceApplication= new-spappmanagementserviceapplication '-applicationpool$pool `-name$appManagemetnServiceApplicationName `-databasename$appManagementServiceDBWrite-Host ' Creating App Management Service application Proxy '$appManagementServicApplicationProxy= new-Spappmanagementserviceapplicationproxy '-serviceapplication$appManagementServiceApplication}Else{Write-Host ' App Management Service application already exist '}$subscriptionSettingsServiceApplicationName=' Subscription Settings Service application '$subscriptionSettingsServiceApplication= Get-spserviceapplication | where {$_. Name-eq $subscriptionSettingsServiceApplicationName}#Create an instance Subscription Service application and proxy if they does not existif($subscriptionSettingsServiceApplication -eq $null) {Write-Host ' Creating Subscription Settings Service application '$pool= Get-spserviceapplicationpool ' SharePoint Web ServicesDefault'$subscriptionSettingsServiceDB=' Sharepoint_sitesubscriptionsettingsservicedb '$subscriptionSettingsServiceApplication= new-spsubscriptionsettingsserviceapplication '-applicationpool$pool `-name$subscriptionSettingsServiceApplicationName `-databasename$subscriptionSettingsServiceDBWrite-Host ' Creating Subscription Settings Service application Proxy '$subscriptionSettingsServicApplicationProxy= new-Spsubscriptionsettingsserviceapplicationproxy '-serviceapplication$subscriptionSettingsServiceApplication}Else{Write-Host ' Subscription Settings Service application already exist '} Set-spappdomain ' apps.xxx.com '-confirm:$falseSet-spappsitesubscriptionname-name ' app '-confirm:$false

Finally to the CA dot apps, click Configure App Urls to see

When you click on the App Store, you don't actually leave your site.

Finally, an error occurs when adding

"Sorry, this app isn't supported on your server"

Need to go to CA to activate a feature

1. Browse to Central admin

2. Click on ' Application Management '

3. Click ' Manage Web applications '

4. Select the Web application which hosts the site is trying to install the app to

5. Click ' Manage Features '

6. ' Apps that require accessible Internet facing endpoints ' should is deactivate. Click ' Activate '

Sharepoint 2013 opens the app configuration app

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.