How to find application names for risk assessment policies?
Microsoft Windows applications
-
Open the Windows PowerShell.
For example, click on the 🔍 icon next to your start menu icon and type: powershell. Then, select the Windows PowerShell icon in the start menu.
-
Type the following command:
Get-WmiObject Win32_Process | ForEach-Object { try { if ($_.ExecutablePath) { [System.Diagnostics.FileVersionInfo]::GetVersionInfo($_.ExecutablePath).FileDescription } } catch {} } | Where-Object { $_ } | Sort-Object -Unique | Out-File "$([Environment]::GetFolderPath('Desktop'))\Applications.txt"
- Double click on the Applications.txt file on your desktop to open it.
Result: You will see a list of the names of running applications. Copy the required names and paste them into the risk assessment policy attribute.
macOS applications
- Open the Terminal app.
-
Type the following command:
ps -axo comm | grep -i '.app/' | sed -E 's#^.*/([^/]+\.app)/.*#\1#' | sed 's/.app$//' | sort -u > ~/Desktop/applications.txt
- Double click on the applications.txt file on your desktop to open it.
Result: You will see a list of the names of running applications. Copy the required names and paste them into the risk assessment policy attribute.
Android applications
-
Open the Settings app.
Pull from the top of the screen, and then tap on the ⚙ icon.
- Navigate to .
- Scroll down the list and note down the names of the apps that you require.
Linux applications
- Open your Linux terminal.
-
Enter the following command:
grep -h '^Name=' /usr/share/applications/*.desktop ~/.local/share/applications/*.desktop 2>/dev/null | cut -d= -f2 | sort -u > ~/Desktop/applications.txt
- Double click on the applications.txt file on your desktop to open it.
Result: You will see a list of the names of installed applications. Copy the required names and paste them into the risk assessment policy attribute.
iOS applications
- Open the Settings app, and then go to .
- Scroll down the list and note down the names of the apps that you require.
Using Portnox Cloud
- Click on the Devices menu option in the top bar
- In the list of accounts, click on an account with AgentP installed
- Click on a device that has AgentP installed
-
In the top-right corner, next to the device name, click on the 🗎
icon
-
In the DEVICE DETAILS window, click on the APPLICATIONS tab
Result: You will see a list of application names. Write down required application names and enter them in the risk assessment policy attribute.