January 13, 2026
Adding items to Launch Pad Widget
Learn how to add items via My Apps Content App
This step is only needed if a SharePoint App Catalog does not already exist.
Determine if this SharePoint Site has an App Catalog Already Setup
If the App Catalog exists, then skip to the “Creating an App Identifier” Section. If not proceed to the next section.
If the App Catalog is NOT Configured for the Appropriate Site, then:
Note: This section can be skipped if this SharePoint Site already has set up an App Catalog.
| Input Field | Description | Example |
|---|---|---|
| Title | App Catalog Name | apps |
| Web Site Address | The dropdown should have SITE selected, complete the URL by entering “apps” | apps |
| User Name | Using the People picker select an Administrator for this catalog. Remember this user, they will manage the app Catalog. | Usually this SharePoint administrator |
| End Users | Everyone | Everyone can see the App Catalog items. |
| Term | Description | Example |
|---|---|---|
| Webapplication Domain | <yourDomain> | Sp13dev1 |
| Farm Administrator | <domain\username>" | dev\sharepoint |
Copy the Cmdlets below into a Note Pad file on your SharePoint Hosting Server. Edit the highlighted items in yellow. After the commands have been updated copy them into a “SharePoint 2016 Management Shell” Running as Administrator.
NOTE: the symbol in the command lines below represent when there should be a line break in the set of commands. DO NOT COPY as part of your command into the Note Pad File or into the Manage Power Shell. If you do not copy these commands into a note file that is very wide the copy and paste may introduce line breaks where none should be
NET START SPADMINV4
NET START SPTIMERV4
SET-SPAPPDOMAIN "<YOURDOMAIN>"
GET-SPSERVICEINSTANCE | WHERE{$_.GETTYPE().NAME -EQ "APPMANAGEMENTSERVICEINSTANCE" -OR $_.GETTYPE().NAME -EQ "SPSUBSCRIPTIONSETTINGSSERVICEINSTANCE"} | START-SPSERVICEINSTANCE
$ACCOUNT = GET-SPMANAGEDACCOUNT "<DOMAIN\USERNAME>"
$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
SET-SPAPPSITESUBSCRIPTIONNAME -NAME "APPS" -CONFIRM:$FALSE
Below is an example of an edited set of commands to copy and paste into a Managed Power Shell.
NOTE: This section assumes DNS is configured properly. See MSDN Documentation.
In SharePoint 2016 Central Administration
Left column, click on “Apps”.
Click on “Configure App URLs”.
The “Configure App URLs” page will be displayed.
Note: If you do not see the input fields described below then you will need follow these sets:
Navigate to “Application Management” > “Manage Service Application” (under Service Applications).
Verify that “Subscription Settings Service” is listed and is “Started”.
There are two input fields on this page which maybe already populated CLEAR both Fields and fill them in appropriately as described in the table below.
| Input Field | Description | Example |
|---|---|---|
| App domain | Enter in the App Domain | sp13dev1 |
| App prefix | Fill in the App prefix. It is best to use something short like “Apps” | Apps |
Once the fields are completed, click on OK.
A Client Identity and Client Secret must be created for the new incoming APP – AppManager. AppRegNew.aspx will be used to generate those items.
Set the following fields:
In the example below the redirect for the appmanager website is: https://myappmanager.onakumina.com. The domain is the redirect without the https example: myappmanager.onakumina.com
myappmanager.onakumina.comExp071720
myappmanager.onakumina.com
BEFORE selecting “OK” button, copy “The app identifier has been successfully created” message (see RED box below) to a note file. WARNING it is the only time you will see these values and they are required for the website.