Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Infrastructure as code
See every change, undo any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
More
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Infrastructure as code
See every change, undo any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
Windows | 3.1.66
Aircall is cloud-based call center and phone system software.
To install Aircall on your work computer:
Don’t see Aircall or the Fleet Desktop icon? Send a link to this page to your IT team.
Run the following script in Powershell to uninstall Aircall:
$product_code = "{3BC9C19D-57CC-4C33-9D0F-199A90C445EB}"
$timeoutSeconds = 300 # 5 minute timeout
# Fleet uninstalls app using product code that's extracted on upload
$process = Start-Process msiexec -ArgumentList @("/quiet", "/x", $product_code, "/norestart") -PassThru
# Wait for process with timeout
$completed = $process.WaitForExit($timeoutSeconds * 1000)
if (-not $completed) {
Stop-Process -Id $process.Id -Force -ErrorAction SilentlyContinue
Exit 1603 # ERROR_UNINSTALL_FAILURE
}
# Check exit code and output result
if ($process.ExitCode -eq 0) {
Write-Output "Exit 0"
Exit 0
} else {
Write-Output "Exit $($process.ExitCode)"
Exit $process.ExitCode
}
Run this query in Fleet to find old versions of Aircall across all your computers:
SELECT 1 FROM programs WHERE name = 'Aircall' AND version <= '3.1.66';