Skip to content

Grant Admin Consent

Choose one of the two methods below. Option A is the fastest — it creates the service principal and grants all permissions in a single step.

This is a one-step process. Navigate to the following URL in your browser, replacing {tenant-id} with your actual tenant ID:

https://login.microsoftonline.com/{tenant-id}/adminconsent?client_id=1fd5118e-2576-4263-8130-9503064c837a

Sign in with your admin account, review the requested permissions, and accept.

Done. This creates the service principal and grants admin consent in one step.

Where to find your tenant ID
  1. Go to the Azure Portal
  2. Navigate to Microsoft Entra ID (formerly Azure Active Directory)
  3. On the Overview page, your Tenant ID is listed under Basic information

Option B: PowerShell (via Azure Cloud Shell)

For admins who prefer the command line or need to script the setup.

No local install needed — use Azure Cloud Shell directly in the portal:

  1. Open portal.azure.com
  2. Click the Cloud Shell icon ( >_ ) in the top navigation bar
  3. Select PowerShell when prompted
  4. Run:

    New-AzADServicePrincipal -ApplicationId "1fd5118e-2576-4263-8130-9503064c837a"
    
  5. Then grant admin consent through the portal:

    • Go to Enterprise applications
    • Search for Iristick.Teams (or RSIQ Teams)
    • Open Permissions under Security
    • Click Grant admin consent for [your tenant]
Local PowerShell (for automation and scripting)

If you need to run this from a local machine (e.g., for scripted deployments):

Requirements: PowerShell 7+ and .NET 6+. macOS 11 (Big Sur) and older are not supported.

# Install the Az module (one-time)
Install-Module Az -Scope CurrentUser -Force

# Sign in to your Azure tenant
Connect-AzAccount

# Create the service principal
New-AzADServicePrincipal -ApplicationId "1fd5118e-2576-4263-8130-9503064c837a"

After running the command, grant admin consent through the Azure Portal as described in step 5 above.

What NOT to do

Do not manually register the app through Enterprise Applications

Do not go to Enterprise applications > New application and search for Iristick.Teams to add it manually. This creates a separate app registration in your tenant instead of linking to Iristick's existing multi-tenant app. Use Option A or Option B above.

Next

Verify the Setup to confirm everything works.