timmit001 wrote:
So I enter Script Editor through /Applications/AppleScript/ and type in - tell application "Finder" to quit? That simple?
Not quite that simple. AppleScript is a high level (meaning English-like) scripting language useful for controlling applications & Script Editor is an application useful for creating scripts using this language, in much the same way a word processor is useful for creating text documents.
So, if you enter the script text in a Script Editor window & hit return, the result is a new line in the script document, not the execution of the one-line script you just created. To execute a script directly from Script Editor, you click the "Run" button in its toolbar or menu.
However, in this instance, since you now have created an unsaved Script Editor document, the application will ask you if you want to save it before quitting, just like any other well-mannered application would. Moreover, since the script is equivalent to other user requests to quit the Finder normally (IOW, it is not a force quit request), it may do nothing you couldn't do otherwise or cause Script Editor to wait until Finder passes a message back to the script before Script Editor itself will quit.
A simpler way to do what you want (assuming you can access applications) is to launch Terminal (found in Applications/Utilities) & type into its window the text "killall Finder" (without the quotes) & press return. Since Terminal doesn't create documents by default, it will quit without asking if you want to save what you just typed & executed.
However, if the Dock is still available, the simplest method of all is to hold down the option key on the keyboard & click & hold on the Finder's Dock icon. The contextual menu that pops up will now have a new option named "Relaunch" that is the equivalent of the other methods. If Finder won't automatically relaunch during a shutdown request (which is what we are assuming makes any of these methods work), this is your best bet.