The MissingApplications control verifies that all required applications for your organization are installed on your computer. The specific list of required applications is configured by your IT team based on security requirements, your role, and business needs.
Important: Citadel will tell you which specific application(s) need to be installed. Required applications are typically essential security tools (antivirus, VPN, backup software), mandatory business applications, or compliance tools that protect both you and the organization. Operating without these applications leaves your device vulnerable to security threats and may prevent you from securely accessing company resources.
Required applications often include critical security tools like antivirus software, endpoint protection, or VPN clients that are necessary to protect your device from threats.
Some required applications are necessary to securely connect to company systems, encrypt communications, or authenticate properly. Without them, you may be unable to work securely.
Regulations and security frameworks often mandate specific tools and controls. Required applications ensure your device meets these compliance requirements.
lsb_release -a or cat /etc/os-release)# Debian/Ubuntu
sudo apt update && sudo apt install <package-name>
# Fedora/RHEL
sudo dnf install <package-name>
# Arch
sudo pacman -S <package-name>
# Flatpak
flatpak install <app-id>
# Snap
sudo snap install <package-name>
After installing the required application, Citadel will automatically verify this control during its next check.
apt list --installed | grep -i <name> # or: dnf list installed | grep -i <name>
flatpak list | grep -i <name>
snap list | grep -i <name>
Try launching the application to confirm it works.