Posted on 11-04-2022 11:33 AM
Hello
Does any know how to Inventory collection a hidden folder in applications.
Bomgar creates a .com folder that the user cant see.
Thanks
Posted on 11-06-2022 09:45 PM
@dmccluskey You can use the Extension Attribute to check if folder exists. I don't think Jamf default inventory has hidden folders
#!/bin/bash
ls -a /Applications | grep -i .com1.bomgar.scc >> /dev/null
if [ $? == 0 ]; then
result=Yes
else
result=No
fi
echo "<result>$result</result>"
Thanks
Posted on 11-07-2022 05:20 AM
perfect
thanks