Getting Started
This guide will walk you through deploying your own IntuneGet instance from scratch. Follow each step in order for the smoothest experience.
Prerequisites Checklist
Before starting, make sure you have accounts for these services:
Complete Secrets Reference
You will need to configure these environment variables. Reference this table as you work through the setup:
Generate a Secure API Key
Run this command in your terminal to generate a secure random API key:
Setup Steps
Set Up Entra ID App Registration
Create a multi-tenant app registration in Microsoft Entra ID to enable authentication and Intune access.
- Go to Azure Portal > Microsoft Entra ID > App registrations
- Click "New registration"
- Select "Accounts in any organizational directory (Multitenant)"
- Add a SPA redirect URI for your app
- Configure API permissions and create a client secret
Deploy with Docker
Deploy your IntuneGet instance using Docker with the embedded SQLite database.
Set Up the Local Packager
Install the packager service on a Windows machine to handle app packaging.
- On your Windows machine, install Node.js 18+
- Install the packager globally:
npm install -g @ugurkocde/intuneget-packager - Set environment variables:
Start the packager: intuneget-packager
Verify Your Deployment
Test that everything is working correctly:
Final Configuration
After deployment, update your Entra ID app registration with your production URL:
- Go to Azure Portal > Your App Registration > Authentication
- Add your production URL as a SPA redirect URI (e.g., https://your-app.vercel.app)
- Click Save
Important
Make sure NEXT_PUBLIC_URL in your environment matches your actual deployment URL exactly, including https:// and no trailing slash.
Local Packager Details
The local packager is a Windows service that polls the web app for packaging jobs, creates .intunewin packages using Microsoft's IntuneWinAppUtil, and uploads them directly to Intune.
Benefits of Local Packager
- - Zero external dependencies (no GitHub Actions needed)
- - Works in air-gapped or restricted network environments
- - Full data sovereignty - nothing leaves your network
- - Simple API key authentication
Requirements
- Windows 10/11 or Windows Server 2016+
- Node.js 18 or higher
- Network access to the web app and Microsoft Graph API
Running as a Service
For production use, consider running the packager as a Windows service: