Can't disable application startup. Not in sys prefs!
Macbook Pro, Mac OS X (10.4.11), 2.16 gz, 3GB memory
Macbook Pro, Mac OS X (10.4.11), 2.16 gz, 3GB memory
wrote:
Have you checked:
/Library/LaunchDaemons
/Library/LaunchAgents
/Users/yourhome/Library/LaunchAgents?
You could also check:
/System/Library/LaunchAgents
/System/Library/LaunchDaemons
but be very careful before deleting anything here - especially anything in the >second folder as many of these control essential system services and you could >render you Mac unbootable, I believe.
* cfr
wrote:
dsfushi72 wrote:
2. I opened terminal, entered the following line, and pressed the return key:
cd "/Applications/SMART Board Software/"
3. I entered the following line and pressed the return key:
sudo chmod a-x "SMARTBoard Service"
4. I was asked for an admin password, and, being an administrator, I entered my >password.
adsfushi72 wrote:
If Walk-And-Talk is a .app application, and the path to it is /Applications/Walk-and-Talk.app, then what you need to disable is the UNIX executable hidden inside it. Luckily, it's always in the exact same place and with the same name as the application. What you'd need to type would be
cd "/Applications/Walk-and-Talk.app/Contents/MacOS/"
(Press return key)
sudo chmod a-x "Walk-and-Talk"
(Press return key, enter password at prompt)
studioduck wrote:
I checked the folders and nothing appears to be there except maybe one file, called ntalk.plist, perhaps this is an abbreviation for "walk-and-talk" (or perhaps, unbelievably wishful thinking :-D)
andyBall_uk wrote:
Hi
some digging in the application installer packages produced this 'postflight' file below, which suggests that you should look for entries in 'loginwindow.plist' in /Library/Preferences/ . Some googling shows a number of different apps use this method to make a startup item - you wouldn't be the first to be frustrated by it.
--------
#!/bin/sh
# Script called from Installer to set up a startup item
# for Walk-and-Talk
# $1 is the full path to the package
# $2 is the destination path of the installation
# $3 is the installation volume to receive the payload
# $4 is the root directory of the system
# $RECEIPT_PATH is the folder we and other extra files are in
echo ${RECEIPT_PATH}/StartupItemTool -add "$2/Walk-and-Talk.app" >>/private/tmp/wntinst.log
echo chmod 664 $4/Library/Preferences/loginwindow.plist >>/private/tmp/wntinst.log
"${RECEIPT_PATH}/StartupItemTool" -add "$2/Walk-and-Talk/Walk-and-Talk.app" || exit
# Make loginwindow.plist group-writable so that the
# launch-at-startup preference works for admin users
chmod 664 "$4/Library/Preferences/loginwindow.plist"
exit 0
Can't disable application startup. Not in sys prefs!