Skip to content

Microsoft Intune

This guide walks you through deploying Voquill to Windows devices in your organization using Microsoft Intune. The deployment consists of two parts: the Voquill app itself and a configuration script that connects it to your enterprise gateway.

Download the latest Voquill Windows MSI from the GitHub releases page. Look for a file named Voquill_x.x.x_x64_en-US.msi.

Create a folder for your Intune package:

C:\IntunePackages\Voquill\

Place the downloaded MSI in this folder.

Use the Microsoft Win32 Content Prep Tool to package the MSI:

Terminal window
IntuneWinAppUtil.exe -c "C:\IntunePackages\Voquill" -s "Voquill_x.x.x_x64_en-US.msi" -o "C:\IntunePackages\Output"

This creates Voquill_x.x.x_x64_en-US.intunewin in the output folder.

  1. Sign in to the Microsoft Intune admin center
  2. Navigate to Apps > All apps > Add
  3. Select Windows app (Win32) as the app type
  4. Click Select and upload your .intunewin file

Complete the app wizard using the default settings. Fill in basic app information (name, description, publisher) as needed.

  1. Go to the Assignments tab
  2. Under Required, click Add group and select the groups that should receive Voquill
  3. Click Next and then Create

Part 2: Deploy the Enterprise Configuration

Section titled “Part 2: Deploy the Enterprise Configuration”

Use Intune’s Platform Scripts feature to deploy the enterprise configuration to each device.

Create a PowerShell script named Configure-Voquill.ps1:

Terminal window
$enterpriseJson = @'
{
"gatewayUrl": "http://your-gateway-host:4630"
}
'@
$basePath = Join-Path $env:APPDATA "com.voquill.desktop"
$filePath = Join-Path $basePath "enterprise.json"
if (!(Test-Path $basePath)) {
New-Item -ItemType Directory -Path $basePath -Force | Out-Null
}
Set-Content -Path $filePath -Value $enterpriseJson -Encoding UTF8

Replace your-gateway-host:4630 with the actual hostname and port of your Voquill Enterprise gateway.

  1. In the Intune admin center, navigate to Devices > Scripts and remediations > Platform scripts
  2. Click Create
  3. Enter a name (e.g., “Configure Voquill Enterprise”) and click Next
  4. Upload your Configure-Voquill.ps1 script

Set Enforce script signature check to No. Leave the other settings at their defaults.

  1. Go to the Assignments tab
  2. Select the same groups that receive the Voquill app
  3. Click Next and then Create

After deployment, open Voquill and check that your company name appears under the username. If it says “community” instead, the enterprise configuration was not applied correctly.