Hi
we have recently pushed beyond trust jump clients to all our laptops via jamf . i can see the logs saying its successfully installed confirming from rep console establishing a remote session. however i am unable to see the app in the list of applications in jamf for any of the machines. , any idea why . Thanks
Solved
Unable to see jump client in application list
Best answer by AJPinto
This is because BeyondTrust does not put their jump client in /Applications. I suggest spending some time getting to know applications before you deploy them, knowing where applications put files is critically important to being able to successfully being able to deploy and manage a client.
The Extension Attribute below will tell you if the agent is installed or not.
#!/bin/bash
JumpClient=`ls /users/shared | grep ".com.bomgar.scc.*"`
if [[ $JumpClient != '' ]]
then
echo "<result>Jump Client Installed</result>"
else
echo "<result>Not Installed</result>"
fi
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
