Force quit systems preferences dialog box

Please help. Yesterday a "friend" tried to set up a wireless connection to a printer from my laptop. Since he does not know Macs, I asked him to stop his tinkering which he did. Now, a dialog box comes up that says: "Another application has changed your network settings" Upon cliking the OK button, the box remains - it does not close until I force quit. This prevents me from even getting into the system preferences to check what has been changed. How can I circumvent this dialog box? All else seems to be working fine; I can still connect to the internet using wireless.
Thanks for any advice you can give.

This is a common bug after the Oct 2008 security update. It appears you can try several things, as mentioned in Macintouch Reader Reports Oct 27 and later:
http://www.macintouch.com/readerreports/security/topic4307.html
and go to Oct 27, 2008 and read several subsequent entries.
To recap:
-Try the latest security update.
-You might be able to dismiss the dialog by clicking at exactly the right moment.
-Or, upon a restart, go to system prefs/security and check, "Require password to unlock each secure system preference"
-you can delete several network and location preference files, but then you have to recreate them all manually.
and there are more suggestions that I haven't tried. I deleted preferences and had to manually reenter location data, which was a hassle.

Similar Messages

  • Itunes artwork screensavor force quits system preferences, but works

    One time I put the itunes artowkr screesavor at liek 3 picutres wide, and 2 pictures tall, and suddenly system preferences quits on its own when I click on it, but on the screensavor, it shows just fine.
    What can I do to fix this error?

    This issue is often caused by a plist file which is corrupt or contains an invalid setting. To fix this issue, create a new folder on the desktop and then choose Go to Folder from the Finder's Go menu. Enter ~/Library/Preferences/ByHost/ as the folder's path and drag everything with a name containing com.apple.screensaver to the folder on the desktop. If the issue persists, return to the ByHost folder, press the Command and Up keys simultaneously, and then move the file named com.apple.desktop.plist to the folder you created earlier. If everything works properly with both files in the folder you created, it is safe to throw it away.
    (20327)

  • I can't quit system preferences ??

    I cant quit sysyem preferences... when I try to close shut down or restart my macbook it says I have to quit system preferences but I cant quit system preferences??

    Try presing Option+Command and the tapping Esc - that should bring up a 'Force Qiut Applications' dialog. Select System Preferences in that dialog and click Force Quit. That should close it down and give you back contral of your system.

  • "apply transitions using" is missing in my preference dialog box!

    Why do I not have the "apply transitions using" in my preference dialog box?

    Clodimedius wrote:
    There is a way to avoid using the overlap mode, which is very simple.
    Instead of using Command T to apply the default transition and shorten the video, drag the transition from the list of transition in the media browser effects library on the right.
    This way, the default overlap mode is applied, instead of using the available media.
    I am sorry, but this is just wrong. The default option is "using available media", as it should, no matter how you apply the transition. Like James said, you only get the "overlap" option if there is no available media to work with.
    By the way, this has been this way for quite some time already (I think since 10.0.1, but I can't be sure).

  • Cannot quit system preferences

    Odd situation. My son's MacBook, running SnowLeopard, suddenly can't shut down System preferences. When we try to quit... we notice the 'Quit System Preferences" is grayed out; we can't 'x' out, or even minimize the window. when we click on the red 'x' option, we get the ker-klunk error sound. The computer can't even shut down, due to the system preference still running. We can't even do the control/alt/escape either. We try to apple Q to quit... nothing. THis is the FIRST time this has happened. Any idea of how to solve this?
    Thanks!

    HI,
    Open Activity Monitor (Applications/Utilities)
    Click the pop up menu on the right and select: All Processess
    Select System Preferences then click the red Quit Process button, click Force Quit.
    You should be able to shut down the Mac now.
    Carolyn

  • Print Preferences Dialog Box

    Hi,
    I am user defined form (Dispatch Memo).
    I have done coding for display crystal report
    When i click on Print Preview, its showing me Print Preference Dialog box.
    How should i hide this dialog box.
    Thanx & Regards,
    Pravin

    HI PRAVINAUG17  ,
    Please check first Printer is attach as default or not
    and which sap version used ?
    Regrads
    kalpen

  • Preferences dialog box: buttons without text

    Since updating Dreamweaver CC from 13.0 to 13.1, the buttons "Apply" and "Cancel" of the preferences dialog box are without text. Also clicking "Apply" has no effect, only "Cancel" works.
    Disable sync settings, and also a reset of Dreamweavers preference files within ~/Library/Application Support/Adobe and ~/Library/Preferences/ did not solve this issue.

    Just to update: Issue got resolved on a re-install .

  • How to modify System Preferences dialogue box text.

    I know that to change any dialogue box for the finder the path is Devices (name of your device) > (drive name) > System > Library > CoreServices > Finder.app  > Contents > Resources > English.lproj. If you open that file with Text Wrangler you can modify any finder message to whatever you want it to be, my question is how can you do the same thing but for the System Prefrences application? I don't know what path to follow for that. Thank you for any possible assistance!

    I'm specifically trying to modify the dialogue box that appears when you want to modify (add or delete) user accounts in System Prefrences "System Preferences is trying to unlock Users & Groups preferences. Type your password to allow this." However I can't seem to find it in either the Finder or System Preferences English.lproj files. Where else might I look? Or do you think I just missed it?

  • Force Quit resets preferences and presets in InDesign 5.5

    I just installed InDesign 5.5 awhile back and got all my printer presets and general preferences set up. I began to notice when I "force quit" the program they all disappear (or return to the default) and it is a hassle to reset everything especially all the printer presets. I've stopped quiting the program through "force quit", but still on a occassion when the program freezes then I occassionally have to "force quit". I didn't have this problem with the previous verson of InDesign. What can I do to keep my preferences and printer presets from resetting after a "force quit"

    If you can't find another solution you could try the applescript below. I use it to roll out user settings in the studio, but it is also useful for very quickly replacing corrupt prefs files. It will overwrite whatever is there.
    # Indesign CS5.5 preferences
    set sourcePrefsFolder to POSIX file "/Volumes/Server/Folder/Folder/Etc" -- change this to your source folder
    set destPrefsFolder to (path to preferences folder from user domain as text) & "Adobe InDesign:"
    set checkDestPrefsFolder to existsItem(destPrefsFolder)
    -- checks the existence of the preference folder – this will not be there if InDesign has never been started
    -- if it's not there it creates one
    if checkDestPrefsFolder is equal to false then -- i.e. the User's InDesign prefs folder is not present
        tell application "Finder"
            make new folder at (path to preferences folder from user domain as text) with properties {name:"Adobe InDesign"}
            duplicate sourcePrefsFolder to destPrefsFolder with replacing
        end tell
    else
        tell application "Finder"
            duplicate sourcePrefsFolder to destPrefsFolder with replacing
        end tell
    end if
    -- handler to check for existence of an item
    on existsItem(itemToTest)
        try
            itemToTest as alias
            set myBoolean to true
        on error
            set myBoolean to false
        end try
        return myBoolean
    end existsItem

  • Startup Disk Quits System Preferences??

    I have just installed Jaguar and updated to 10.2.8 on a recently acquired machine. Everything else seems to work well, including other System Preferences but, when I click Startup Disk, it starts to load and then I get a message that "The application System Preferences has unexpectedly quit."
    Is there some way to fix this other than reinstalling the system? I have run First Aid and Repair Permissions - First Aid says OK??

    Hi Gene:
    I was having a similar problem, except it was the System Preferences on an iMac running 10.3.9: check it out here for a summary of the troubleshooting I went through.
    I think it's a logic board issue, but I've been wrong before.
    Good luck!
    Andrew

  • System preferences dialogue box has gone awol

    I was trying to watch a video on the support area of the apple site and had no sound. I clicked the apple top left and clicked system preferences but no panel appeared. nothing appeared, just the desk top. I tried the System Preferences icon in the dock at the bottom of the screen but again nothing appeared on the desktop. this worked before, any suggestions?

    Hi,
    Open a Finder window. Select your Home folder in the Sidebar on the left. Now open the Library folder then the Preferences folder.
    Move the com.apple.systempreferneces.plist file from the Preferences folder to the Trash.
    Restart your Mac. If that didn't help, go back to your Home folder Library/Preferences and move the com.apple.LaunchServices.plist file to the Trash. See if that helps.
    Carolyn

  • Device preferences dialog box is too narrow and cuts off check boxes - can't change synch prefs?

    In itunes - preferences - devices dialogue box is too narrow - can't see check boxes - hence can't change synch settings. Have checked resolution and text size - both set at smallest.

    Are you on Windows or Mac?
    Look here to see where your Lightroom preferences are located on your system, and make absolutely certain that the user running LR has permission to read and write to that folder.
    Hal

  • How do i quit system preferences when its frozen

    i tried to download icloud now it wont let me quit the application

    You will need to re-install OS X using your Snow Leopard DVDs and then can restore your data from your backup. If you do not feel comfortable doing this plan on a trip to your local Apple Store or AASP and they can assist you.

  • PhotoshopElementsEditor.exe - system error dialog box states"The program cannot start because OnOneToolBox2.dll is missing from your computer. Try reinstalling the program to fix problem"  I have uninstalled, then reinstalled both my Elements 10  and my O

    ninstalled, then reinstalled both my Elements 10 and my OnOne Apps. several times, but keep getting the same message. please help me with this.ninstalled, then reinstalled both my Elements 10 and my OnOne Apps. several times, but keep getting the same message. please help me with this.

    Oop I finally found the answer myself from the onOneSoftware.com website in the support area.  the answer is :
    Ononecorefoundation.dll Is Missing From Your Computer- Error Message
    This error can occur if there are older plugins lingering in your plugins folder of Photoshop after installing Suite 8 and trying to launch Photoshop. To correct the error go to your: [Local Disk (C:)]\Program Files\Adobe\Adobe Photoshop CSx 64bit\Plugins:Delete     
    PS:   I only deleted the old obsolete OnOne plugins,and left their  newer plugins, That worked and now Elements 10 is working just fine

  • Network settings drop down box won't go away without force quit.

    When I click on network settings for any reason a drop down box appears that says "Your network settings have been changed by another application". The only option given is to click "OK". When I click "OK" the box goes up and immediately comes back down, over and over again. It will not go away until I force-quit system preferences. Any Ideas what's going on?

    Hi Clyde,
    To stop the pop-up, Go to System Preferences: Security. Check the box next to "Require password to unlock each secure system preference." Then lock Security.
    Try this cure for Security update...
    http://discussions.apple.com/thread.jspa?threadID=1730909&tstart=0
    The locations are actually...
    /Library/Preferences/SystemConfiguration/preferences.plist
    /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist
    /Library/Preferences/SystemConfiguration/NetworkInterfaces.plist
    /Library/Preferences/SystemConfiguration/com.apple.nat.plist

Maybe you are looking for

  • Failed to create deployable object '********' since it is not a Web Dynpro object - Migration from 7.0 to 7.4

    I have installed NWDS 7.30 EHP1 SP 14 PAT000   with JVM 6 SAP AG to   migrate wedynpro development components from 7.0 to NW7.4 WAS SAP AG 1.6.0_85 on Windows Server 2008 R2 6.1  SP09 PAT000 In track imported below SCAs of version  7.31 SP14 . Could

  • How to Determine Color types in a file?

    How can we tell if a document has any CMYK, RGB or Pantone colors within any object (curves, text, etc.)?  The requires are just to report that the document has any CMYK and/or RGB and/or Pantone colors.  We already can get the color for a bitmap ima

  • Photoshop CS6 Constantly Crashing

    Photoshop CS6 is crashing on me multiple times every day. Photoshop CS6 Windows 7 64-bit (Service Pack 1) ATI Radeon HD 5670 Crashes are not associated with one specific task. Crashes often occur when I set foreground/background color via the Tools P

  • SETTING UP APPROVAL LIMITS IN AR IN VISION OPERATIONS

    Whilst in the AR Corporate Super User responsibility in Vision Operations, I defined approval limits for a an application user with a currency of GBP and an amount ranging from £5000 to£6000 and then saved it. Later, I then decided that I wanted to c

  • Rain custom objects in AE CS5

    I'd like to make multiple copies of a .jpg I've made rain down from the top of the screen, ad-infinitum. Like, imagine small cat's heads raining down from the top of the screen. I have foggy memories of an effect where I can just replace the default