If your Windows Server or Windows Workstation Inspectors are stuck in the Scheduled state, the issue may be related to the Liongard Agent v5.0.4 build.
To resolve this, you can upgrade the Agent to the latest LTS version. Run the following PowerShell command. This should ideally be deployed via your RMM platform to ensure it executes silently and without user interaction:
if (Get-WmiObject Win32_Product | Where-Object { $_.Name -like "Liongard Agent*" }) { Invoke-WebRequest -Uri "https://agents.static.liongard.com/LiongardAgent-lts.msi" -OutFile "$env:TEMP\LiongardAgent-lts.msi"; Start-Process msiexec.exe -ArgumentList "/i `"$env:TEMP\LiongardAgent-lts.msi`" /quiet /norestart" -Wait }
How It Works
Checks specifically for Liongard Agent v5.0.4.
Downloads the LTS Agent installer.
Performs a silent upgrade in the background.
-Best Practice-
Run this fix centrally through your RMM tool/Intune.
After applying this update, inspectors should no longer be stuck in the Scheduled state and resume normal execution after the next inspection run.