How to Assign Subscription Seats Using Allxon CLI

This manual offers clear, step-by-step instructions for automatically enrolling devices with the desired settings using the Allxon CLI. The process involves utilizing an 'Add-Device Booster' token and specifying a Subscription ID to allocate seats for the devices.
 
Available for: Allxon Agent Version 3.11.4 and later.

Step 1: Prepare 'Add-Device Booster' Token & Subscription ID

Access Allxon Portal to obtain the following information:
  1. 'Add-Device Booster' Token: Go to the Group Settings Page to generate your token. For instructions, refer to: How to Set Up Add-Device Booster.
  2. Subscription ID: Visit the Subscription Page to locate your Subscription ID. Refer to the following pictures for guidance.

Step 2: Install Allxon Agent with Options

On Linux OS:

  1. Open the Terminal.
  2. Enter the installation command with the desired options (see Step 3 for details).
sudo bash -c "$(wget -qO - https://get.allxon.net/linux)" -s [options] [arguments]
 
On Windows OS
  1. Open the PowerShell as an Admin.
  2. Enter the installation command with the desired options (refer to Step 3).
Set-ExecutionPolicy RemoteSigned -Scope Process -Force; Invoke-WebRequest -Uri "https://get.allxon.net/windows" -OutFile "$env:TEMP\allxon-installer.ps1"; & "$env:TEMP\allxon-installer.ps1" -[options] [arguments]
 

Step 3. Introduction to Options

The --subscription-id TEXT option must be used together with --token TEXT.


Parameters:

  • --token TEXT: Use this option to add a device using the Add-Device Booster token.
  • --subscription-id TEXT: Use this option to set the Subscription ID and assign a seat to the device.

How to Use

On Linux OS:

sudo bash -c "$(wget -qO - https://get.allxon.net/linux)" -s --token "Your Add-Device Booster token" --subscription-id "Your Subscription ID"

 

On Windows OS:

Set-ExecutionPolicy RemoteSigned -Scope Process -Force; Invoke-WebRequest -Uri "https://get.allxon.net/windows" -OutFile "$env:TEMP\allxon-installer.ps1"; & "$env:TEMP\allxon-installer.ps1" -Token 'Your Add-Device Booster token' -SubscriptionId 'Your Subscription ID'

 

For more options, visit Allxon CLI Documentation.