IE 10 Preferences Behavior

So I am working on converting some IE Maintenance policies to IE 10 GPP to support Windows 7 and Windows 8.1 clients with IE 10 and 11.
I understand that I need to use preferences but am a bit confused about how the application of these preferences work. For instance, when I create a new IE 10 preference item all of the settings for IE are included in that one item, but only the settings
I have manually configured are actually applied. Any other settings seem to follow what the user has configured.
The problem is that in the interface there is no visual indicator to tell you which settings you have configured and which are defaults. Also, once I have configured a particular setting, there is no way to 'un-configure' it. I can change it to a different
setting but can't reverse it to allow the user to take precedence over the GPP.
Is what I am observing accurate? Is there any guidance on how to configure these GPP items? Thanks!

Group Policy Preferences do not revert back to the previous setting which it is removed. There is an option to remove when no longer applied. However this normally deletes the setting (e.g. registry key) when you remove it so it has to be done with caution.
The setting in a new I Group Policy Preferences are close to the default setting for the program it self. However there is no way to reset the value back to original without manually configuring it back to original or deleting it and creating a new
one...
I have a bunch of links to Microsoft articles about Group Policy Preferences on my web site at
http://www.grouppolicy.biz/group-policy-preferences/ that should give you a start on more guidance...
Hope that helps.
Alan Burchill (MVP)
http://www.grouppolicy.biz
@alanburchill
Alan,
Thanks for the response!
I am aware of how GPP works, but this is more of an issue with how the IE 10 GPP items work. When you configure an item, it contains every possible IE setting. The settings I manually configure in the item seem to get applied to the user and the ones I leave
alone don't get applied.
If I modify a setting it begins applying to the user. Essentially I see this as moving the setting from an 'unconfigured' state to a 'configured' state. However, there is no way to see which items have been manually configured and which are still at default.
This matters because any items I have manually configured will continue to be applied. If a user changes their settings they could be overwritten by the policy and I will be unable to tell if this is a setting I have configured.
Thanks!

Similar Messages

  • Preference behavior is unpredictable..

    I use this couple of classes to store the state of windows..
    but not the state of every windows is saved.. can some one tell me why?
    the think that i don't understand is the unpredicatble behavior of the system..
    some time the new preferences are stored sometime not
    thanks...
    * JFClient.java
    * Created on February 15, 2006, 4:31 PM
    package util;
    * @author  dimitri
    public class JFClient extends javax.swing.JFrame {
        /** Creates new form JFClient */
        public JFClient() {
            //initComponents();
            JFCManager.getJFCManager().addClient(this);
        public JFClient(String _par) {
            super(_par);
            //initComponents();
            JFCManager.getJFCManager().addClient(this);
        public String getJFClientKEY(){
            return getTitle();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            pack();
        // </editor-fold>                       
        // Variables declaration - do not modify                    
        // End of variables declaration                  
    * JFCManager.java
    * Created on 19 marzo 2006, 19.26
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package util;
    import java.awt.Component;
    import java.awt.event.ComponentAdapter;
    import java.awt.event.ComponentEvent;
    import java.util.Hashtable;
    import java.util.Iterator;
    import java.util.Map.Entry;
    import java.util.Set;
    import java.util.prefs.BackingStoreException;
    import java.util.prefs.Preferences;
    * @author Dimitri
    public class JFCManager extends ComponentAdapter implements java.io.Serializable{
        private final Preferences p;
        final Hashtable<Component,Integer> clientsTable;
        private static JFCManager instance;
        /** Creates a new instance of JFCManager */
        public JFCManager(String _node) {
            p=Preferences.userRoot().node(_node);
            try {
                p.flush();
            } catch (BackingStoreException ex) {
                ex.printStackTrace();
            clientsTable=new Hashtable<Component,Integer> ();
            instance=this;
        static public JFCManager getJFCManager() {
            return instance;
        public void addClient(JFClient client){
            Integer key=Integer.valueOf(client.getJFClientKEY().hashCode());
            System.out.println(client.getJFClientKEY()+" "+client.getJFClientKEY().hashCode());
            clientsTable.put(client,key);
            client.addComponentListener(this);
        public void removeClient(JFClient client){
            client.removeComponentListener(this);
        public void componentMoved(ComponentEvent componentEvent) {
            Component compo=componentEvent.getComponent();
            java.awt.Point point =compo.getLocation();
            if(clientsTable.containsKey(compo)){
                Integer key=(Integer)clientsTable.get(compo);
                p.putInt(key+"_x",point.x);
                p.putInt(key+"_y",point.y);
                try {
                    p.flush();
                } catch (BackingStoreException ex) {
                    ex.printStackTrace();
        public void componentResized(ComponentEvent componentEvent) {
            Component compo=componentEvent.getComponent();
            int w =compo.getWidth();
            int h =compo.getHeight();
            if(clientsTable.containsKey(compo)){
                Integer key=(Integer)clientsTable.get(compo);
                p.putInt(key+"_width",w);
                p.putInt(key+"_height",h);
                try {
                    p.flush();
                } catch (BackingStoreException ex) {
                    ex.printStackTrace();
        public void componentHidden(ComponentEvent componentEvent) {
            Component compo=componentEvent.getComponent();
            int w =compo.getWidth();
            int h =compo.getHeight();
            if(clientsTable.containsKey(compo)){
                Integer key=(Integer)clientsTable.get(compo);
                p.putBoolean(key+"_visible",false);
                try {
                    p.flush();
                } catch (BackingStoreException ex) {
                    ex.printStackTrace();
        public void componentShown(ComponentEvent componentEvent) {
            Component compo=componentEvent.getComponent();
            int w =compo.getWidth();
            int h =compo.getHeight();
            if(clientsTable.containsKey(compo)){
                Integer key=(Integer)clientsTable.get(compo);
                p.putBoolean(key+"_visible",false);
                try {
                    p.flush();
                } catch (BackingStoreException ex) {
                    ex.printStackTrace();
                restoreComponentStatus(key,(JFClient)compo);
        protected void restoreComponentStatus(Integer key,JFClient client){
            int w,h,x,y;
            boolean visible;
            w=p.getInt(key+"_width",100);
            h=p.getInt(key+"_height",100);
            x=p.getInt(key+"_x",100);
            y=p.getInt(key+"_y",100);
            visible=p.getBoolean(key+"_visible",true);
            client.setSize(w,h);
            client.setLocation(x,y);      
        public void restore(){
            Set<Entry<Component,Integer>> s=clientsTable.entrySet();       
            Iterator<Entry<Component,Integer>>i=s.iterator();
            while(i.hasNext()){
                Entry<Component,Integer>e=i.next();
                if(e.getKey()!=null)
                    restoreComponentStatus(e.getValue(), (JFClient) e.getKey());
        public Preferences getP() {
            return p;
    }

    Are you sure that the hashcodes of the titles are matching what is stored in the preferences?

  • Strange preference behavior

    Hi all.
    This morning I started up my computer and FCP and it immediately prompted me to set my scratch disk. I figured my preferences were hosed so I wentto the folder to trash them. At first the Final Cut Pro 6.0 Preferences was not there. Then I looked again and it WAS there but it disappeared when I clicked on it. I got out of the folder and got back in and it was there so I trashed it (and the others) and launched FCP again. Again it asked me to set my scratch disk. I set it and made a test project....noticed all my favorites were gone etc. then saved and restarted my computer. This time the log in was acting wacky and it took me 2 times to log in. Then when it finally let me, I launched FCP again and it DID NOT ask me to reset my scratch disk and it automatically loaded up a project that I haven't had open for 2 days(and hasn't been opening on launch since then either) . Suddenly all my favorites from 2 days ago were there! Any one know what the heck is happening here?
    I am on FCP 6.0.2 on a Power Mac G5 running 10.4.11. I am one of about 6 that is connected to an xsan here are the specs of that:
    3xRaid nodes with 2 controllers, 7 drives at 500gigs. 5 media array with a hot spare, RAID 5. Fiber - 4 gig channel. 3 xServers - metadata controller. about 11 Terabytes available to work with.
    I think all of our user settings are on the XSAN somewhere....we are able to go to any of the 6 computers and see our own desktop etc.
    Message was edited by: esimpsoneditor

    I have little experience with network login and sharing user files from an xSan. It gives me the heebie-jeebies. Anyway, did you by any chance go out to the finder and toss the prefs while the "reset scratch disks" window was still open?
    Usually that alert only means that some some volume in your list of scratch disks is not mounted at the time you launch FCP, but is not indicative of any problem with your prefs. I usually either just quit and mount the missing volume, if I know which it is, or go ahead and reset the scratch disks, removing the missing drive from the list.
    If your prefs are reverting to previous states, there may be some duplicate preference files somewhere on your network that are getting used if you log in differently. "Fraid I can't be of much help to you there...
    Max Average

  • Early 2009 software-hardware audio problems

    I can't seem to put my finger on what is causing the output audio to cease functioning. The problem usually manifests as unable to make any changes to Perferences/Sound where Sound Effects - Output - Input are all greyed out and unselectable and the Audio volume icon (while being checked in the dialogue box) does not appear in the Menu bar (just the space the icon should occupy). Rebooting does not fix the issue, neither does repairing Priviledges/Permissions with Disk Utility.
    Unplugging the computer and holding the power button (SMC reset?), then plugging in the power and holding the power ON button until the Mac chimes, has fixed the System Preferences issue, but as I was typing this, the audio started getting fuzzy and then quit.
    Moving the Output volume control had no effect, but I was able to restore audio by fiddling with the external speaker cable plug. This procedure does not always fix the issue.
    Is this possibly the beginning of the end of the audio board? I'm confused by the System Preferences behavior and the effect of physically pushing the audio jack in and out to restore audio.
    Thanks for all replies.

    The mini has been shut down for a week. When I shut it down, sound was working beautifully.
    Just booted computer up and back to the problem of no Sound effects, no output, no input in the Preferences pane. And there was no "bong" thru the speaker.
    Restart, get "bong" and get Audio preferences window to mostly work, but each and every time I try and change the Output volume with the cursor, get a spinning wheel of death and no or minimal output change. Try the keyboard sound up and down keys, get the icon window, but can't move volume much at all, and my key inputs are greatly delayed, up to 2 minutes. Only sound slider that works is on the menu bar, and it is inhibited as the volume icon continues to flash on the screen, reflecting key inputs made minutes ago. The sound icon in the menu bar is still selected, but can't get slider to drop down to make change because color wheel of death is still spinning.
    Checked the Force quit, but nothing is shown as "not responding". This looks more and more as if there were some software corruption, but no idea where to look.
    The console log is filling up with line after line of failure notes. A small sampling is below:
    Sep 15 18:18:32 halfway-mini kernel[0]: Sound assertion ""( kRequestStateCORB == fCodecRequest->state ) = CORB engine stuck or response was missing"" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDAController/AppleHDAController.c pp" at line 2013 goto handler
    Sep 15 18:18:32 halfway-mini kernel[0]: Sound assertion "0 != err" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/IOHDAFamily/IOHDACodecDevice.cpp" at line 128 goto Exit
    Sep 15 18:18:32 halfway-mini kernel[0]: Sound assertion "0 != runVerb ( kIOHDAVerbSetPinWidgetControl, savedPinWidgetControlValue, &savedPinWidgetControlValue )" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDAWidget.cpp" at line 2028 goto handler
    Sep 15 18:18:32 halfway-mini kernel[0]: Sound assertion "0 != result" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDAEngine.cpp" at line 8255 goto handler
    Sep 15 18:18:38 halfway-mini kernel[0]: Sound assertion ""( kRequestStateCORB == fCodecRequest->state ) = CORB engine stuck or response was missing"" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDAController/AppleHDAController.c pp" at line 2013 goto handler
    Sep 15 18:18:38 halfway-mini kernel[0]: Sound assertion "0 != err" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/IOHDAFamily/IOHDACodecDevice.cpp" at line 128 goto Exit
    Sep 15 18:18:38 halfway-mini kernel[0]: Sound assertion "0 != result" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDANode.cpp" at line 370 goto Exit
    Sep 15 18:18:38 halfway-mini kernel[0]: Sound assertion "0 != fHDAFunctionGroup->powerState ( &restorePowerState )" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDADriver.cpp" at line 333 goto handler
    Sep 15 18:18:39 halfway-mini kernel[0]: Sound assertion ""( kRequestStateCORB == fCodecRequest->state ) = CORB engine stuck or response was missing"" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDAController/AppleHDAController.c pp" at line 2013 goto handler
    Sep 15 18:18:39 halfway-mini kernel[0]: Sound assertion "0 != err" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/IOHDAFamily/IOHDACodecDevice.cpp" at line 128 goto Exit
    Sep 15 18:18:39 halfway-mini kernel[0]: Sound assertion "0 != result" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDAWidget.cpp" at line 1935 goto handler
    Sep 15 18:18:40 halfway-mini kernel[0]: Sound assertion ""( kRequestStateCORB == fCodecRequest->state ) = CORB engine stuck or response was missing"" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDAController/AppleHDAController.c pp" at line 2013 goto handler
    Sep 15 18:18:40 halfway-mini kernel[0]: Sound assertion "0 != err" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/IOHDAFamily/IOHDACodecDevice.cpp" at line 128 goto Exit
    Sep 15 18:18:40 halfway-mini kernel[0]: Sound assertion "0 != result" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDAWidget.cpp" at line 2208 goto Exit
    Sep 15 18:18:40 halfway-mini kernel[0]: Sound assertion "0 != result" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDAWidget.cpp" at line 1938 goto handler
    Sep 15 18:18:41 halfway-mini kernel[0]: Sound assertion ""( kRequestStateCORB == fCodecRequest->state ) = CORB engine stuck or response was missing"" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDAController/AppleHDAController.c pp" at line 2013 goto handler
    I have no concept of what the reports indicate, other than is seems to be related to the sound issues. Are there some plist files that could be corrupted?

  • Nautilus 3.16 Cannot double-click with Icon-View to open items

    I'm updated testing/nautilus-3.16, and it cannot double-click to open ever items.
    But goto Preferences -> Behavior to set ' Single click to open items '
    Single click is working on nautilus, It's can single click to open items.
    And goto Preferences -> Default View to set 'List View'
    Double click is working with 'List View'.
    Not have anything error code in Terminal.
    And I reset gconf and dconf, Icon View with double-click still not work.
    How to solve it?
    Last edited by MayKiller (2015-04-02 10:55:18)

    ewaller wrote:
    Moving to testing.
    Maykiller, you reported the thread to the moderators.  Did you perhaps mean to reply to the thread?
    Sorry for that, I clicked 'report', it's wrong.
    I was mean it is reply for that user...
    Last edited by MayKiller (2015-04-04 12:42:22)

  • Tracking speed changes in a script

    Hi there. I found the commands to change the mouse tracking speed with the defaults command (http://fplanque.com/info-tech/apple/make-your-mouse-faster-on-mac-os-x). Which, I'm glad I did because I was going to edit ~/Library/Preferences/.GlobalPreferences.plist (convert to xml first with plutil of course) and hope that would do it. But, it seems as if changing the values here doesn't have any bearing until you log out and log in again. Yet, when you change the value in the System Preference Pane, it occurs right away.
    Is there any way I can mimic the System Preferences behavior where it occurs right away? I have two mice (Magic Mouse and a Microsoft Mouse) at home/work and they have very different internal sensitivity levels. I was hoping to make two shell scripts to adjust the tracking speed on the fly, but it appears as though I can't without a log out (which takes significantly more time than using the PrefPane).

    Does it have to do with this?
    https://discussions.apple.com/thread/3686148?tstart=0
    If all you want to do is smooth out bad camera work, use the Smooth Behavior in Motion. Make sure you have Optical Flow selected.
    Have fun
    x

  • The problem of Parcellite.

    If I copy some words in firefox and then close it, the clipboard will be cleared.
    So, I install the parcellite, a clipboard manager. But the problem still exists. After close the application, parcellite won't select the last thing I copy automatically.
    Is it normal? And how to solve it?
    My WM is awesome.

    This sounds to me as there are some preferences not activated. I use them all (in parcellite: Preferences->Behavior->Clipboard):
    - Use Copy (Ctrl-C)
    - Use Primary (Selection)
    - Synchronize Clipboards
    And perhaps additionally:
    - Save history
    It is a matter of taste and routine which of them one actually uses. Just check if these settings solve your problem.
    Last edited by bernarcher (2010-03-20 13:31:40)

  • Mail 5.3 won't delete emails

    I have been using Mail for years with no problem but all of the sudden it will no longer delete emails. My kids sometimes use my laptop so maybe someone acidentaly changed a setting but I am at my wits end here.
    I have 3 email accounts gmail, comcast, icloud
    When I delete an email it disapears - BUT - then it magically reappears in Mail.
    When I delete emails they also do not go into the trash folders.
    I am having to log on individually to all three email accounts and delete messages from their interface. Total waste of my time.
    I have looked at the settings in preferences - behaviors and I have checked "Move deleted messages to the trash mailbox" I did not check "Store deleted messages" I selected permanetly erase deleted messages when "one week old".
    Any help would be appreciated.
    Thanks - Jennyrae4

    Back up all data. Rebuild the mailbox. Try to delete the messages again.

  • Premiere Pro 2014: Syncing Settings Failed

    I filed a bug report, but is anyone else having no luck at all syncing settings to Pr CC 2014?  I uninstalled and reinstalled the update just to be sure; can't get anything to work.

    UPDATE 2: jstrawn was right.  Good things come to those who wait.  Syncing worked.  So I hit 'Clear Settings'.  Then sync didn't work.  And then it did again.  I'm happy and not messing with it anymore.
    UPDATE: I managed to find my layouts and keyboard shortcuts and manually transferred them.  Good enough for me.  Cheers.
    Original Reply:
    I ran into this issue an hour ago, and maybe my experience up to now can be helpful to tracking parts of the issue down.
    Sidenote: Prior to today, my last sync was in September.  I am running Win7 Pro - 64bit.
    I went to migrate my settings over from Premiere to Premiere 2014 and initially thought it had worked--unfortunately, the 2014 version had uploaded, now downloaded the prefs, despite my explicitly asking to download them.
    In detail, I had gone to preferences, changed the default to "Always Download" and synced.  Upon reopening the new project, I noticed no migrated settings, and checked the preferences again.  It was set to default to "Always Upload" instead of Download.
    I have now noticed that after every time I try to sync in Premiere 2014, if I then close and reopen the app, the default preferences behavior changes to "Always Upload".  Interesting.
    I then went to Premiere CC to upload the correct preferences.  The error then popped up, over and over.  I came to this forum and saw a suggestion to try "Sign in as another user."  This went through without an error, but it did not upload anything.
    This is my current state now:
    No more error.
    Premiere Pro CC will NOT upload it's preferences to/from Adobe cloud servers.  I am not testing it's download capabilities for obvious reasons (I don't want my actual preferences to be overridden).
    Premiere Pro CC 2014 will upload and download preferences to/from Adobe cloud servers.

  • How do I edit menus in XFCE 4.6 svn?

    I'm used to something like the OB/PekWM menu system where I can just have links to commands, where this seems to use the .desktop files in /usr/share/applications (if I understand correctly). Is there a way I can manually edit the menu to only include the limited list of entries I require? I've gone into the above-mentioned folder and slimmed it down a bit, but it'd be nice if I could put things in the order *I* want them in, in the FOLDERS I want them in. As well as have links to commonly-used documents that don't HAVE a .desktop file.
    ALSO, is there a way I can get my applications menu on a desktop right-click again? I can get it as a submenu of the regular desktop menu, but there used to be an option for REPLACING that desktop menu.

    Kyle Carter wrote:ALSO, is there a way I can get my applications menu on a desktop right-click again? I can get it as a submenu of the regular desktop menu, but there used to be an option for REPLACING that desktop menu.
    Go to Settings > Desktop Preferences > Behavior and check Show desktop menu on right click

  • Annoying Safari behavior when I click show password in preferences and no favicon support

    An hour ago I decided to switch to Safari 6.0.2 on Mac OSX 10.7.5 from Google Chrome and here I am with two issues.
    Issue 1:
          Visiting preferences I eventually went to Password Tab as shown in screenshot below. As I checked show password option all of a sudden this pop up asking for permission :"safari wants to use your confidential information stored in your keychain."
         As I have about 100 websites passwords stored in my keychain, this pop up keeps coming one by one asking for permission for each and every site. And until I select any of 3 options I can not do any activity. I do not want to click around 100 times on Always Allow or any of other 2 options. This behavior is completely nuisance to me. Any suggestion on how to get rid of this? Is this a bug in Safari? Should I report it to Apple?
    Issue 2:
         I figured out that Safari does not support favicons too, which is, in my opinion very efficient way to manage bookmark on Bookmark bar as bookmarks are easily searchable. I visited few questions regarding Favicons and all says NO support for Safari but since they are quite a few months older now I am including it here, with hope, if any solution is known to anyone.
    Any suggestion or assistance will be helpful for any of the issue.
    Due to these two issues I am forced to switch back to chrome within an hour. :-(
    I have also posted my question on StackOveflow website superuser. 
    One small suggestion: UI and formatting on this discussion.apple.com seems very old and painful now. Stackoverflow offers excellent in this area. Kindly try to renovate this site with rich and easy features.

    If you saved the passwords in another browser, then Safari is not automatically authorized to access them, nor is any other application. That's the whole point of the keychain. You should only get the prompt once for each password.

  • Strange behavior with System Preferences involving Guest Account

    I work for a company that primarily uses macs and I have recently been asked to enable the Guest Account on all of them (as well as a general staff login). In doing this, I have come across at least one computer (they all run 10.5.5 or 10.5.6) where it seems impossible to enable the Guest Account. Here is what happens:
    1. I open System Preferences, go to the Accounts pane, authenticate, and click on the Guest Account.
    2. I check the option to "Allow guests to log into this computer" and a little busy sign shows for a second.
    3. I click on another account in the list on the left.
    4. When I click back to the Guest Account, the checkbox is unchecked. Also, the Guest Account does not appear in the fast user switch menu.
    After tinkering around a little bit, I found that there was a "Guest" home folder in the Users folder. I thought that this was strange because I thought that this folder is created when you actually log into the guest account (I checked on another computer and found that this was indeed the case). I then deleted this "Guest" home folder and emptied the trash.
    I again went through the same steps I did above (with a Finder window on the Users folder displayed) and found that when I check the box to enable the Guest Account, a "Guest" home folder appears in the Users folder. I deleted and repeated this process a number of times, all with the same result. I then began looking around for other occurrences of this problem.
    At some point, I came across this discussion, which seemed to pose a possible solution: http://discussions.apple.com/thread.jspa?messageID=9176908#9176908
    As suggested in that thread, I tried creating a standard user with a home folder by the name of "Guest" or "guest". I filled in all the fields but when I clicked on "Create Account", it seems to work and then goes back to the Accounts preference pane except that the account I just created +*is not there!*+ I then tried this while the "Guest" home folder existed in the Users folder and it brings up a window asking whether I want to use the current "Guest" home folder as the home folder for the new account. Even if I click OK, +*the account still does not appear.*+
    Does anyone know what is going on here? The next thing I'll try is an archive and reinstall, but a quicker fix would be nice, since the former involves running all the updates again (we don't have current versions of the Leopard install disks).
    I would be very grateful if anyone has an answer.
    -Nik

    As it turns out, the Guest folder behavior is actually normal, but I still have not figured out why the guest account still doesn't work. My next step will be to try a disk repair. I've repaired the permissions, but that didn't seem to help as far as I know. I'll also try reinstalling the combo updater to 10.5.6 (as suggested by a co-worker) and see if that does anything. Last resort is the archive and reinstall.

  • Dock preferences and behaviors changed since 10.6.3 update

    I just updated and have a strange behavior in my Dock. Previously I set dock to auto-hide, but since the 10.6.3 update the dock behavior has changed. The dock is now fixed at the bottom of the screen and I can't change any of the dock settings in preferences. The dock preference page will display but all the check boxes and drop downs are greyed out by the OS.
    Anyone have any idea where to start? My thought is to delete the plist for dock and allow it to rebuild to default. Does anyone have an alternative suggestion? Thanks.

    Pete,
    Welcome to Apple Discussions.
    ...My thought is to delete the plist for dock and allow it to rebuild to default.
    That would be the first thing to try.
    While you are at it, you may also want to repair disk permissions.
    If neither of those steps work and you used Software Update to install 10.6.3, try downloading and installing the Mac OS X v10.6.3 Update (Combo).
    ;~)

  • IMac mouse problems / strange behavior (impossible to configure mouse preferences)

    I work in a design and communication school, the used hardware is iMac (Intel) whit Lion (OS X 10.7), we have several rooms equipped with these Macs where students light up their data on the server.
    Today, 3 of these Macs had problems with the mouse, including mine.
    Basically the clicks don´t work correctly. We cant close windows, open folders or change some options by clicking, but we can open softwares, scroll.
    In safari if i search something, when I try to click the link i want, safari opens a new tab instead the one i am at, and has other strange behaviors. So I´ve tried to change the mouse settings, and when i make a change, for example: change the scroll button to "buttun 3" the mouse automatically assumes all buttons to dashboard, but not at the configurations window because it says that scrool button still "button 3",  when i use the click or the scroll or any button it just slid me to dashboard or a setting that has nothing to do with my option.
    This is really causing a big problem since we are a school.. I already tried to change the mouse, clean, try another usb ports, search for update or restart but it still doing the same.
    I think it have something to do with an update.. but not sure.. would be really gratefull if someone knows how to solve this.
    As a temporary solution,i disabled all options using only the mouse click, but to do it, i had to plug in my tablet (that works perfectly for the record) and use it instead of mouse (since it was impossible to use it), than went to mouse preferences and disable left click, scroll and side buttons and then restart the Mac (or else it wont work)..
    it will work fine but still a problem cause I use all mouse buttons custom as well as the students...

    I have been experiencing a freezing mouse as well. I updated the mouse drivers but it is still happening. I have been repairing the permissions and noticed something very strange see the mention of a -t. I have been running unix systems since 1984 and have never seen that before....
    Determining correct file permissions.
    Permissions differ on ./Library, should be drwxrwxr-t , they are drwxrwxr-x
    Owner and group corrected on ./Library
    Permissions corrected on ./Library
    Permissions differ on ./private/var/log/secure.log, should be -rw------- , they are -rw-r-----
    Owner and group corrected on ./private/var/log/secure.log
    Permissions corrected on ./private/var/log/secure.log
    Permissions repair complete
    Permissions differ on ., should be drwxrwxr-t , they are drwxr-xr-x
    Owner and group corrected on .
    Permissions corrected on .
    The privileges have been verified or repaired on the selected volume
    I reported this to Apple and they told me to erase the hard drive reinstall the
    system. I really don't want to have to do that. It seems like something is taking
    control of the machine.....

  • Strange behavior in System Preferences when trying to change backgrounds

    Running 10.5.1 on my MacBook Pro without a hitch until today. Installed Aperture 1.5 and updated it to 1.5.6 last night and it too works fine.
    However, today when I went to change my background image in System Preferences I encountered some strange voodoo. I originally under the Desktop applet in System Preferences I had the default images and folders supplied with the operating system, and one images folder I maintain under my Documents folder for my personal backgrounds.
    Now I am no longer able to view my personal backgrounds folder in the System Preferences Desktop applet to select one of my images as a background. Instead I have, literally, two occurrences of the Aperture Projects folder listed under the default operating system background image options.
    Initially I found I cannot discard either instance of the Aperture folder, nor can I re-add my personal images folder (states the folder is already in the list as an option). Naturally I figured something might be amiss with permissions. So I rebooted and ran the Disk Utility which checked my drive to find no pertinent errors. No change in symptom.
    Next I renamed my personal images folder. This produced a change in symptom.
    Now I only observed one occurrence of the Aperture Projects Folder in the System Preferences applet. However, when I went to add my newly renamed personal images folder the second occurrence of the Aperture Projects folder appeared and would not let me access anything therein.
    Could certainly be a problem specific to Aperture, but thought it worth posting here in case anybody else wants to try to troubleshoot or has the same voodoo. Plus, the problem did not occur in 10.4.X running Aperture - so I think it is pretty specific to 10.5.1.
    Not a show stopper, but certainly weird. Hopefully not indicative of any additional problems lurking under the covers.
    TIA for any input or responses.

    Confirmed bug in Aperture on 10.5.1 - adding an iphoto library solves the issue in case anybody hits this post and suffers the same malady.
    http://discussions.apple.com/thread.jspa?messageID=5847357&#5847357

Maybe you are looking for

  • PDF made from Pages wont have commenting rights in Acrobat

    I am sending documents created in Pages as PDF files to people with Acrobat 8 for their review. Both in Mac and PCs. I would like them to be able to add comments as when adding an annotation in Preview but it appears that this right is NOT Allowed wh

  • Pages won't open documents stored in iCloud

    After a major crash of my iMac after installing Mavericks, I returned to my MacBook Air running Mountain Lion and installed Pages 9.0 (can't reinstall Mavericks on the iMac due to an extremely slow connection) Now the problem: Pages won't show me my

  • Document transfer from Solution Manager into ARIS

    We have sucessfully transfer projects content from Solman into ARIS. Unfortunatelly links to documents cannot be found. To my knowledge links from General documentation answell as from Project documentation should be able to find in ARIS after the tr

  • Trying to transfer some purchased songs from my Mac to my ipod and never had an issue before

    Now it shuts down and I get this message: Process:         iTunes [12837] Path:            /Applications/iTunes.app/Contents/MacOS/iTunes Identifier:      com.apple.iTunes Version:         11.0.3 (11.0.3) Build Info:      iTunes-1103042001000000~1 Co

  • Customizing video frame size

    I have to produce a video for a web site and the webmaster tells me my video must be 181x121 (height x width). If I simply resize or scale my finished video (which is 480x720), everything looks distorted. Is there a way to crop the video frame size t