This Wiki page contains a detailed description on how to configure Apps for SharePoint 2013.
$account = Get-SPManagedAccount "domain\user" $appPoolSubSvc = New-SPServiceApplicationPool -Name SettingsServiceAppPool -Account $account $appPoolAppSvc = New-SPServiceApplicationPool -Name AppServiceAppPool -Account $account $appSubSvc = New-SPSubscriptionSettingsServiceApplication –ApplicationPool $appPoolSubSvc –Name SettingsServiceApp –DatabaseName SettingsServiceDB $proxySubSvc = New-SPSubscriptionSettingsServiceApplicationProxy –ServiceApplication $appSubSvc $appAppSvc = New-SPAppManagementServiceApplication -ApplicationPool $appPoolAppSvc -Name AppServiceApp -DatabaseName AppServiceDB $proxyAppSvc = New-SPAppManagementServiceApplicationProxy -ServiceApplication $appAppSvc
From a SharePoint 2013 Management Shell prompt, execute this code.
Click App Management > Configure App URLs In the App Domain text box, type: app.[domain name] (e.g. app.lc.corp). In the App prefix text box, type any prefix that is used to prefix the subdomain of App urls, e.g.: lcapp. Click OK.
Now, check if you can add online Apps to your SharePoint environment. But don't do this using the SharePoint System Account, otherwise you'll see a message stating: "Everything is fine, but we had a small problem getting your license. Please go back to the SharePoint Store to get this app again etc. etc."
This is a nice example of misplaced SharePoint 2013 friendliness. Don't expect this small problem to go away by itself!
If you're trying to add Apps and get an error saying: "Sorry, something went wrong. Sorry, we couldn’t complete your purchase. Please try again later."
- The machine you use to visit the SharePoint Store is configured with an incorrect date. - You're using a System Account for accessing the SharePoint Store
Margriet Bruggeman edited Revision 7. Comment: add
Margriet Bruggeman edited Revision 6. Comment: add
Margriet Bruggeman edited Revision 5. Comment: add
Margriet Bruggeman edited Revision 4. Comment: add
Margriet Bruggeman edited Revision 3. Comment: add
Margriet Bruggeman edited Revision 2. Comment: add
Margriet Bruggeman edited Revision 1. Comment: add
Margriet Bruggeman edited Original. Comment: add