Tirplets in grid matrix - please help!

Hello All,
I just switched from ableton live and am very pleased indeed , the macbook pro and logic 7 really do go hand in hand! - However one issue i have is that i cannot program triplets in the matrix editor - for example if i have an ultrabeat set up i cant snap the grid[on the channel's midi grid not the inbuilt step sequencer] so that i can do swingy hi hat patterns - on ableton one just presses ctrl+3 and it switches from 16 to 16/t for example but on logic it seems that it just goes 8-12-16 etc
sorry if i expressed my question in a slightly jumbled manner but i'm desperate to get stuck into some nitty gritty drum programing!
thanks in advance!

on th left side of the matrix editor just under the tool box is a small box, the default is 16. change it to 12 for 8th note triplets, 24 for 16

Similar Messages

  • IPhone 4s camera issue, extra grid line - please help!

    Hi everyone,
    I have a lovely new 4s, have had it for less than 24 hours and there is a problem with the camera that I cannot find anywhere else on the web yet... I have an extra grid line that does not disappear and which does show up on the photos I take!
    Details: the grid line is on the main rear facing camera only; it is there whether the grid is turned on or off; it appears as a grid line on the photos you take; the camera is up-to-date with the latest version; I have tried restarting the phone; it only happened after I switched to HDR mode and then when I turned HDR off, this mysterious extra grid line was there; the line is only there in photo mode - it disappears when switched to video mode...
    and I think that's those are all the details I can give you!
    Is anyone experiencing / experienced this same problem? If so, please help!! Thank you so much!
    Thanks everyone, and Happy Holidays to all!

    Hi KiltedTim. Thanks, yes, I will definitely have to do this if I can't get rid of it - just so annoying, because won't be able to go for a while, until after the Christmas holidays, which means I'll be without my cool iPhone camera!
    Also - the one thing I forgot to mention in my original post is that I took several photos which all came out perfectly. The issue only happened after the first time I switched HDR mode on and then turned it back off.
    Thanks for your help,
    Any more suggestions out there anyone? Thanks all!

  • Fluid Grid Layout - Please help

    Hello, I would sure appreciate help asap!
    I have made a draft of a website and although I used the Fluid Grid layout I seem to be having issues.  Layout is has header/nav, main, rightsidebar and footer. I do realize that I put a table into the header/nav and rightsidebar and will go back and update these soon, but that's not the issue I have right now.
    1.  Why is it when I view the pages at a 100% zoom in IE, it looks so much smaller than 100% zoom in Chrome.  My concern is the MAIN Div on all the pages.
    2.  Why in Chrome is the rightsidebar going all the way to the right and not staying contained within the gridcontainer?
    3.  I thought ems were the way to go with fonts, but I can't get a "balance" between IE and Chrome design wise.....also with images?
    http://www.1800gotblinds.com/index-draft.php
    http://www.1800gotblinds.com/products.php
    So frustrated, thanks for any help you can offer! 
    Donna

    If you're going to use ems, you must establish a base font-size, 100% = 16px which is the average default font-size in most browsers.  Your content CSS might look something like this:
    /**layout**/
    body {
    font-size: 100%;
    .gridContainer {
    font-size: 16px;
    /**typography**/
    h1 {font-size: 3em}
    h2 {font-size: 2.25em}
    h3 {font-size: 1.75em}
    p {font-size: 1em}
    Also look at Viewport Sized Fonts
    http://css-tricks.com/viewport-sized-typography/
    Nancy O.

  • Boolean matrix - Please Help

    Would anyone be able to help me out with code to create a boolean (1/0) for a GUI? Iam looking to use a matrix of up to 10 rows and columbs that would resize depending on an entered value. It would then be possible to use the mouse to click on each element within the matrix to make it a 1 or a 0. I would appretiate any help.

    yay !!!!
    import java.awt.*;
    import java.awt.event.*;
    import java.util.BitSet;
    import javax.swing.*;
    import javax.swing.event.MouseInputAdapter;
    * @author  Ian Schneider
    public class BooleanMatrix extends JPanel {
        BitSet bits;
        int w = 10;
        int h = 10;
        /** Creates a new instance of BooleanMatrix */
        public BooleanMatrix() {
            resizeMatrix(w,h);
            MouseUpdater updater = new MouseUpdater();
            addMouseListener(updater);
            addMouseMotionListener(updater);
        public boolean isSet(int x,int y) {
            return bits.get(idx(x,y));
        public void toggle(int x,int y) {
            bits.flip(idx(x,y));
        private int idx(int x,int y) {
            return x + y * w;
        public void resizeMatrix(int w,int h) {
            bits = new BitSet(w * h);
            this.w = w;
            this.h = h;
        public Dimension getPreferredSize() {
            return new Dimension(w * 10,h* 10);
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            for (int i = 0, ii = w; i < ii; i++) {
                for (int j = 0, jj = h; j < jj; j++) {
                    if (isSet(i,j))
                        g.setColor(Color.green);
                    else
                        g.setColor(Color.red);
                    g.fillOval(i * 10 + 2,  j * 10 + 2, 6,6);
        class MouseUpdater extends MouseInputAdapter {
            public void mouseClicked(MouseEvent me) {
                int x = me.getX() / 10;
                int y = me.getY() / 10;
                toggle(x,y);
                repaint();
            public void mouseDragged(MouseEvent me) {
                mouseClicked(me);
        public static final void main(String[] args) throws Exception {
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
            f.getContentPane().add(new BooleanMatrix());
            f.pack();
            f.setLocationRelativeTo(null);
            f.show();
    }The rest of the exercises are left to the student :)

  • How to hide the grid lines between two rows in a ALv? Please help!

    Hi Experts,
             I have a ABAP ALV(reuse alv grid FM) report.
    The last field in the ALV is "Description" which can contain data of size more than 130 chars.
    Since the max field length in ALV grid is 130 chars hence I am splitting this field value whenever the field length is more than 130 chars.
    After splitting I am generating duplicate rows but with different "Description" field values ( each contains the splitted values".
    For example:
    Name| City | Description                             |
    Hari|HK    |Employee responsible for time management |
    Hari|HK    |and issue resolution                     |
    Now I want to hide the grid line between these two rows
    and just for Description field.
    In other words I want ALV to display like this:
    Name| City | Description                             |
    Hari|HK    |Employee responsible for time management |
    Hari|HK    |and issue resolution                     |
    How can I acheive this?
    Please provide some sample code.
    Please help. I will be really greatfull to your help.
    Thanks
    Gopal

    Hi Rich,
          If that is the case then atleast how can I hide the complete row grid line?
    Please give some sample code.
    Thanks
    Gopal

  • URGENT (PLEASE HELP) AC Analysis Matrix Singular Error

    Hi all (sorry to post on a new thread again Yao) , my project is due tomorrow at 9 am. Therefore please please please help me on this circuit.
    I can't perfom AC analysis on the circuit for that there is a matrix singular error. May anyone please tell me what is wrong ??
    Please! Thank you!!!
    Attachments:
    489project2.ms10 ‏105 KB

    OK, I added a current probe to measure the current thru the multimeter (You could also use a current - controlled voltage source) but no matter what I look at I can't get an ac analysis to give a non-zero gain.  I simplified the circuit some more and set the option for the node numbers to show. There is something fundamentally wrong in the area of the ac voltage source V1 and the voltage controlled capacitor. As long as the voltage source is in parallel with the capacitor, the capacitor current will be driven only by the voltage source. The capacitor voltage will always be equal to the voltage source V1. The current source A4 doesn't accomplish anything - its current will just be sunk into the voltage source V1. I thought maybe you really meant to measure the voltage controlled capacitor current and feed that back into one of the inputs of A4 but I can't really tell what you are trying to accomplish. Maybe this will give you some ideas.
    Attachments:
    489project2r1.ms10 ‏82 KB

  • Cant' move images from frame to frame inside a Grid in InDesign. Please Help

    When creating a grid in indesign there is an option to move images from frame to frame, and having them rotate around the frames to see where each image is best to be placed. Example I created a grid with 6 images (2 rows and 3 columns) and now i want image 1 to be where image 6 is. I know there's a way by hitting the arrows and some other keys and have all the images start rotating. I did it once I just can't remember. Please help. How do you move the an image from one frame to another frame without having to go to edit place?
    Thanks,
    Paola

    Swapping images

  • Please help : How to print a matrix from the console...

    Hi..
    Please help:
    How to print a matrix on the console , but i want to take all the input from the console.. like...
    if the matrix is of size...
    mxn
    where
    m : row
    n : column
    and the all the elements of the matrix from the console it self... .
    Please help...

    Thanks...
    I am able to print the elements of the array but i am not able to assign those values to the array ....
    How to do that...
    I just did a little change in my code...
    import java.util.Scanner;
    public class CreatingAMatrix {
        public static void main(String[] args) {
         // TODO Auto-generated method stub
         System.out.print("Enter the number of rows: ");
         Scanner scanner1 = new Scanner(System.in);
         int m = scanner1.nextInt();
         System.out.print("Enter the number of coulmns:");
         Scanner scanner2 = new Scanner(System.in);
         int n = scanner2.nextInt();
         System.out.println("The size of the matrix is : " +m+" x "+n );
         int[][] a = new int[100][100];
         for(int i=0;i<=m;i++)
             for(int j =0; j <= n; j++)
              Scanner scanner3 = new Scanner(System.in);
              int o = scanner3.nextInt();
             System.out.println();
         for(int i=0;i<=m;i++)
             for(int j =0; j <= n; j++)
              System.out.print(a[i][j] + "\t");
             System.out.println();
    }I am getting an output as this
    output:
    Enter the number of rows: 2
    Enter the number of coulmns:1
    The size of the matrix is : 2 x 1
    1
    2
    1
    2
    3
    5
    0     0     
    0     0     
    0     0     
    how should i assig those input values to my array..
    Please help

  • How to display grid lines in list view please help

    Hello,
    What should I do if I would like do display grid lines in list view. I've read related topics but I stil don't know how to do it. I use Sharepoint Designer. Please help
    Regards

    Hi,
    You need to modify default XSLT of listview webpart. Open your page in designer and use below jquery.
    <!–ADJUST TABLE COLUMN WIDTH–>
    <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js“></script>
    <script>
    $(function(){
    $(“tr.ms-viewheadertr th:contains(‘Title’)”, “#MSO_ContentTable”).css(“width”, “50px”);
    $(“tr.ms-viewheadertr th:contains(‘Assigned To’)”, “#MSO_ContentTable”).css(“width”, “300px”);
    </script>
    Check this for more info about steps:
    http://jshidell.com/2010/09/19/adjusting-sharepoint-list-columns-using-jquery/
    You can also look into this MSDN article for more customization:
    http://msdn.microsoft.com/en-us/library/ff630941.aspx#odc_sp14_qn_UsingSharePointDesigner2010WorkwithWebParts_CreateXSLTListViewWebPart.
    Hope it could help
    Cheers, Hemendra-MCTS "Yesterday is just a memory,Tomorrow we may never see"

  • Matrix of Radio buttons on Datagrid please help!

    Hi,
        Anyone help me walk through this, I have a Datagrid object which uses radio button as item renderer.
    To be more specific this is a matrix of radio buttons on datagrid. The datagid columns are dynamically generated depending on the number of items i have in my database record, (e.g could be 10, 20, and so on...). The rendering of items goes well. Now my question would be how am I able to group the radio button in my datagrid "per column or per row"? since it appears to me that groupName is not working if applied on the item renderer. I also set the a radio button group on the item renderer parent document but it sets all the button to only one group.
    Any hints, and ideas how am I able to accomplish this? Please help this novice trying to wrap himself in flex.
    Thanks!
    Best Regards

    try this.
    <mx:RadioButtonGroup id="groupA"/>
    <mx:RadioButtonGroup id="groupB"/>
    <mx:DataGrid>
         <mx:dataProvider>
              <mx:Object Group="A" Price="11.99" groupName="groupA"/>
              <mx:Object Group="B" Price="11.99"  groupName="groupB"/>
              <mx:Object Group="A" Price="11.99" groupName="groupA"/>
              <mx:Object Group="B" Price="11.99"  groupName="groupB"/>
              <mx:Object Group="A" Price="11.99" groupName="groupA"/>
              <mx:Object Group="B" Price="11.99"  groupName="groupB"/>
              <mx:Object Group="A" Price="11.99" groupName="groupA"/>
              <mx:Object Group="B" Price="11.99"  groupName="groupB"/>
         </mx:dataProvider>
         <mx:columns>
              <mx:DataGridColumn dataField="Group">
                   <mx:itemRenderer>
                        <mx:Component>
                             <mx:RadioButton groupName="{data.groupName}" label="{data.Group}"/>
                        </mx:Component>
                   </mx:itemRenderer>
              </mx:DataGridColumn>
              <mx:DataGridColumn dataField="Price"/>
         </mx:columns>
    </mx:DataGrid>
    You may want to set the groupName dynamically in your data provider.

  • Still Unresolved-please help: Organizer Grid Photos below sight on screen

    Thank you to those who tried to help a few days ago when I first posted this. Nothing has worked though, so I’m hoping to find a way to fix this.
    Screen Shot below is from my iMac on whichI have Adobe Photoshop Elements 11.
    When viewing the grid in my Organizer albums, I can't see or access:
    * the bottom rowS of photos-- I can see a slim line of the top of each photo but not a complete photo of any on the bottom rowS
    * the slide bar
    * the bottom right corner of the Adobe Organizer screen.
    The slide bar disappears from sight when I scroll down to try to see to the bottom of the screeen, and only a portion of those bottom row/rows is visible.
    I've used the minimizer/maximizer green button in the left top corner— almost nothing changes when I use that button.
    I've moved my dock to the left of my screen instead of at the bottom. Still can't see those pictures or the bottom right corner of the Adobe Organizer screen.
    I've quit and restarted the application.  
    It was recommended that I:
    (first I quit Adobe) go to the system preferences and set the screen resolution to the lowest possible number, which for me is 1344x756. This enlarged the font and display of the Adobe and everything else. 
    then I opened Adobe again.
    I was then told to revert back, in my system settings, to the regular display setting. The Adobe Organizer grid display was supposed to snap back to the proper view, but nothing changed. The lower right corner is still out of view.
    Please help! THis is driving me nuts.
    Thank you so much,
    diane

    According to Apple website you need to do this:
    You can activate this option in System Settings -> General -> and under “Show scroll bars” choose “Always”.
    See this link:
    <http://www.tips-and-tricks-in-mavericks.com/how-to-fix-scrolling-issues-after-upgrading-to -osx-mavericks/>
    I don't use Apple MACs so I can't help you further.

  • Please help in Matrix...Z-A

    I am getting the Month wise sorting order also.
    ItemCode Jan Feb -- Dec YEARTOTAL
    001 200 300 400 900
    002 400 200 200 800
    003 100 500 600 1200
    I am calculating 12 months total in YEARTOTAL COLUMN and I want this YEARTOTAL COLUMN to be in Decending to check the total sale Qty from Maximum to Minimum.
    Please help me to sort on YEARTOTAL COLUMN decending order.
    Thanks and regards,
    Syed Muzzammil

    Hi Syed,
    I am assuming that you re calculating the "YearTotal" sales in a summary column inside your report's data model. If that is the case, then reports does not know the values of this column before creating the report. It calculates this value in every row. So it will not be able to sort by this column, because for sorting you need to know all the values beforehand.
    What you can do is - in Reports data model, you introduce a Formula Column inside the same Group as Item_Code. In this Formula Column, use PL/SQL to calculate the value of YearTotal sales (just total sales for one product over all months). Then go to the Property Inspector of this column, and set Break Order > Descending. This should do to trick.
    Make sure that you drag this column in group to be at the top (above Item_Code).
    For more information, see Builder help on "Break Order property".
    Navneet.

  • Cannot insert fieldset inside Fluid Grid div (Was: Please help)

    Please help..I couldnot insert fieldset inside FG div.(I couldnot find the fieldset while viewing in the browser also.)

    A <fieldset> is a <form> element.    Copy and paste this form code into a new, blank document.  Save and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Form with jQuery Validation</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <!--JQUERY LATEST-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--JQUERY VALIDATE-->
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js">
    </script>
    <style>
    /**BEGIN FORM STYLES**/
    #contact {
    font-size: 14px;
    width:95%;
    margin: 0 auto; /**adjust margins as needed**/
    background: #FFF;
    border: 2px groove #999;
    padding: 2%;
    #contact fieldset {
    margin-bottom:5px;
    background:#CCC;
    #contact legend {
    padding: 8px;
    background: #000;
    font-weight: bold;
    color: #FFF;
    line-height: 1.5;
    /**wrap form lables and fields inside ordered lists for better web accessibility**/
    #contact ol {
    list-style:none;
    margin:0;
    padding:0}
    #contact li {
    padding:5px;
    margin: 0;
    clear: left;
    #contact label{
    display:inline-block;
    float:left;
    line-height: 23px; /**lines up labels with fields**/
    width:15%;
    font-size: 12px;
    text-align:right;
    margin-right: 10px; /*space between labels, fields*/
    #contact textarea,
    #contact input[type=text],
    #contact input[type=email],
    #contact input[type=number] {
    width: 45%; /**same width on fields**/
    padding: 5px;
    color:#333;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 12px;
    #contact select {width:47%}
    /**field background on focus**/
    #contact input:focus,
    #contact input:active,
    #contact textarea:focus,
    #contact textarea:active,
    #contact select:focus,
    #contact select:active
    {background-color: #FFC;}
    #contact label.error {
        line-height:1.5;
        color:#F00;
        background:#FFC;
        padding:3px;
        box-shadow:1px 2px 3px #333
    </style>
    </head>
    <body>
    <p>Basic Contact Form</p>
    <!--begin form-->
    <form id="contact" action="form-processing-script.php" method="post">
    <fieldset>
    <legend>Required Fields:</legend>
    <ol>
    <li><label for="first_name">Name:</label>
    <input name="first_name" id="first_name" type="text" required placeholder="First"></li>
    <li><label for="last_name">Last:</label>
    <input name="last_name" id="last_name" type="text" required placeholder="Last"></li>
    <li><label for="e_mail">E-mail:</label>
    <input name="e_mail" id="e_mail" type="email" required placeholder="[email protected]"></li>
    <li><label for="selectTest">Select One:</label>
    <select name="selectTest" id="selectTest" size="4" required title="Please select something!">
    <option value="1">Saab</option>
    <option value="2">Audi</option>
    <option value="3">Fiat</option>
    <option value="4">BMW</option>
    </select></li>
    </ol>
    </fieldset>
    <fieldset>
    <legend>Optional Fields:</legend>
    <ol>
    <li>
    <label for="phone">Phone:</label>
    <input name="phone" id="phone" type="number" placeholder="(area code) 123-4567" />
    </li>
    <li><label for="subject">Subject:</label>
    <input name="subject" id="subject" type="text" />
    </li>
    <li><label for="message">Message:</label>
    <textarea id="message" name="message" placeholder="remarks"></textarea>
    </li>
    <li><input name="submit" type="submit" value="Submit">
    </li>
    </ol>
    </fieldset>
    </form>
    <!--end form-->
    <!--form validation-->
    <script>
    $(document).ready(function() {
        $("#contact").validate();
        $("#selectTest").validate();
    </script>
    </body>
    </html>
    Nancy O.

  • I need to know how to download all photos AND videos from 2 "libraries" within Adobe Revel. Please help.

    I was quite angered last night when I posted the first time, so lets try this again:
    Here is my setup:  I have adobe Revel on my Mac and iOS devices and it has worked quite well to be honest until I recently realized my photos and videos are basically trapped within the software. There is no way (that I am aware) to export all photos/videos or any kind of tool to pull the raw data out of the app and put it into say iPhoto or Lightroom.
    Since I am not a fan of this sort of lock-in, (something I despise and encourage companies never to do), I am sadly going to cancel my Revel account once I get this sorted and store my photos elsewhere. This is a huge missed opportunity for Adobe, as the money is not an issue - its simply that the quality of service I need just doesn't seem to be there for this product.
    So here is what I am trying to achieve:  I simply want every one of my photos and videos to store on my hard drive like the old days.  I don't care about folders or hirarcy or any kind of organization - I can do that with the metadata later. I simply want all of my things. 
    My hang up is in that I have already tried methods like "Show package contents" in the photos/adobe revel route and that works to an extent, but is incredibly cumbersome as I have to sift through all of the many folders.  If that were the worst of it, I might be ok.  But what is truly alarming and making this difficult is that I don't know where on earth the videos in Revel are actually stored.  They show up in the application and I could export them one by one but I literally have hundreds.  I can't find the actual files on my Mac anywhere.
    Is there anyone at all who can help with this?  The goal is to make this transition fairly easy and I feel that Adobe has very intentionally made it very difficult to consider leaving. I spend >$50/month on Adobe services and I am a little in shock this application seems so poorly designed for anything other than just dropping your photos into it.  Please, please help if you can.  I would be so grateful as Adobe customer service doesn't seem to know or care much about supporting this product.

    Hi KDT
    Yeah. I agree, if you are used to a situation where "it's on the cloud AND synced down to your hard disk where you can get it" Revel is not exactly that. There were legacy decisions behind that - most not as sinister as you might think but I won't bore you with those details.  AND yes you are correct. We currently don't have any way for you to wholesale download everything at once. So you aren't missing anything. Until we provide that mechanism I can provide some guidance.
    I'm going to assume you have the current version of Revel on your Mac which is 2.0.
    The easiest thing for you to do will be to export your files manually. You can actually select a range of files and export. So it's not a one by one thing.
    You'll have to decide how best to perform the selection based on your photography habits. If you tend to take batches of files surrounding specific dates. You could do it by date. In the date view (In the applications upper right "Showing: Dates"). If you look at the end of a date row you'll see a small grid. If you click that grid you are taking into a grid view of just that date. If you select all and file>export you'll export the contents of that date.
    The other option is remaining in Grid view (In the applications upper right "Showing:Grid") and perform a shift+selection where you select your first file, move down the desired range and while holding shift you select a second file (standard multi-select stuff).
    One thing to keep in mind as you do this. You'll notice when you export you can export original or 'current version'. Export original does just that. Exports unedited original versions of your images as they were uploaded to us. When you export the current version of an image we'll export a rendition of the edited image. This "current version" image is not the original and in most cases will be a rendition that is not the same size as the original. So keep that in mind as you proceed.
    Not ideal, I fully realize, but I do hope it gets you closer to having your images back on your hard disk as you desire.
    As for your subscription. Assure you have checked your iOS Appstore subscription settings and set Revel to not auto-renew. Unfortunately for a pro-rated refund on the subscription balance you no longer desire you'll need to work with Apple as they hold the purse strings for Appstore purchases. Refunds haven't been a problem in the past so you should have no issue.
    Hope this helps.
    Jason

  • Cannot log into AD on Mountain Lion. Please help! I got the logs

    My company has been experiencing this problem ever since Mountain Lion released.
    The problem is, we cannot log into AD on all of our MAC who currently runs Mountain Lion. We, however, can log into AD fine with Lion and Snow Leopard just fine. We only use AD, we don't use Open Directory or have any Apple server.
    I have gather some logs using the SSH. Please help me view the logs and let me know what's going on if possible.
    Here are the steps that I performed before capture these logs.
    I format the hard drive and installed a new OS X 10.8.2 on the hard drive using the Recovery Mode (Hold down option Key while boot).
    I created a new computer name call ittest-mac3 in AD and assigned to proper OU. I changed the computer name under System Preferences ==> Sharing to "ittest-mac3".
       3.  I bind this Macbook Pro to our Active Directory via xyz.com. The bind was successful. I enabled "Create mobile account at login", "Required confirmation before creating a mobile account", " Force local home directory on start up disk", " Use UNC path from active directory to derive network home location", "Default user shell: /bin/bash/. Network protocol to be used: smb:
    After I reboot the Mac client, I was unable to log into it using our regular AD user account (consider all of our employees has regular account).
    I created 2 test accounts for Mac on Active Directory, they are "mac test" and "mac test 2".
    With "mac test" account, I configured everything the same as our regular account in AD. Which I was not able to log into the Mac client using this account.
    With “mac test 2” account, I configured everything the same as our regular account in AD EXCEPT for UNIX Attributes. I was successfully logged into the Mac client using this user account.
    So the problem is ... set the Unix Attributes for NIS domain on the AD account prevent everyone of us in our company to log into AD on any client that have Mountain Lion OSX installed.
    Here are the logs:
    Log1. This logs showed successful when log into AD on a Mountain Lion OSX using an AD account that don't have UNIX attributes setting configure.
    login as: administrator
    Using keyboard-interactive authentication.
    Password:
    Last login: Mon Dec 17 08:43:38 2012
    ittest-mac3:~ administrator$ sudo su -
    WARNING: Improper use of the sudo command could lead to data loss
    or the deletion of important system files. Please double-check your
    typing when using sudo. Type "man sudo" for more information.
    To proceed, enter your password, or type Ctrl-C to abort.
    Password:
    ittest-mac3:~ root# cd /var/log
    ittest-mac3:log root# tail -f system.log
    Dec 17 09:02:19 ittest-mac3.local SecurityAgent[650]: *** WARNING: -[NSImage com                                                                            
    positeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Pleas                                                                             
    e use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:02:50 ittest-mac3.local sshd[659]: Accepted keyboard-interactive/pam f                                                                            
    or administrator from 10.10.202.63 port 50738 ssh2
    Dec 17 09:02:50 ittest-mac3.local sshd[659]: USER_PROCESS: 665 ttys000
    Dec 17 09:04:59 ittest-mac3.local sudo[673]: administrator : TTY=ttys000 ; PWD=/                                                                             
    Users/administrator ; USER=root ; COMMAND=/usr/bin/su -
    Dec 17 09:04:59 ittest-mac3.local su[674]: in pam_sm_authenticate(): authenticat                                                                             
    ion succeeded
    Dec 17 09:04:59 ittest-mac3.local su[674]: in pam_sm_acct_mgmt(): The group chec                                                                             
    k succeeded.
    Dec 17 09:04:59 ittest-mac3.local su[674]: in pam_sm_acct_mgmt(): OpenDirectory                                                                              
    - Membership cache TTL set to 1800.
    Dec 17 09:04:59 ittest-mac3.local su[674]: in od_record_check_pwpolicy(): retval                                                                             
    : 0
    Dec 17 09:04:59 ittest-mac3.local su[674]: in pam_sm_open_session(): No session                                                                              
    type specified.
    Dec 17 09:04:59 ittest-mac3.local su[674]: in pam_sm_open_session(): Going to sw                                                                            
    itch to (root) 0's Background session
    Dec 17 09:07:19 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'config.modify.com.apple.familycontrols.override' by client
    '/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resources /parentalcontrolsd' [679] for authorization created by
    '/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resources /parentalcontrolsd' [679] (3,0)
    Dec 17 09:07:19 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'config.modify.com.apple.familycontrols.loginwindow.override' by
    client '/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resource s/parentalcontrolsd' [679] for authorization created by
    '/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Resources /parentalcontrolsd' [679] (3,0)
    Dec 17 09:07:19 ittest-mac3.local SecurityAgent[650]: User info context values set for mtest2
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): Got user: mtest2
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): Got ruser: (null)
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): Got service: authorization
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): Context initialised
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): Stashing kcm credentials in enviroment for kcminit: [email protected]
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_authenticate(): pam_sm_authenticate: ntlm
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in od_record_check_pwpolicy(): retval: 0
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in od_record_attribute_create_cfstring(): returned 2 attributes for
    dsAttrTypeStandard:AuthenticationAuthority
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Establishing credentials
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Got user: mtest2
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Context initialised
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Got euid, egid: 0 0
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done getpwnam()
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done setegid() & seteuid()
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): pam_sm_setcred: init credential cache
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): pam_sm_setcred: storing credential for: [email protected]
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Got cache_name: API:164370296:1
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Environment done: KRB5CCNAME=164370296:1
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Cache closed
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done cleanup2
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done cleanup3
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done seteuid() & setegid()
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): Done cleanup4
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in ac_complete(): ac_complete returned: 0 for 164370296
    Dec 17 09:07:19 ittest-mac3.local authorizationhost[680]: in pam_sm_setcred(): pam_sm_setcred: ntlm done, used domain: PROS1
    Dec 17 09:07:19 ittest-mac3.local SecurityAgent[650]: Login Window login proceeding
    Dec 17 09:07:19 ittest-mac3.local ManagedClient[644]: ODUGetMCXRecordWithCache(): [ODRecord setNodeCredentialsWithRecordType:"dsRecTypeStandard:Users"
    authenticationType:kDSStdAuthNodeNativeRetainCredential authenticationItems:["mtest2", password]]) == 2100 (Connection failed to the directory server.) [This
    error is ignored and is only being flagged for notification]
    Dec 17 09:07:20 ittest-mac3 kernel[0]: Sandbox: kcm(681) deny mach-lookup com.apple.networkd
    Dec 17 09:07:20 ittest-mac3.local MCXCompositor[690]: CFPreferences: user home directory for user kCFPreferencesCurrentUser at  is unavailable. User domains
    will be volatile.
    Dec 17 09:07:20 ittest-mac3.local UserNotificationCenter[696]: *** WARNING: Method userSpaceScaleFactor in class NSWindow is deprecated on 10.7 and later. It
    should not be used in new applications. Use convertRectToBacking: instead.
    Dec 17 09:07:24 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client
    '/System/Library/CoreServices/ManagedClient.app' [644] for authorization created by '/System/Library/CoreServices/ManagedClient.app' [644] (100002,0)
    Dec 17 09:07:24 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client
    '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/writecon fig' [697] for authorization created by
    '/System/Library/CoreServices/ManagedClient.app' [644] (100002,0)
    Dec 17 09:07:24 ittest-mac3.local ManagedClient[644]: ODUMakeMobileMCXRecord: updating record from kDSNAttrOriginalHomeDirectory =
    <home_dir><url>smb://pros-fsvr2/home/mtest2</url><path>/</path></home_dir>
    Dec 17 09:07:24 ittest-mac3.local ManagedClient[644]: ODUMakeMobileMCXRecord: updating record to   kDSNAttrOriginalHomeDirectory =
    <home_dir><url>smb://pros-fsvr2/home/</url><path>mtest2/</path></home_dir>
    Dec 17 09:07:25 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client
    '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/writecon fig' [697] for authorization created by
    '/System/Library/CoreServices/ManagedClient.app' [644] (100002,0)
    Dec 17 09:07:26 --- last message repeated 1 time ---
    Dec 17 09:07:26 ittest-mac3 com.apple.launchd[1] (com.apple.launchd.peruser.164370296): Throttling respawn: Will start in 4 seconds
    Dec 17 09:07:26 ittest-mac3.local writeconfig[697]: Unable to talk to lsboxd
    Dec 17 09:07:26 ittest-mac3.local writeconfig[697]: SFL(697): AddNewItemWithProperties_rpc returned 5
    Dec 17 09:07:26 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client
    '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/writecon fig' [697] for authorization created by
    '/System/Library/CoreServices/ManagedClient.app' [644] (100002,0)
    Dec 17 09:07:30 ittest-mac3.local distnoted[721]: # distnote server agent  absolute time: 3817.482079135   civil time: Mon Dec 17 09:07:30 2012   pid: 721
    uid: 164370296  root: no
    Dec 17 09:07:30 ittest-mac3.local distnoted[721]: Bug: 12C60: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    Dec 17 09:07:30 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.login.console' by client
    '/System/Library/CoreServices/loginwindow.app' [641] for authorization created by '/System/Library/CoreServices/loginwindow.app' [641] (100003,0)
    Dec 17 09:07:30 ittest-mac3.local loginwindow[641]: Login Window - Returned from Security Agent
    Dec 17 09:07:31 ittest-mac3.local loginwindow[641]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort,
    err: 1102
    Dec 17 09:07:31 ittest-mac3.local loginwindow[641]: USER_PROCESS: 641 console
    Dec 17 09:07:31 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.gamed): Ignored this key: UserName
    Dec 17 09:07:31 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.gamed): Ignored this key: GroupName
    Dec 17 09:07:31 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find:
    com.apple.ReportCrash.Self
    Dec 17 09:07:31 ittest-mac3.local loginwindow[641]: Connection with distnoted server was invalidated
    Dec 17 09:07:31 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client
    '/System/Library/CoreServices/UserAccountUpdater' [727] for authorization created by '/System/Library/CoreServices/UserAccountUpdater' [727] (2,0)
    Dec 17 09:07:31 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client
    '/usr/libexec/launchdadd' [730] for authorization created by '/System/Library/CoreServices/UserAccountUpdater' [727] (100002,0)
    Dec 17 09:07:31 ittest-mac3.local com.apple.SecurityServer[15]: Session 100015 created
    Dec 17 09:07:31 ittest-mac3.local MRT[731]: MRT finished scan. Malware files were not found.
    Dec 17 09:07:31 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client
    '/usr/libexec/MRT' [731] for authorization created by '/usr/libexec/MRT' [731] (2,0)
    Dec 17 09:07:31 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client
    '/usr/libexec/launchdadd' [730] for authorization created by '/usr/libexec/MRT' [731] (100002,0)
    Dec 17 09:07:31 --- last message repeated 1 time ---
    Dec 17 09:07:31 ittest-mac3.local blued[68]: kBTXPCUpdateUserPreferences gConsoleUserUID = 164370296
    Dec 17 09:07:31 ittest-mac3.local locationd[738]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this
    compatiblity mapping behavior in the near future.
    Dec 17 09:07:31 ittest-mac3.local locationd[738]: NOTICE,Location icon should now be in state 0
    Dec 17 09:07:31 ittest-mac3.local UserEventAgent[725]: cannot find fw daemon port 1102
    Dec 17 09:07:34 ittest-mac3.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.login.done' by client
    '/System/Library/CoreServices/loginwindow.app' [641] for authorization created by '/System/Library/CoreServices/loginwindow.app' [641] (100002,0)
    Dec 17 09:07:36 ittest-mac3.local CalendarAgent[753]: Could not find Meta Data for persistent Store
    Dec 17 09:07:37 ittest-mac3.local WindowServer[76]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:07:37 ittest-mac3.local WindowServer[76]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Dec 17 09:07:37 ittest-mac3.local genatsdb[764]: ########## genatsdb Sandboxed. ##########
    Dec 17 09:07:37 ittest-mac3.local SystemUIServer[763]: CGSCopyWindowShape: pid (763) passed NULL window
    Dec 17 09:07:37 ittest-mac3.local SystemUIServer[763]: could not update menu bar region, 1000
    Dec 17 09:07:37 ittest-mac3.local SystemUIServer[763]: CGSSetWindowTransformAtPlacement: Singular matrix [0.000 0.000 0.000 0.000]
    Dec 17 09:07:37 ittest-mac3.local SystemUIServer[763]: *** WARNING: Method convertRectToBase: in class NSView is deprecated on 10.7 and later. It should not
    be used in new applications.
    Dec 17 09:07:37 ittest-mac3.local SystemUIServer[763]: *** WARNING: Method convertRectFromBase: in class NSView is deprecated on 10.7 and later. It should
    not be used in new applications.
    Dec 17 09:07:38 ittest-mac3.local SystemUIServer[763]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:07:38 ittest-mac3.local SystemUIServer[763]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and
    later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:07:39 ittest-mac3.local genatsdb[764]: *GENATSDB* FontObjects generated = 392
    Dec 17 09:07:53 ittest-mac3 kernel[0]: (default pager): [KERNEL]: default_pager_backing_store_monitor - send LO_WAT_ALERT
    Dec 17 09:07:53 ittest-mac3 kernel[0]: macx_swapoff SUCCESS
    Dec 17 09:07:59 ittest-mac3.local Setup Assistant[751]: INFO: MMAccountMgr_Private: finishedSetup called.
    Dec 17 09:07:59 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39931
    Dec 17 09:07:59 --- last message repeated 4 times ---
    Dec 17 09:07:59 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.afpstat-qfa[793]): Job failed to exec(3). Setting up event to tell us when to
    try again: 2: No such file or directory
    Dec 17 09:07:59 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.afpstat-qfa[793]): Job failed to exec(3) for weird reason: 2
    Dec 17 09:07:59 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39931
    Dec 17 09:07:59 --- last message repeated 4 times ---
    Dec 17 09:07:59 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.mrt.uiagent[783]): Exited with code: 255
    Dec 17 09:07:59 ittest-mac3.local NetworkBrowserAgent[796]: Starting NetworkBrowserAgent
    Dec 17 09:07:59 ittest-mac3.local imagent[786]: [Warning] Setting up a new messages database.
    Dec 17 09:07:59 ittest-mac3.local Finder[775]: *** WARNING: Method userSpaceScaleFactor in class NSWindow is deprecated on 10.7 and later. It should not be
    used in new applications. Use convertRectToBacking: instead.
    Dec 17 09:07:59 ittest-mac3.local Finder[775]: *** WARNING: Method userSpaceScaleFactor in class NSView is deprecated on 10.7 and later. It should not be
    used in new applications. Use convertRectToBacking: instead.
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: dict count after removing entry for window 0xfe is 0
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending
    notification kLSNotifyApplicationDeath to notificationID=243
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd[1] (com.apple.quicklook.satellite.D6822423-2893-4C1C-B282-5022A61D589C[806]): Could not terminate job: 3: No
    such process
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd[1] (com.apple.quicklook.satellite.D6822423-2893-4C1C-B282-5022A61D589C[806]): Using fallback option to
    terminate job...
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] ([0x0-0x44044].com.apple.AppleSpell[767]): Exited: Terminated: 15
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.quicklook[803]): Exited: Killed: 9
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification
    kLSNotifyApplicationDeath to notificationID=272
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000[813]): Exited: Killed: 9
    Dec 17 09:09:09 ittest-mac3.local loginwindow[641]: DEAD_PROCESS: 641 console
    Dec 17 09:09:09 ittest-mac3.local migCacheCleanup[736]: Cache cleanup: cleanup for user 164370296 took 0.07 seconds
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending
    notification kLSNotifyApplicationDeath to notificationID=260
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXRestartSessionWorkspace: session workspace exited for session 257 (on console)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: Session 257 released (1 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: Session 257 released (0 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: loginwindow connection closed; closing server.
    Dec 17 09:09:09 ittest-mac3.local loginwindow[641]: CGSFlushWindowContentRegion: Invalid connection
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSGetNextEventRecord (Inline) connection 0x201b, 16384 bytes
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSShutdownServerConnections: Detaching application from window server
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[11]: Captive: [UserAgentDied:139] User Agent @port=15883 Died
    Dec 17 09:09:09 ittest-mac3.local loginwindow[826]: Login Window Application Started
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Server is starting up
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 retained (2 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 released (1 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 retained (2 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: init_page_flip: page flip mode is on
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: mux_initialize: Mode is dynamic
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: GLCompositor enabled for tile size [256 x 256]
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXGLInitMipMap: mip map mode is on
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: WSMachineUsesNewStyleMirroring: true
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x042803c0: GL mask 0x11; bounds (0, 0)[1440 x 900], 27 modes available
            Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00f, S/N 0, Unit 0, Rotation 0
            UUID 0x000006100000a00f00000000042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x4 for display 0x042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x5 for display 0x003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x6 for display 0x003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x7 for display 0x003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x042803c0: GL mask 0x11; bounds (0, 0)[1440 x 900], 27 modes available
            Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00f, S/N 0, Unit 0, Rotation 0
            UUID 0x000006100000a00f00000000042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003f: GL mask 0x8; bounds (2464, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003e: GL mask 0x4; bounds (2465, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003d: GL mask 0x2; bounds (2466, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXPerformInitialDisplayConfiguration
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x042803c0: MappedDisplay Unit 0; Alias(4, 0x11); Vendor 0x610 Model 0xa00f S/N 0 Dimensions
    13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 2
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXMuxBoot: Boot normal
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, accelerator 0x0000494b, unit 0, caps QEX|
    QGL|MIPMAP, vram 1024 MB
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, texture units 8, texture max 16384,
    viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, accelerator 0x00004833, unit 4, caps QEX|
    QGL|MIPMAP, vram 580 MB
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, texture units 8, texture max 16384,
    viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Dec 17 09:09:10 ittest-mac3.local loginwindow[826]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: Created shield window 0x8 for display 0x042803c0
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Dec 17 09:09:10 ittest-mac3.local launchctl[829]: com.apple.findmymacmessenger: Already loaded
    Dec 17 09:09:10 ittest-mac3.local com.apple.SecurityServer[15]: Session 100018 created
    Dec 17 09:09:10 ittest-mac3.local hidd[59]: CGSShutdownServerConnections: Detaching application from window server
    Dec 17 09:09:10 ittest-mac3.local hidd[59]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Dec 17 09:09:10 ittest-mac3.local loginwindow[826]: Login Window Started Security Agent
    Dec 17 09:09:10 ittest-mac3.local UserEventAgent[831]: cannot find useragent 1102
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: MacBuddy was run = 0
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042803c0 device: 0x1072ab320 
    isBackBuffered: 1 numComp: 3 numDisp: 3
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and
    later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use
    -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: dict count after removing entry for window 0xfe is 0
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending
    notification kLSNotifyApplicationDeath to notificationID=243
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd[1] (com.apple.quicklook.satellite.D6822423-2893-4C1C-B282-5022A61D589C[806]): Could not terminate job: 3: No
    such process
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd[1] (com.apple.quicklook.satellite.D6822423-2893-4C1C-B282-5022A61D589C[806]): Using fallback option to
    terminate job...
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] ([0x0-0x44044].com.apple.AppleSpell[767]): Exited: Terminated: 15
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.quicklook[803]): Exited: Killed: 9
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification
    kLSNotifyApplicationDeath to notificationID=272
    Dec 17 09:09:09 ittest-mac3 com.apple.launchd.peruser.164370296[712] (com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000[813]): Exited: Killed: 9
    Dec 17 09:09:09 ittest-mac3.local loginwindow[641]: DEAD_PROCESS: 641 console
    Dec 17 09:09:09 ittest-mac3.local migCacheCleanup[736]: Cache cleanup: cleanup for user 164370296 took 0.07 seconds
    Dec 17 09:09:09 ittest-mac3.local coreservicesd[73]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending
    notification kLSNotifyApplicationDeath to notificationID=260
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXGetConnectionProperty: Invalid connection 8727
    Dec 17 09:09:09 --- last message repeated 4 times ---
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: CGXRestartSessionWorkspace: session workspace exited for session 257 (on console)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: Session 257 released (1 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: Session 257 released (0 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[76]: loginwindow connection closed; closing server.
    Dec 17 09:09:09 ittest-mac3.local loginwindow[641]: CGSFlushWindowContentRegion: Invalid connection
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSGetNextEventRecord (Inline) connection 0x201b, 16384 bytes
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSShutdownServerConnections: Detaching application from window server
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[725]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Dec 17 09:09:09 ittest-mac3.local UserEventAgent[11]: Captive: [UserAgentDied:139] User Agent @port=15883 Died
    Dec 17 09:09:09 ittest-mac3.local loginwindow[826]: Login Window Application Started
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Server is starting up
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 retained (2 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 released (1 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Session 256 retained (2 references)
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: init_page_flip: page flip mode is on
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: mux_initialize: Mode is dynamic
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: GLCompositor enabled for tile size [256 x 256]
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXGLInitMipMap: mip map mode is on
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: WSMachineUsesNewStyleMirroring: true
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x042803c0: GL mask 0x11; bounds (0, 0)[1440 x 900], 27 modes available
            Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00f, S/N 0, Unit 0, Rotation 0
            UUID 0x000006100000a00f00000000042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x4 for display 0x042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x5 for display 0x003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x6 for display 0x003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Created shield window 0x7 for display 0x003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x042803c0: GL mask 0x11; bounds (0, 0)[1440 x 900], 27 modes available
            Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00f, S/N 0, Unit 0, Rotation 0
            UUID 0x000006100000a00f00000000042803c0
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003f: GL mask 0x8; bounds (2464, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003f
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003e: GL mask 0x4; bounds (2465, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003e
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: Display 0x003f003d: GL mask 0x2; bounds (2466, 0)[1 x 1], 1 modes available
            off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
            UUID 0xffffffffffffffffffffffff003f003d
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXPerformInitialDisplayConfiguration
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x042803c0: MappedDisplay Unit 0; Alias(4, 0x11); Vendor 0x610 Model 0xa00f S/N 0 Dimensions
    13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 2
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x
    0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: CGXMuxBoot: Boot normal
    Dec 17 09:09:09 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, accelerator 0x0000494b, unit 0, caps QEX|
    QGL|MIPMAP, vram 1024 MB
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, texture units 8, texture max 16384,
    viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, accelerator 0x00004833, unit 4, caps QEX|
    QGL|MIPMAP, vram 580 MB
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, texture units 8, texture max 16384,
    viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Dec 17 09:09:10 ittest-mac3.local loginwindow[826]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: Created shield window 0x8 for display 0x042803c0
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Dec 17 09:09:10 ittest-mac3.local launchctl[829]: com.apple.findmymacmessenger: Already loaded
    Dec 17 09:09:10 ittest-mac3.local com.apple.SecurityServer[15]: Session 100018 created
    Dec 17 09:09:10 ittest-mac3.local hidd[59]: CGSShutdownServerConnections: Detaching application from window server
    Dec 17 09:09:10 ittest-mac3.local hidd[59]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Dec 17 09:09:10 ittest-mac3.local loginwindow[826]: Login Window Started Security Agent
    Dec 17 09:09:10 ittest-mac3.local UserEventAgent[831]: cannot find useragent 1102
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: MacBuddy was run = 0
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042803c0 device: 0x1072ab320 
    isBackBuffered: 1 numComp: 3 numDisp: 3
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and
    later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use
    -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Log2: This log showed was captured when we logged into a test account that have Unix Attributes configure just like our regular user's account.
    ^C
    ittest-mac3:log root# tail -f system.log
    Dec 17 09:09:10 ittest-mac3.local loginwindow[826]: Login Window Started Security Agent
    Dec 17 09:09:10 ittest-mac3.local UserEventAgent[831]: cannot find useragent 1102
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: MacBuddy was run = 0
    Dec 17 09:09:10 ittest-mac3.local WindowServer[827]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042803c0 device: 0x1072ab320 
    isBackBuffered: 1 numComp: 3 numDisp: 3
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and
    later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use
    -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:10 ittest-mac3.local SecurityAgent[836]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later.
    Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Dec 17 09:09:11 ittest-mac3.local WindowServer[827]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000,
    1.000000, 1.000000)
    Dec 17 09:09:41 --- last message repeated 1 time ---
    Dec 17 09:10:13 ittest-mac3.local SecurityAgent[836]: User info context values set for tle
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): Got user: mtest
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): Got ruser: (null)
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): Got service: authorization
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): Context initialised
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): Stashing kcm credentials in enviroment for kcminit: [email protected]
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_authenticate(): pam_sm_authenticate: ntlm
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in od_record_check_pwpolicy(): retval: 0
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in od_record_attribute_create_cfstring(): returned 2 attributes for
    dsAttrTypeStandard:AuthenticationAuthority
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Establishing credentials
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Got user: mtest
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Context initialised
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Got euid, egid: 0 0
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done getpwnam()
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done setegid() & seteuid()
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): pam_sm_setcred: init credential cache
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): pam_sm_setcred: storing credential for: [email protected]
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Got cache_name: API:2137600189:2
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Environment done: KRB5CCNAME=2137600189:2
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Cache closed
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done cleanup2
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done cleanup3
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done seteuid() & setegid()
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): Done cleanup4
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in ac_complete(): ac_complete returned: 0 for 2137600189
    Dec 17 09:10:13 ittest-mac3.local authorizationhost[844]: in pam_sm_setcred(): pam_sm_setcred: ntlm done, used domain: PROS1
    Dec 17 09:10:13 ittest-mac3.local SecurityAgent[836]: Login Window login proceeding
    Dec 17 09:10:13 ittest-mac3.local ManagedClient[830]: ODUGetMCXRecordWithCache(): [ODRecord setNodeCredentialsWithRecordType:"dsRecTypeStandard:Users"
    authenticationType:kDSStdAuthNodeNativeRetainCredential authenticationItems:["mtest", password]]) == 2100 (Connection failed to the directory server.) [This
    error is ignored and is only being flagged for notification]
    Dec 17 09:10:13 ittest-mac3 com.apple.launchd[1] (com.apple.launchd.peruser.4294967295[846]): getpwuid("4294967295") failed
    Dec 17 09:10:13 ittest-mac3 com.apple.launch

    -Reece,
    We only have 1 single domain, 1 domain forest, no subdomains, only alias. I had replied to the other post as well. But I am happy to paste it here in case anyone want to read it.
    So, after a few months of testing, capture and sending logs back and forth to Apple Engineers, we found out there is a setting in AD, under User Account that prevent us to log into AD from Mountain Lion. If you would go to your AD server, open up a user account properties, then go to Account tab, the "Do not require Kerberos preauthentication" option is checked. As soon as I uncheck that option, immediately I was able to log into AD on the Mac client. Apple engineers copied all my AD settings and setup a test environment on their end and match exact mine AD environment. They was able to reproduce this issue.
    The bad part about this is... our environment required the "Do not require Kerberos preauthentication" is checked in AD, in order for our users to login into some of our Unix and Linux services. Which mean that it is impossible for us to remove that check mark because most, if not all of them some way or another require to login into applications that run on Unix and Linux. Apple is working to see if they can come up with a fix. Apparently, no one has report this issue except us. I believe most of you out there don't have that check mark checked in your environment... Anyone out there have any suggestion to by pass or have a work around for this?

Maybe you are looking for

  • Can you select a specific item from a listbox via scripting?

    This seems like it should be easy, but I've spent quite a few hours trying to figure this out, to no avail.  I'm trying to create a button that would automatically select a specific item on a listbox.  I though "selectedIndex" would do the trick, but

  • Creating video clips from MP4 movie

    Can anyone recommend a piece of software that will allow me to capture pieces of an mp4 movie and save them as clips for use in iMovie projects?  I have converted some analog video Hi8 vacation movies to digital mp4 format.  The problem is that the e

  • I tunes account question...

    Hi there, I recently gave my partner my old 3GS i phone. unfortunately she changed the email address of my itunes account and in short I cannot find my old itunes account. I have used the iforgot tool online and couldnt even find my old account. I th

  • I found a way out of the (") when installing flash player!!

    Finally my flash, its here, its it!!!!!!!!!!!! people with IE, get mozzila, then goto MSN.com, make an email, goto meesanger, itll say that you need some plugins to view the whole thing on top click install plugins make sure macromedia flash players

  • How to downgrade to ios5

    I upgraded to iOS6 on my iPhone 4S. Now I regret it. How do I downgrade back down to iOS5? I will delay future iOS updates. Learned my lesson on this one! However though thankfully, I withheld my iPad from the update.