Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Create custom shutdown message?

Is there any way I can create a custom shut down message? We have a recording studio and I want to create a list of to-do items the user sees that they must accomplish before attempting to shutdown the computer and studio. Is this possible?

Would be for a G5 (Desktop) Quad 2.5ghz OS 10.4.11.

MBP 2.83 Ghz, G5 quad 2.5Ghz, MBP 2.16Ghz, G4 Mirror Doors 1.25Ghz, Mac OS X (10.5.8)

Posted on Mar 8, 2011 9:29 AM

Reply
6 replies

Mar 9, 2011 1:02 PM in response to Limnos

Thanks so much for the links. I searched but could not find anything like this. However, I'm still thinking this could not help my problem. I'm a bit of a noob in scripting/terminal use, so I'm not sure but what I think I need is to actually change/alter the shutdown message to tell the user a list of actions that should be done (not even related to the computer necessarily but to the shutdown sequence of the recording studio overall). The more I dig into this the more this seems unreasonable and impossible. Please correct me if I'm wrong. Thanks for the help,

Greg

Mar 14, 2011 8:00 AM in response to BDAqua

Thanks BDAqua, so me being a big noob at this, I would create a file with this?:



#!/bin/sh

. /etc/rc.common

StartService ()
{
# what to do on boot (can be empty)
}

StopService ()
{
# Please power down master fader on mixing console.
}

RunService "$1"



I just add what I want the user to do there?

In the thread he says "place a file of the same name as the directory...". I am unsure of how to do this or exactly what this means. I create a folder with a name, then create a file with the same name as the folder, and the file must be an executable file? I don't know how to create an executable. :/

Then I create a text file called "StartupParameters.plist" with the following script:

{
Description = "Name of your service goes here";
Provides = ("Whatever your service provides goes here");
Uses = ("Disks");
}


The "Description" and "Provides" scripts, are these arbitrary? Just descriptions or do I need to give some kind of script direction here.

Again, you can see my noob-ness, but thanks for helping!

Greg

Mar 14, 2011 10:33 AM in response to studioduck

I just add what I want the user to do there?


Yes, but remove the # in front of # Please power down master fader on mixing console, which comments out that line.

It looks even easier to use an AppleScript...

http://discussions.apple.com/thread.jspa?messageID=7088514&#7088514

Create a 'Stay Open' AppleScript app containing only a quit handler (i.e. no idle handler):

on quit
say "Please power down master fader on mixing console."
continue quit
end quit

Create custom shutdown message?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.