Skip to main content

Hello

Does any know how to Inventory collection a hidden folder in applications. 

Bomgar creates a .com folder that the user cant see.

Thanks

 

@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


perfect 

 

thanks