I am wanting to use jamfHelper in full screen mode to basically lock out the computer while it is installing all of the base software right after enrollment. I can keep the message up while installing software by using an ampersand:
jamfHelper & installer
But what I would like is for this to be able to change the message for each installer so you can see progress. This is what I can't seem to figure out. The jamfHelper just sits there until I remote into the computer and kill it manually. Has anyone done this before and got it to work? This is what I have and don't know where to go from here.
#!/bin/sh
/path/to/jamfHelper -windowType fs -heading "Computer Config" -description "Installing iMovie" & jamf policy -event InstalliMovie
But once iMovie is done installing I don't know how to stop jamfHelper and move on.