Skip to main content

How to Find the Installed App Name for Custom Applications

Updated over a week ago

When adding a Custom Application in Swif.ai, providing the correct Installed App Name is required to accurately detect whether the app has been installed on a device. This value must match how the operating system reports the application after installation.

This guide explains how to find the Installed App Name on macOS, Windows, and Linux.


Why the Installed App Name Matters

Swif.ai uses the Installed App Name to:

  • Verify successful installation

  • Detect app version

  • Track compliance and inventory

If this value is incorrect or missing, Swif.ai may not be able to detect the app even if installation succeeds.


Find the Installed App Name via the Swif portal

This is the easiest way to find the installed app name:

  1. Go to the Swif portal

  2. Find the device and go to device details

  3. Go to the Applications tab

  4. Find the application under All Installed Applications


macOS: Find Installed App Name

Option 1: Applications Folder (Most Common)

  1. Open Finder

  2. Go to Applications

  3. Locate the installed app

  4. Use the application name exactly as shown

Example

Google Chrome.app

πŸ‘‰ Enter Google Chrome as the Installed App Name.


Option 2: Terminal (Recommended for Accuracy)

  1. Open Terminal

  2. Run:

ls /Applications

or for deeper paths:

mdls -name kMDItemCFBundleName /Applications/AppName.app

Use the returned app name exactly.


Option 3: System Information

  1. Hold Option β†’ Click Apple menu β†’ System Information

  2. Go to Software β†’ Applications

  3. Find the app and copy the Name field


Windows: Find Installed App Name

Option 1: Control Panel (Classic Apps)

  1. Open Control Panel

  2. Go to Programs β†’ Programs and Features

  3. Find the application

  4. Copy the exact name listed

Example

Zoom Workplace

Option 2: PowerShell (Most Reliable)

  1. Open PowerShell as Administrator

  2. Run:

Get-WmiObject -Class Win32_Product | Select-Object Name

Or for faster results:

Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Select DisplayName

Use the DisplayName exactly as shown.


Option 3: Windows Settings

  1. Go to Settings β†’ Apps β†’ Installed apps

  2. Locate the app

  3. Copy the displayed name


Linux: Find Installed App Name

Linux app names depend on the package manager and distro.


Debian / Ubuntu (APT)

dpkg -l

To filter:

dpkg -l | grep appname

Use the package name shown.


Red Hat / CentOS / Rocky (RPM)

rpm -qa

Or:

dnf list installed

Snap Packages

snap list

Use the Snap name exactly.


Flatpak Applications

flatpak list

Use the Application ID or Name shown.


Best Practices

  • βœ” Use the exact name reported by the OS

  • βœ” Do not use installer file names (.pkg, .exe, .sh)

  • βœ” Avoid version numbers unless the OS includes them

  • βœ” After first install, you can confirm the name from Device Inventory in Swif.ai


Example Mapping

OS

Installer File

Installed App Name

macOS

Chrome.pkg

Google Chrome

Windows

ZoomInstaller.exe

Zoom Workplace

Linux

vscode.deb

code


Need Help?

If the app is already installed via Swif.ai:

  • Check Device β†’ Applications in the dashboard

  • Or contact Swif.ai Support for confirmation


βœ… Once the correct Installed App Name is provided, Swif.ai can reliably detect, track, and manage your custom application.

Did this answer your question?