vote up 1 vote down star
1

If I ALT+RIGHTCLICK on the Finder icon, I get a "Relaunch" option in the context menu. I would like to programmatically relaunch finder, if at all possible. I'm sure there is a better way to do it than to just kill it and let it restart. Assume I have the proper authorization / permissions to do so already.

Additionally, I would like to restart spotlight as well.

flag

3 Answers

vote up 3 vote down check

Send it a quit event using AppleScript, then send it an activate event:

//tell Finder to quit
NSAppleScript *restartFinder = [[NSAppleScript alloc] initWithSource:@"tell application \"Finder\" to quit"];
[restartFinder executeAndReturnError:nil];

EDIT: add a delay to make sure Finder is ready to receive an activate event. On my machine, sometimes it needs this delay, sometimes it doesn't:

//delay 1 second
restartFinder = [[NSAppleScript alloc] initWithSource:@"delay 1"];
[restartFinder executeAndReturnError:nil];

(...end EDIT)

//tell Finder to activate
restartFinder = [[NSAppleScript alloc] initWithSource:@"tell application \"Finder\" to activate"];
[restartFinder executeAndReturnError:nil];
link|flag
aren't you doing the same thing twice??? – Matt S. Sep 22 at 21:22
You've got a memory leak. Plus, there's no need to activate Finder. It will restart automatically. – Dave DeLong Sep 22 at 21:23
matt... the first script is 'quit', the second is 'activate'. The sample code is leaky for sure. Finder does not reactivate without being told in at least Snow Leopard. Not positive about prior OS, but I'm pretty sure a "truly" quit Finder stays quit. – Rob Sep 22 at 21:33
1  
The code's not leaky under GC, of course. – Barry Wark Sep 22 at 22:00
This looks promising. – jeffamaphone Sep 22 at 22:10
show 6 more comments
vote up 3 vote down

Finder is kept alive by the system, so you can just kill it and it will automatically relaunch. I use killall Finder to accomplish this.

link|flag
Yeah, Explorer on Windows is similar, but randomly killing Explorer can lead to bad things; much better to shut it down cleanly. – jeffamaphone Sep 22 at 22:11
vote up 0 vote down

'Relaunch' almost certainly just sends a kill signal to the Finder.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.