Posted on 09-28-2023 12:22 PM
I have installed rapid7 using jamf cloud. But the application is not showing up under each user's app installed. I know on windows, you can see it from intune and also you can see the app in control panel of any windows machine.
On macs, you have to look at a specific directory to see if the agent is installed.
Do you guys have any idea why that is happening?
Posted on 09-28-2023 09:30 PM
This might be of some help.
#!/bin/sh
######################################################
# A script to collect the Version of Rapid7 Insight. #
######################################################
DIRECTORY="/opt/rapid7/ir_agent/"
if [ -e "${DIRECTORY}" ]; then
RESULT=$(/opt/rapid7/ir_agent/components/insight_agent/insight_agent --version | awk '/Semantic/ {print $3}')
fi
echo "<result>${RESULT}</result>"
exit 0
Posted on 09-29-2023 08:34 AM
@jhbush, Thanks for the help.
That would helpful in some other way I guess. I just don't understand why Rapid_7 insight agent does not show under the user machine on Jamf cloud for a quick look.
But thanks again.