Posted on 02-07-2014 12:19 PM
I need to delete the following folder.
/Library/StartupItems/ES1000Service
Can someone help me out with creating a script to do this? The ones that i have tried do not seem to work.
Thanks,
Jim
Solved! Go to Solution.
Posted on 02-07-2014 12:55 PM
Since this is just a "one-liner", I would just copy + paste this into the "run command" field of the "Advanced" section where you create a policy. You could create an actual script and upload it to Casper but it's probably more work than what it's worth.
rm -R /Library/StartupItems/ES1000Service
Posted on 02-07-2014 12:25 PM
If you run through Terminal.
sudo rm -R /Library/StartupItems/ES1000Service
If you run it through Casper you don't need sudo as it will automatically run as root.
Posted on 02-07-2014 12:42 PM
Thanks if I want to run it in casper dont I need the bin bash in front?
Posted on 02-07-2014 12:55 PM
I like to give the full path to commands as well as to files. This assumes your partitions never get renamed from Macintosh HD. Always test.
#!/bin/sh
/bin/rm -rf /Volumes/Macintosh HD/Library/StartupItems/ES1000Service/
Posted on 02-07-2014 12:55 PM
Since this is just a "one-liner", I would just copy + paste this into the "run command" field of the "Advanced" section where you create a policy. You could create an actual script and upload it to Casper but it's probably more work than what it's worth.
rm -R /Library/StartupItems/ES1000Service
Posted on 02-07-2014 01:04 PM
Thanks immaging some new computers for Graphics and we noticed that one of the blasted Fiery packages creates this silly folder. In place of redoing everything I am just adding the post imaging script for the rest of the macs, and then pushing this script to the ones we deployed already.
It seems to have worked on so far.
Posted on 02-10-2014 10:01 AM
Why not just use the "Files and Folders" object tin a policy to delete the folder?
Posted on 03-29-2015 11:23 PM
@JimAllsop I posted this concern to the EFI forum and received a private response, hopefully we'll see an updated installer that addresses some concerns.
Fiery Command Workstation 5.7 concerns (OS X)
Posted on 03-31-2015 11:43 AM
FYI...EFI responded to the thread. ;)
Posted on 04-09-2015 02:35 PM
Hoping EFI responds sooner than later...
Posted on 04-09-2015 03:00 PM
Posted on 04-21-2015 01:37 PM
Posted on 05-14-2015 10:08 AM
Don, thank you for pursuing that. Fiery software definitely makes me go grrrrrrrr.