Posted on 08-08-2016 06:59 PM
I was wondering if there is a script out there I could utilise, to list the file contents of
the users /library/LaunchDaemons /library/LaunchAgents /library/StartupItems
So that I can keep the startup items of users devices to a minimum, I hope to collect a list of plist files that don't need to be set for startup.
Posted on 08-09-2016 05:59 AM
You could do something as simple as follows:
#!/bin/bash
ls /Library/LaunchDaemons > "Filename/Location" &&
ls /Library/LaunchAgents >> "Filename/Location" &&
ls /Library/StartupItems >> "Filename/Location"
This will collect the data from the command and put it to a text file if you name the file something like "dataoutput.txt" and you can specify save location too such as "/Users/$USER/Desktop/dataoutput.txt".
Posted on 08-10-2016 04:33 AM
I have the exact same question, though more specifically, I'd like to create an extension attribute which lists the contents of /Library/LaunchAgents, /Library/LaunchDaemons, /Library/Startupitems AND their counterparts in ~/Library. My intent is to use this data to look for the presence of Malware.