Backspace not detected as KeyDown Event

Hi
I'm trying to determine if the back space is pressed on my WPF. And I'm getting no where!
My code (which is the event handler for the KeyDown event for a textbox)
private void CompanyName_KeyDown(object sender, KeyEventArgs e)
MessageBox.Show(e.Key.ToString());
If I press a number, return (enter), letter or even a function key (F2, F3 etc) it works. But, delete, backspace and spacebar do not cause the event to fire.
Any idea why?
Dave

Hey DaveRook, I hope you're fine.
I believe you may check the following approach:
if (Keyboard.IsKeyDown(Key.Back)) //Also "Key.Delete" is available.
//Your code goes here..
Please, mark my reply as Answer if it helps or vote it up if it gives a key to the solution.
Thanks in advance and good luck.
Ahmed M. Gamil
"It is not titles that honor men, but men that honor titles."

Similar Messages

  • Ctrl-v key combo not working in keydown event in Adobe Air

    I am needing to capture the ctrl-c/ctrl-x/ctrl-v keys in the keydown Javascript event from within Adobe Air.
    I have managed to get the events to fire correctly.
    When I press ctrl, c, x, v, ctrl-c and ctrl-x, I get the correct corresponding keycodes. However, when I press ctrl-v, no event gets triggered.
    Is Air preventing the key presses from reaching this event in the case of ctrl-v?
    Here is the code I am using:
        document.getElementById('main_grid').addEventListener('keydown', keyDownEvent, false);
        keyDownEvent = function(e) {
            alert(e.keyCode);

    I'm surprised you get ctrl-c and ctrl-x. Do they work when you have selected text? What is probably happening is the default handler for the paste event is "swallowing" the keystroke. You could try listening for the paste event and calling the event object's preventDefault() method. (I haven't tried it, though, so I'm not positive that would allow the keystroke to be passed along.) If you are trying to create your own copy/paste functions, you might be better off listening for the copy and paste events themselves, rather than the raw keystrokes.
    Another alternative is to listen for the keystrokes on window.htmlLoader, which should get the keystrokes before they are passed to the HTML engine.

  • Not detecting mouse exit events

    I'm developing a Java application that implements an 'auto-hide' functionality - similar to that of the Office Shortcut bar - such that when the mouse moves outside of the application frame the window auto-hides. I'm using the Mouse Exit event to detect when the mouse moves outside of the the application frame and then I 'hide' the window (or rather resize it to 2 pixels high) so I can then detect the Mouse Entered event to restore the window.
    This works OK but occasionally if I move the mouse quick enough the exited event isn't detected and the window doesn't always hide.
    Are there any other ways of detecting if the mouse moves outside of the application frame (so I can also trigger my 'hide' function) without relying on other events such as windowLostFocus.
    Thanks,
    Richard.

    I have one suggestion:
    Check that the component that you use to monitor mouse exit and enter events has at least one pixel visible from all sides (most layout managers allow a border (not a Border class or subclass) that is not occupied by child subcomponent).
    For example if you will place some other component in container directly so some side then mouse enter and exit events will be fired on that component and not on the container.

  • RIGHT_MOUSE_UP event not detected

    Hi,
    I have an adobe creative cloud account.
    My flashgame does not detect the RIGHT_MOUSE_UP  event when test-published in FLASH Professional CC or FLASH CS6.
    The same code however does work with the flash player in my browser and when I publish the SWF and start it outside of the Development Enviroment.
    All versions should be 11.7 as far as I can tell.
    Does anybody know whats going on?
    Thanks in advance

    Thank you very much for you're awnser.
    I'm not absolutely sure I understand you though.
    I have no difficulty publishing directly to the browser.
    When I publish directly to the Browser everything works fine, it is just in the test Enviroment in which the RIGHT_MOUSE_UP event is not detected.
    It detects the RIGHT_MOUSE_DOWN event without problems.
    Publishing and then executing from windows also works fine, it is just when the IDE test-publishes that the problem occurs-.
    My main reason for not publishing to the browser is because I can no longer see the Output of the "trace" commands, which I require for debugging.
    I have tried changing the flash version for which my IDE publishes, but regardless of which version I choose the problem persists.
    Im not absolutely certain what you mean by "the flash ide /"captures/" that right-click when testing".
    Is there anyway to prevent this?
    Or is there at least a way with which I could see the Output of my "trace" commands when publishing to the browser?
    Thank you very much for you're helpfull advice, I tried contacting adobe but all they told me was "sorry we don't offer support for that kind of problem".

  • KeyListener does not capture Arrow key Events in textField

    Love................
    I added a key listener to TextField it does not detect
    Arrow Keys events in keyTyped, KeyPressed,KeyReleased methods
    why?????
    I want to shift focus from a textfield to other component
    on capturing Arrow key Pressed How

    Here is a Java demo where it works since it is not a printable character you must get the keyCode:
    http://java.sun.com/docs/books/tutorial/uiswing/events/example-swing/index.html#KeyEventDemo
    public class KeyEventDemo ... implements KeyListener ... {
    ...//where initialization occurs:
         typingArea = new JTextField(20);
         typingArea.addKeyListener(this);
    /** Handle the key typed event from the text field. */
    public void keyTyped(KeyEvent e) {
         displayInfo(e, "KEY TYPED: ");
    /** Handle the key pressed event from the text field. */
    public void keyPressed(KeyEvent e) {
         displayInfo(e, "KEY PRESSED: ");
    /** Handle the key released event from the text field. */
    public void keyReleased(KeyEvent e) {
         displayInfo(e, "KEY RELEASED: ");
    protected void displayInfo(KeyEvent e, String s){
         char c = e.getKeyChar();
         int keyCode = e.getKeyCode();
         int modifiers = e.getModifiers();
         tmpString = KeyEvent.getKeyModifiersText(modifiers);
         ...//display information about the KeyEvent...
    }

  • How can I import photo to computer if my photo were save in event instead of saved photo for ipad1?  Why Photo in event are not detected ?

    How can I import photo to computer if my photo were save in event instead of saved photo for ipad? Photo in event are not detected.

    Importing Personal Photos and videos from your iOS device to your computer.
    http://support.apple.com/kb/HT4083
     Cheers, Tom

  • How can I stop an event structure detecting keydown events until the vi has initialised?

    My application has a sequence structure with 3 frames. First one initialises some front pane objects and controls, the second communicates with an external device via a serial port to a start condition and waits for this to complete by polling the device. The third contains the event structure which reads the device when the spacebar is pressed. The problem is that any pressing of the spacebar when the application is in the first 2 frames of the secquence structure is stored and executed as soon as the third frame becomes active. I have tried using dynamic Event registration but to no avail. Am I doing something wrong? can the keyboard be disabled until the second frame complete
    s?

    I usually avoid sequence structures in favor of driving execution order through data dependency (error clusters are great for that). However, since you've already got one, you coul try to add another frame right before your event structure. In that frame, place another event structure that can trap that stray keyboard event. Put a tiny timeout value on it so it doesn't appear to "pause" your VI's response. That event structure will catch any bogus key presses that happen during initialization.
    Having said all that, I still think the behavior is not proper. The event should not be handled if it happened before your VI gets to the event structure. For now, you can try that workaround.
    Daniel L. Press
    PrimeTest Corp.
    www.primetest.com

  • Web-cam is not detected yet installed

    Hi!
    I m doing a program tat can capture movie from available video capturing devices, i hav installed web-cam, but while searching for the devices available(Detecting the device) , it is not identifing the device. And still if i m giving direct the device info to the program("vfj//0")then movie is captured from web-cam.
    Program is listed below which is not detecting the web-cam:
    public void setMainSource(){
    setProcessing(false);
    VideoFormat vidformat = new VideoFormat(VideoFormat.YUV);
    Vector devices = CaptureDeviceManager.getDeviceList(vidformat);
    CaptureDeviceInfo di = null;
    if (devices.size() > 0) di = (CaptureDeviceInfo) devices.elementAt(0);
    else {
    /* I got exception here */
    JOptionPane.showMessageDialog(parent,
    "Your camera is not connected", "No webcam found", JOptionPane.WARNING_MESSAGE);
    return;
    try {
    ml = di.getLocator();
    setMainCamSource(Manager.createDataSource(ml));
    } catch (Exception e) {
    JOptionPane.showMessageDialog(parent,
    "Exception locating media: " + e.getMessage(), "Error", JOptionPane.WARNING_MESSAGE);
    return;
    Output:
    Web cam not found....
    So wht shd be the problem , nyone please explain the problem how to overcome from it.
    Thank you

    First of all sorry for spelling mistake i write ("vfj//0") rather then "vfw://0"
    Yeh! i read your code n your code is also giving the same error
    like
    Web cam not detected/installed(like something this).
    But still i hav attached cam n capturing movie from the code shown below:
    //This will not detect the webcam n directly captures the movie, try it out so now wht to do so tat will detect the webcam properly....
    CODE:
    import javax.media.*;
    import javax.media.util.*;
    import javax.media.format.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.media.control.*;
    class testing extends JFrame implements ControllerListener,ActionListener
         //Variables for gui
         public JButton play=new JButton("Play");
         public JButton stop=new JButton("Stop");
         public JPanel p1=new JPanel();
         public JPanel p2=new JPanel();
         Container c;
         //Variables for videocapturing
         boolean stateTransitionOK = true;
         Object waitSync = new Object();
         Processor p;
         ///Variables required to store the movie
         DataSink sink;
         MediaLocator dest = new MediaLocator("save_video.wav");
         ///methods
         public testing()
              super("Video Capture Demo");
              setupvideocapture();
              setupgui();
         public void setupgui()
              c.add(play);
              c.add(stop);
              addWindowListener(new WindowHandler());
              stop.addActionListener(this);
              play.addActionListener(this);
              setSize(350,350);
              setVisible(true);
              show();
         public void actionPerformed(ActionEvent ae)
              String str;
              str=ae.getActionCommand();
              if(str=="Play")
                   try
                        //Before starting capturing store the movie to the HDD
                        p.start();
                        sink = Manager.createDataSink(p.getDataOutput(), dest);
                        sink.open();
                        sink.start();
                   catch(Exception e)
              else if(str=="Stop")
                   try
                   //     sink.stop();
                        p.stop();
                   catch(Exception e)
         public void setupvideocapture()
              c=getContentPane();
              c.setLayout(new FlowLayout());
              try
                   p = Manager.createProcessor(new MediaLocator("vfw://0"));
                   p.addControllerListener(this);
                   p.configure();
                   waitForState(p.Configured);
                   p.setContentDescriptor(null);
                   p.prefetch();
                   waitForState(p.Prefetched);
                   c.add(p.getVisualComponent());
                   ///Intializing the saving procedure
              catch(Exception e)
                   System.out.println(e);
              public void controllerUpdate(ControllerEvent evt)
                   if (evt instanceof ConfigureCompleteEvent || evt instanceof RealizeCompleteEvent || evt instanceof PrefetchCompleteEvent)
                        synchronized (waitSync)
                             stateTransitionOK = true;
                             waitSync.notifyAll();
                   else if (evt instanceof ResourceUnavailableEvent)
                        synchronized (waitSync)
                        System.out.println("ResourceUnavailable");
                        stateTransitionOK = false;
                        waitSync.notifyAll();
                   else if (evt instanceof EndOfMediaEvent)
                        p.close();
                        System.exit(0);
              boolean waitForState(int state)
                   synchronized (waitSync)
                        try
                             while (p.getState() != state && stateTransitionOK)
                                  waitSync.wait();
                        catch (Exception e) {}
                   return stateTransitionOK;
         //Entry point
         public static void main(String args[])
              testing t=new testing();
    class WindowHandler extends WindowAdapter
         public void windowClosing(WindowEvent e)
              System.exit(0);
    This is working properly........ so plz if other option plz notify me.
    Thank you for helping me.......

  • Mouse clicks not detected on JTabbedPane

    Hi all,
    I have a JPanel placed inside a JTabbedPane. I want to double-click on the JPanel and bring up a JDialog. This works fine if the JPanel is not in a JTabbedPane, but if it is on a JTabbedPane, then the mouse clicks are not detected. I'd greatly appreciate any help you can give me.

    Here is a sample program that seems to work:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    public class TestInternalFrame extends JFrame
         public TestInternalFrame()
              JDesktopPane desktop = new JDesktopPane();
              setContentPane( desktop );
              JInternalFrame internal = new JInternalFrame( "Internal Frame" );
              desktop.add( internal );
              internal.setLocation( 50, 50 );
              internal.setSize( 300, 300 );
              internal.setVisible( true );
              JTabbedPane tabbedPane = new JTabbedPane();
              internal.getContentPane().add(tabbedPane);
              tabbedPane.setPreferredSize( new Dimension(300, 200) );
              JPanel panel = new JPanel();
              tabbedPane.add( "Empty Panel", panel );
              panel.addMouseListener( new MouseAdapter()
                   public void mouseClicked(MouseEvent e)
                        System.out.println(e.getClickCount());
         public static void main(String args[])
    TestInternalFrame frame = new TestInternalFrame();
    frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
    frame.setSize(400, 400);
    frame.setVisible(true);

  • Best practice for responding to keyDown event

    I am writing my first Cocoa application.  It's a simple utility app -- a calculator.  I've got everything working, the last thing I want to add is I want the app to respond to key press events.  So, you could click the "4" button with the mouse, or you could just press the "4" key on the keyboard.  I'm reading all the event handling documentation, but I'm not picking up on the recommended approach for getting an NSResponder (or NSView) that handles the event.
    I can make a subclass of NSWindow and tell the interface builder to make the main window of that type.  Then when I override the keyDown message in my new NSWindow subclass, it gets the events, but I'm not sure how to connect it to my application delegate class (since I basically just want to switch on the key pressed and call the corresponding message in the delegate that the button "select" action targets.
    Or, I think I heard something about doing this by changing the super class of the application delegate class from NSObject to NSView, or NSResponder or something.  I haven't poked at that idea much, but I'm not sure how to actually get the application delegate object then actually set up as the first responder (I think that's what I'd want to do).
    So, I'm hoping someone can give me specific directions on how/where I should implement my keyDown method, but I'd also like to understand what the recommended "best practice" is for doing this.  What would Apple say is the right architecture for doing this?  I'm as much interested in learning how to make this work as learning the Apple design pattern behind it.
    The structure of my program is as follows:
    I have one nib file (actualy a .xib) where I've designed my window with a textbox for display and a hand-ful of buttons.  I've registered outlets and actions from there to the AppDelegate class (the one that the standard project template sets up for you).  Following the MVC pattern, I then have a Calculator class that the AppDelegate initializes and all the actual logic of the calculator is in that class.  The AppDelegate basically just responds to messages from the buttons, passes them along to methods in the Calculator class, and then asks the Calculator for the current display value and updates that back into the textbox. So, the graphical elements in my nib file are the "view", the AppDelegate is the "controler" and the Calculator class is the "model".  Right? 
    So, who is supposed to be handling keyDown events?   Seems like the view should capture them and send them to the controller, but how do I set that up?

    Dear Noppong,
    You can do it with multiple ways like :-
    1. Get the current host name and make complete URL with using host name for the webdynpro iview.
    request = (IPortalComponentRequest) this.getRequest();
    HttpServletRequest req = request.getServletRequest();
    StringBuffer strURL = req.getRequestURL();
    2. Create the KM Document or Link for webdynpro Iview OR Create the WPC Web Page for the webdynpro ivew
    Refer to [http://help.sap.com/saphelp_nw70/helpdata/en/06/4776399abf4b73945acb8fb4f41473/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/en/06/4776399abf4b73945acb8fb4f41473/frameset.htm]
    [http://help.sap.com/saphelp_nw70/helpdata/en/06/4776399abf4b73945acb8fb4f41473/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/en/06/4776399abf4b73945acb8fb4f41473/frameset.htm]
    [http://help.sap.com/saphelp_nw70ehp1/helpdata/en/ff/681a4138a147cbabc3c76bde4dcdbd/content.htm|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/ff/681a4138a147cbabc3c76bde4dcdbd/content.htm]
    Hope it will helps
    Best Regards
    Arun Jaiswal

  • RAID disk not detected by Windows XP

    I have installed a single disk connected to the RAID controller on my K7T266 Pro2-R Mobo.
    The RAID controller (that is enabled in BIOS) detects the disk, reports a correct size and reports it as "Functional". I have used the BIOS utility to assign an "Array" to the single disk drive.
    I downloaded the latest drivers from this site and I have installed the drivers in Windows XP Pro (a number of times...)  In the Device Manager, I get a "Windows XP Promise FastTrak100(tm) Controller(PDC20265)" under the "SCSI and RAID controllers" folder. The driver seems to work (at least the Device Manager claims "This device is working properly.")
    The disk itself does not show up under the "Disk drives" folder in the Device Manager.  The "Disk Management" in Windows XP also treats the disk as non-existent.
    When I tried to install the "FastCheck Monitoring Utility", I got error messages "Service Install - Unknown Error". When trying to run the utility, it says "FastTrak controller or driver not found".
    The event log says nothing of interrest.
    I use the FastTrak PCI version in another system running Windows 2003 Server and there everything works OK. But that driver is almost a year newer...
    What's wrong?  Has anybody got the on-board FastTrak controler to work in WinXP? Any hints on what to do to make it work?

    I just happened ( ) to have a second identical disk drive laying around (Christmas time you know...) so I installed it in the system.  If the driver has any "single disk restrictions", it should work now - shouldn't it?
    The BIOS RAID setup happilly discovered the new disk and I configured the two disks as a stripe set.
    Windows XP?  Nothing.  The disks simply doesn't exist. There must be something wrong with the WinXP driver, but I can't figure out what.  I've scanned the Internet and there seems to be a number of people having the same problem, but I haven't found anyone that have a solution.  
    MSI? Promise? We have a problem here...

  • Windows 2008 R2 Server not showing update history and not detecting new updates

    Hi Sirs,
    We have a Windows 2008 R2 server which is showing an empty windows update history, and is not detecting new updates from the WSUS server. It says that the windows is up to date, no error when trying to detect new updates, but I doubt it because when I checked
    the installed updates menu, it shows that that the most recent update date installed was last 2013, it just stop detecting and installing updates. I've already tried the ff workarounds but to no avail:
    1. restart wuauserv and bits service
    2. rename/delete the software distribution folder
    3. reinstalled the update agent/restarted the server
    4. deleted the susclientid on the registry
    Thanks in advanced for your help.
    here's the windowsupdate.log:
    2014-07-22    00:57:06:728     928    a34    AU    #############
    2014-07-22    00:57:06:728     928    a34    AU    Successfully wrote event for AU health state:0
    2014-07-22    00:57:06:728     928    a34    AU    Featured notifications is disabled.
    2014-07-22    00:57:06:728     928    a34    AU    AU setting next detection timeout to 2014-07-21 20:50:56
    2014-07-22    00:57:06:728     928    a34    AU    Successfully wrote event for AU health state:0
    2014-07-22    00:57:06:728     928    a34    AU    Successfully wrote event for AU health state:0
    2014-07-22    00:57:11:727     928    abc    Report    REPORT EVENT: {AF0753F1-F6F9-4583-87B0-A0B0AEA0C6A7}    2014-07-22 00:57:06:728+0800    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2014-07-22    00:57:11:727     928    abc    Report    REPORT EVENT: {188957AA-577F-4DC5-9CDB-2D8CFEE96670}    2014-07-22 00:57:06:728+0800    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2014-07-22    00:57:11:727     928    abc    Report    CWERReporter finishing event handling. (00000000)
    2014-07-22    01:11:10:931     928    abc    Report    Uploading 2 events using cached cookie, reporting URL = http://mtp-wsus2/ReportingWebService/ReportingWebService.asmx
    2014-07-22    01:11:10:947     928    abc    Report    Reporter successfully uploaded 2 events.
    2014-07-22    04:50:56:736     928    1130    AU    #############
    2014-07-22    04:50:56:736     928    1130    AU    ## START ##  AU: Search for updates
    2014-07-22    04:50:56:736     928    1130    AU    #########
    2014-07-22    04:50:56:736     928    1130    AU    <<## SUBMITTED ## AU: Search for updates [CallId = {F40B494F-91F1-4FFB-B7A5-46CEA397AA52}]
    2014-07-22    04:50:56:736     928    d08    Agent    *************
    2014-07-22    04:50:56:736     928    d08    Agent    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    04:50:56:736     928    d08    Agent    *********
    2014-07-22    04:50:56:736     928    d08    Agent      * Online = Yes; Ignore download priority = No
    2014-07-22    04:50:56:736     928    d08    Agent      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation'
    or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-07-22    04:50:56:736     928    d08    Agent      * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-07-22    04:50:56:736     928    d08    Agent      * Search Scope = {Machine}
    2014-07-22    04:50:57:017     928    d08    Setup    Checking for agent SelfUpdate
    2014-07-22    04:50:57:017     928    d08    Setup    Client version: Core: 7.6.7600.256  Aux: 7.6.7600.256
    2014-07-22    04:50:57:017     928    d08    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    04:50:57:017     928    d08    Misc     Microsoft signed: Yes
    2014-07-22    04:50:59:611     928    d08    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    04:50:59:611     928    d08    Misc     Microsoft signed: Yes
    2014-07-22    04:50:59:611     928    d08    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    04:50:59:611     928    d08    Misc     Microsoft signed: Yes
    2014-07-22    04:50:59:626     928    d08    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    04:50:59:626     928    d08    Misc     Microsoft signed: Yes
    2014-07-22    04:50:59:626     928    d08    Setup    Determining whether a new setup handler needs to be downloaded
    2014-07-22    04:50:59:626     928    d08    Setup    SelfUpdate handler is not found.  It will be downloaded
    2014-07-22    04:50:59:626     928    d08    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    04:51:01:095     928    d08    Setup    Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    04:51:01:095     928    d08    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    04:51:01:110     928    d08    Setup    Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    04:51:01:110     928    d08    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    04:51:01:142     928    d08    Setup    Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    04:51:01:142     928    d08    Setup    SelfUpdate check completed.  SelfUpdate is NOT required.
    2014-07-22    04:51:01:860     928    d08    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-07-22    04:51:01:860     928    d08    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    04:51:01:891     928    d08    PT    WARNING: Cached cookie has expired or new PID is available
    2014-07-22    04:51:01:891     928    d08    PT    Initializing simple targeting cookie, clientId = 487b95fe-31a4-44f7-9989-bd77766ce5fa, target group = , DNS name = itg-soatrainsvr.mbtc.mgc.local
    2014-07-22    04:51:01:891     928    d08    PT      Server URL = http://mtp-wsus2/SimpleAuthWebService/SimpleAuth.asmx
    2014-07-22    04:51:04:485     928    d08    PT    +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2014-07-22    04:51:04:485     928    d08    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    04:51:04:875     928    d08    Agent      * Found 0 updates and 68 categories in search; evaluated appl. rules of 503 out of 777 deployed entities
    2014-07-22    04:51:04:875     928    d08    Agent    *********
    2014-07-22    04:51:04:875     928    d08    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    04:51:04:875     928    d08    Agent    *************
    2014-07-22    04:51:04:875     928    1278    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {F40B494F-91F1-4FFB-B7A5-46CEA397AA52}]
    2014-07-22    04:51:04:875     928    1278    AU      # 0 updates detected
    2014-07-22    04:51:04:875     928    1278    AU    #########
    2014-07-22    04:51:04:875     928    1278    AU    ##  END  ##  AU: Search for updates [CallId = {F40B494F-91F1-4FFB-B7A5-46CEA397AA52}]
    2014-07-22    04:51:04:875     928    1278    AU    #############
    2014-07-22    04:51:04:875     928    1278    AU    Successfully wrote event for AU health state:0
    2014-07-22    04:51:04:875     928    1278    AU    Featured notifications is disabled.
    2014-07-22    04:51:04:875     928    1278    AU    AU setting next detection timeout to 2014-07-22 00:38:28
    2014-07-22    04:51:04:875     928    1278    AU    Successfully wrote event for AU health state:0
    2014-07-22    04:51:04:875     928    1278    AU    Successfully wrote event for AU health state:0
    2014-07-22    04:51:09:874     928    d08    Report    REPORT EVENT: {FE398C01-75A1-4AD8-8C43-0894FCFCE13F}    2014-07-22 04:51:04:875+0800    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2014-07-22    04:51:09:874     928    d08    Report    REPORT EVENT: {CDA386AD-6392-4C34-859E-35307BCB5EA0}    2014-07-22 04:51:04:875+0800    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2014-07-22    04:51:09:874     928    d08    Report    CWERReporter finishing event handling. (00000000)
    2014-07-22    05:05:09:109     928    d08    Report    Uploading 2 events using cached cookie, reporting URL = http://mtp-wsus2/ReportingWebService/ReportingWebService.asmx
    2014-07-22    05:05:09:109     928    d08    Report    Reporter successfully uploaded 2 events.
    2014-07-22    08:38:28:883     928    1130    AU    #############
    2014-07-22    08:38:28:883     928    1130    AU    ## START ##  AU: Search for updates
    2014-07-22    08:38:28:883     928    1130    AU    #########
    2014-07-22    08:38:28:883     928    1130    AU    <<## SUBMITTED ## AU: Search for updates [CallId = {9A097F9F-88DD-4037-A4DD-48B9CC891327}]
    2014-07-22    08:38:28:883     928    53c    Agent    *************
    2014-07-22    08:38:28:883     928    53c    Agent    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    08:38:28:883     928    53c    Agent    *********
    2014-07-22    08:38:28:883     928    53c    Agent      * Online = Yes; Ignore download priority = No
    2014-07-22    08:38:28:883     928    53c    Agent      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation'
    or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-07-22    08:38:28:883     928    53c    Agent      * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-07-22    08:38:28:883     928    53c    Agent      * Search Scope = {Machine}
    2014-07-22    08:38:29:195     928    53c    Setup    Checking for agent SelfUpdate
    2014-07-22    08:38:29:195     928    53c    Setup    Client version: Core: 7.6.7600.256  Aux: 7.6.7600.256
    2014-07-22    08:38:29:195     928    53c    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    08:38:29:195     928    53c    Misc     Microsoft signed: Yes
    2014-07-22    08:38:31:804     928    53c    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    08:38:31:804     928    53c    Misc     Microsoft signed: Yes
    2014-07-22    08:38:31:804     928    53c    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    08:38:31:820     928    53c    Misc     Microsoft signed: Yes
    2014-07-22    08:38:31:820     928    53c    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    08:38:31:820     928    53c    Misc     Microsoft signed: Yes
    2014-07-22    08:38:31:835     928    53c    Setup    Determining whether a new setup handler needs to be downloaded
    2014-07-22    08:38:31:835     928    53c    Setup    SelfUpdate handler is not found.  It will be downloaded
    2014-07-22    08:38:31:835     928    53c    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    08:38:33:241     928    53c    Setup    Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    08:38:33:241     928    53c    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    08:38:33:272     928    53c    Setup    Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    08:38:33:272     928    53c    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    08:38:33:288     928    53c    Setup    Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    08:38:33:288     928    53c    Setup    SelfUpdate check completed.  SelfUpdate is NOT required.
    2014-07-22    08:38:33:991     928    53c    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-07-22    08:38:33:991     928    53c    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    08:38:34:038     928    53c    PT    WARNING: Cached cookie has expired or new PID is available
    2014-07-22    08:38:34:038     928    53c    PT    Initializing simple targeting cookie, clientId = 487b95fe-31a4-44f7-9989-bd77766ce5fa, target group = , DNS name = itg-soatrainsvr.mbtc.mgc.local
    2014-07-22    08:38:34:038     928    53c    PT      Server URL = http://mtp-wsus2/SimpleAuthWebService/SimpleAuth.asmx
    2014-07-22    08:38:36:616     928    53c    PT    +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2014-07-22    08:38:36:616     928    53c    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    08:38:37:022     928    53c    Agent      * Found 0 updates and 68 categories in search; evaluated appl. rules of 503 out of 777 deployed entities
    2014-07-22    08:38:37:022     928    53c    Agent    *********
    2014-07-22    08:38:37:022     928    53c    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    08:38:37:022     928    53c    Agent    *************
    2014-07-22    08:38:37:022     928    aa8    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {9A097F9F-88DD-4037-A4DD-48B9CC891327}]
    2014-07-22    08:38:37:022     928    aa8    AU      # 0 updates detected
    2014-07-22    08:38:37:022     928    aa8    AU    #########
    2014-07-22    08:38:37:022     928    aa8    AU    ##  END  ##  AU: Search for updates [CallId = {9A097F9F-88DD-4037-A4DD-48B9CC891327}]
    2014-07-22    08:38:37:022     928    aa8    AU    #############
    2014-07-22    08:38:37:022     928    aa8    AU    Successfully wrote event for AU health state:0
    2014-07-22    08:38:37:022     928    aa8    AU    Featured notifications is disabled.
    2014-07-22    08:38:37:022     928    aa8    AU    AU setting next detection timeout to 2014-07-22 04:15:53
    2014-07-22    08:38:37:022     928    aa8    AU    Successfully wrote event for AU health state:0
    2014-07-22    08:38:37:022     928    aa8    AU    Successfully wrote event for AU health state:0
    2014-07-22    08:38:42:021     928    53c    Report    REPORT EVENT: {45B5AD35-C612-4C43-8FE0-DFC63B114FC9}    2014-07-22 08:38:37:022+0800    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2014-07-22    08:38:42:021     928    53c    Report    REPORT EVENT: {BA606714-0153-41BA-ADC8-78520F678D97}    2014-07-22 08:38:37:022+0800    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2014-07-22    08:38:42:021     928    53c    Report    CWERReporter finishing event handling. (00000000)
    2014-07-22    08:52:41:224     928    53c    Report    Uploading 2 events using cached cookie, reporting URL = http://mtp-wsus2/ReportingWebService/ReportingWebService.asmx
    2014-07-22    08:52:41:240     928    53c    Report    Reporter successfully uploaded 2 events.
    2014-07-22    12:15:53:027     928    1130    AU    #############
    2014-07-22    12:15:53:027     928    1130    AU    ## START ##  AU: Search for updates
    2014-07-22    12:15:53:027     928    1130    AU    #########
    2014-07-22    12:15:53:027     928    1130    AU    <<## SUBMITTED ## AU: Search for updates [CallId = {9BDC1D71-5139-49D4-88F0-E2B639CE8846}]
    2014-07-22    12:15:53:043     928    a58    Agent    *************
    2014-07-22    12:15:53:043     928    a58    Agent    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    12:15:53:043     928    a58    Agent    *********
    2014-07-22    12:15:53:043     928    a58    Agent      * Online = Yes; Ignore download priority = No
    2014-07-22    12:15:53:043     928    a58    Agent      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation'
    or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-07-22    12:15:53:043     928    a58    Agent      * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-07-22    12:15:53:043     928    a58    Agent      * Search Scope = {Machine}
    2014-07-22    12:15:53:308     928    a58    Setup    Checking for agent SelfUpdate
    2014-07-22    12:15:53:308     928    a58    Setup    Client version: Core: 7.6.7600.256  Aux: 7.6.7600.256
    2014-07-22    12:15:53:308     928    a58    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    12:15:53:324     928    a58    Misc     Microsoft signed: Yes
    2014-07-22    12:15:55:901     928    a58    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    12:15:55:901     928    a58    Misc     Microsoft signed: Yes
    2014-07-22    12:15:55:901     928    a58    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    12:15:55:917     928    a58    Misc     Microsoft signed: Yes
    2014-07-22    12:15:55:917     928    a58    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    12:15:55:917     928    a58    Misc     Microsoft signed: Yes
    2014-07-22    12:15:55:933     928    a58    Setup    Determining whether a new setup handler needs to be downloaded
    2014-07-22    12:15:55:933     928    a58    Setup    SelfUpdate handler is not found.  It will be downloaded
    2014-07-22    12:15:55:933     928    a58    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    12:15:57:167     928    a58    Setup    Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    12:15:57:167     928    a58    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    12:15:57:167     928    a58    Setup    Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    12:15:57:167     928    a58    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    12:15:57:198     928    a58    Setup    Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    12:15:57:198     928    a58    Setup    SelfUpdate check completed.  SelfUpdate is NOT required.
    2014-07-22    12:15:57:917     928    a58    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-07-22    12:15:57:917     928    a58    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    12:15:57:963     928    a58    PT    WARNING: Cached cookie has expired or new PID is available
    2014-07-22    12:15:57:963     928    a58    PT    Initializing simple targeting cookie, clientId = 487b95fe-31a4-44f7-9989-bd77766ce5fa, target group = , DNS name = itg-soatrainsvr.mbtc.mgc.local
    2014-07-22    12:15:57:963     928    a58    PT      Server URL = http://mtp-wsus2/SimpleAuthWebService/SimpleAuth.asmx
    2014-07-22    12:16:00:572     928    a58    PT    +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2014-07-22    12:16:00:572     928    a58    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    12:16:00:932     928    a58    Agent      * Found 0 updates and 68 categories in search; evaluated appl. rules of 503 out of 777 deployed entities
    2014-07-22    12:16:00:932     928    a58    Agent    *********
    2014-07-22    12:16:00:932     928    a58    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    12:16:00:932     928    a58    Agent    *************
    2014-07-22    12:16:00:932     928    1120    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {9BDC1D71-5139-49D4-88F0-E2B639CE8846}]
    2014-07-22    12:16:00:932     928    1120    AU      # 0 updates detected
    2014-07-22    12:16:00:932     928    1120    AU    #########
    2014-07-22    12:16:00:932     928    1120    AU    ##  END  ##  AU: Search for updates [CallId = {9BDC1D71-5139-49D4-88F0-E2B639CE8846}]
    2014-07-22    12:16:00:932     928    1120    AU    #############
    2014-07-22    12:16:00:932     928    1120    AU    Successfully wrote event for AU health state:0
    2014-07-22    12:16:00:932     928    1120    AU    Featured notifications is disabled.
    2014-07-22    12:16:00:932     928    1120    AU    AU setting next detection timeout to 2014-07-22 08:15:22
    2014-07-22    12:16:00:932     928    1120    AU    Successfully wrote event for AU health state:0
    2014-07-22    12:16:00:932     928    1120    AU    Successfully wrote event for AU health state:0
    2014-07-22    12:16:05:931     928    a58    Report    REPORT EVENT: {25E75367-1205-4F59-A812-02DA28BB3234}    2014-07-22 12:16:00:932+0800    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2014-07-22    12:16:05:931     928    a58    Report    REPORT EVENT: {FE1434F8-C6AF-4F87-B3DF-6E4D6C4B05FB}    2014-07-22 12:16:00:932+0800    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2014-07-22    12:16:05:931     928    a58    Report    CWERReporter finishing event handling. (00000000)
    2014-07-22    12:30:05:116     928    a58    Report    Uploading 2 events using cached cookie, reporting URL = http://mtp-wsus2/ReportingWebService/ReportingWebService.asmx
    2014-07-22    12:30:05:131     928    a58    Report    Reporter successfully uploaded 2 events.
    2014-07-22    14:05:29:584     928    10a0    AU    Triggering AU detection through DetectNow API
    2014-07-22    14:05:29:584     928    10a0    AU    Triggering Online detection (interactive)
    2014-07-22    14:05:29:584     928    1130    AU    #############
    2014-07-22    14:05:29:584     928    1130    AU    ## START ##  AU: Search for updates
    2014-07-22    14:05:29:584     928    1130    AU    #########
    2014-07-22    14:05:29:584     928    1130    AU    <<## SUBMITTED ## AU: Search for updates [CallId = {CC67CC44-7DFB-49DE-AA83-8D6A7995ABFA}]
    2014-07-22    14:05:29:584     928    8e0    Agent    *************
    2014-07-22    14:05:29:584     928    8e0    Agent    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    14:05:29:584     928    8e0    Agent    *********
    2014-07-22    14:05:29:584     928    8e0    Agent      * Online = Yes; Ignore download priority = No
    2014-07-22    14:05:29:584     928    8e0    Agent      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation'
    or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-07-22    14:05:29:584     928    8e0    Agent      * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-07-22    14:05:29:584     928    8e0    Agent      * Search Scope = {Machine}
    2014-07-22    14:05:29:584     928    8e0    Setup    Checking for agent SelfUpdate
    2014-07-22    14:05:29:584     928    8e0    Setup    Client version: Core: 7.6.7600.256  Aux: 7.6.7600.256
    2014-07-22    14:05:29:584     928    8e0    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    14:05:29:600     928    8e0    Misc     Microsoft signed: Yes
    2014-07-22    14:05:29:616     928    8e0    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2014-07-22    14:05:29:631     928    8e0    Misc     Microsoft signed: Yes
    2014-07-22    14:05:29:631     928    8e0    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    14:05:29:631     928    8e0    Misc     Microsoft signed: Yes
    2014-07-22    14:05:29:647     928    8e0    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab:
    2014-07-22    14:05:29:662     928    8e0    Misc     Microsoft signed: Yes
    2014-07-22    14:05:29:662     928    8e0    Setup    Determining whether a new setup handler needs to be downloaded
    2014-07-22    14:05:29:662     928    8e0    Setup    SelfUpdate handler is not found.  It will be downloaded
    2014-07-22    14:05:29:662     928    8e0    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    14:05:29:662     928    8e0    Setup    Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    14:05:29:662     928    8e0    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    14:05:29:694     928    8e0    Setup    Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    14:05:29:694     928    8e0    Setup    Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256"
    2014-07-22    14:05:29:709     928    8e0    Setup    Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.6.7600.256" is already installed.
    2014-07-22    14:05:29:725     928    8e0    Setup    SelfUpdate check completed.  SelfUpdate is NOT required.
    2014-07-22    14:05:30:037     928    8e0    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-07-22    14:05:30:037     928    8e0    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    14:05:30:053     928    8e0    PT    WARNING: Cached cookie has expired or new PID is available
    2014-07-22    14:05:30:053     928    8e0    PT    Initializing simple targeting cookie, clientId = 487b95fe-31a4-44f7-9989-bd77766ce5fa, target group = , DNS name = itg-soatrainsvr.mbtc.mgc.local
    2014-07-22    14:05:30:053     928    8e0    PT      Server URL = http://mtp-wsus2/SimpleAuthWebService/SimpleAuth.asmx
    2014-07-22    14:05:35:630     928    8e0    PT    +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2014-07-22    14:05:35:630     928    8e0    PT      + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://mtp-wsus2/ClientWebService/client.asmx
    2014-07-22    14:05:36:411     928    8e0    Agent      * Found 0 updates and 68 categories in search; evaluated appl. rules of 503 out of 777 deployed entities
    2014-07-22    14:05:36:411     928    8e0    Agent    *********
    2014-07-22    14:05:36:411     928    8e0    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-07-22    14:05:36:411     928    8e0    Agent    *************
    2014-07-22    14:05:36:411     928    1360    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {CC67CC44-7DFB-49DE-AA83-8D6A7995ABFA}]
    2014-07-22    14:05:36:411     928    1360    AU      # 0 updates detected
    2014-07-22    14:05:36:411     928    1360    AU    #########
    2014-07-22    14:05:36:411     928    1360    AU    ##  END  ##  AU: Search for updates [CallId = {CC67CC44-7DFB-49DE-AA83-8D6A7995ABFA}]
    2014-07-22    14:05:36:411     928    1360    AU    #############
    2014-07-22    14:05:36:411     928    1360    AU    Successfully wrote event for AU health state:0
    2014-07-22    14:05:36:411     928    1360    AU    Featured notifications is disabled.
    2014-07-22    14:05:36:411     928    1360    AU    AU setting next detection timeout to 2014-07-22 10:01:01
    2014-07-22    14:05:36:411     928    1360    AU    Successfully wrote event for AU health state:0
    2014-07-22    14:05:36:411     928    1360    AU    Successfully wrote event for AU health state:0
    2014-07-22    14:05:41:410     928    8e0    Report    REPORT EVENT: {6A2B180E-A95F-42F7-B775-5750DFFD6ECD}    2014-07-22 14:05:36:411+0800    1  
     147    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Software Synchronization    Windows
    Update Client successfully detected 0 updates.
    2014-07-22    14:05:41:410     928    8e0    Report    REPORT EVENT: {83041427-693D-4A42-AED0-E8E7BFB8E7E3}    2014-07-22 14:05:36:411+0800    1  
     156    101    {00000000-0000-0000-0000-000000000000}    0    0    AutomaticUpdates    Success    Pre-Deployment Check    Reporting
    client status.
    2014-07-22    14:05:41:410     928    8e0    Report    CWERReporter finishing event handling. (00000000)

    No Service Pack 1 installed. Does this mean that no updates will be detected if SP1 is not installed? thanks
    That's exactly what that means!
    Updates have not been available for Windows Server 2008 R2 *RTM* systems since April, 2013.
    http://support.microsoft.com/lifecycle/?p1=14134
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • External monitor not detected on Thinkpad W530 intel-virtual-output

    I'm having problems with connecting my ThinkPad W530 to external monitors since a few months. I'm using NVIDIA Optimus and bumblebee/optirun since the VGA and Mini DisplayPort connectors are only wired to the NVIDIA card om this laptop. For a long time I have executed:
    $ optirun true
    $ intel-virtual-output
    Then I have started the Screens GUI tool in Gnome to setup the placement of the external screen but now the external screen is not present in the GUI tool and xrandr gives me:
    Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 32767 x 32767
    LVDS1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
    1920x1080 60.00*+ 50.00
    1400x1050 59.98
    1280x1024 60.02
    1280x960 60.00
    1024x768 60.00
    800x600 60.32 56.25
    640x480 59.94
    VGA1 disconnected (normal left inverted right x axis y axis)
    VIRTUAL1 disconnected (normal left inverted right x axis y axis)
    If I select "Discrete mode" and select startup screen as VGA in the BIOS the BIOS and the Grub screens shows on the external monitor but the screen locks on the screen that shows that the system is booting with the linux-ck kernel. This has never worked for me in Arch Linux so that is no surprise. In Ubuntu everything everything worked fine the last time I tried.
    How can I debug this? Why is the external screen not detected any more?

    Thanks, I am not sure exactly how to read the logs but I cannot find anything that is obviously wrong
    Below is my log with an external screen connected via Mini DisplayPort and after running:
    $ optirun true
    $ intel-virtual-output
    a few times, no more logs seem to be added when I connect/disconnect the monitor or when I run the above two commands more times.
    ╰─➤ cat /var/log/Xorg.0.log 1 ↵
    [ 2.616]
    X.Org X Server 1.15.0
    Release Date: 2013-12-27
    [ 2.616] X Protocol Version 11, Revision 0
    [ 2.616] Build Operating System: Linux 3.12.5-1-ARCH x86_64
    [ 2.616] Current Operating System: Linux ethuil 3.13.9-1-ck #1 SMP PREEMPT Fri Apr 4 15:50:10 EDT 2014 x86_64
    [ 2.616] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-ck root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet rcutree.rcu_idle_gp_delay=1
    [ 2.616] Build Date: 09 January 2014 08:47:24AM
    [ 2.616]
    [ 2.616] Current version of pixman: 0.32.4
    [ 2.616] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2.616] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2.616] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Apr 14 22:09:08 2014
    [ 2.624] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 2.624] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 2.627] (==) No Layout section. Using the first Screen section.
    [ 2.627] (==) No screen section available. Using defaults.
    [ 2.627] (**) |-->Screen "Default Screen Section" (0)
    [ 2.627] (**) | |-->Monitor "<default monitor>"
    [ 2.628] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2.628] (==) Automatically adding devices
    [ 2.628] (==) Automatically enabling devices
    [ 2.628] (==) Automatically adding GPU devices
    [ 2.638] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2.638] Entry deleted from font path.
    [ 2.638] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2.638] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2.638] Entry deleted from font path.
    [ 2.638] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2.638] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 2.638] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2.638] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2.638] (II) Loader magic: 0x804c80
    [ 2.638] (II) Module ABI versions:
    [ 2.638] X.Org ANSI C Emulation: 0.4
    [ 2.638] X.Org Video Driver: 15.0
    [ 2.638] X.Org XInput driver : 20.0
    [ 2.638] X.Org Server Extension : 8.0
    [ 2.639] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 3.588] (--) PCI:*(0:0:2:0) 8086:0166:17aa:21f5 rev 9, Mem @ 0xf1400000/4194304, 0xe0000000/268435456, I/O @ 0x00006000/64
    [ 3.588] (--) PCI: (0:1:0:0) 10de:0ffb:17aa:21f5 rev 161, Mem @ 0xf0000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00005000/128, BIOS @ 0x????????/524288
    [ 3.588] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 3.589] Initializing built-in extension Generic Event Extension
    [ 3.589] Initializing built-in extension SHAPE
    [ 3.589] Initializing built-in extension MIT-SHM
    [ 3.589] Initializing built-in extension XInputExtension
    [ 3.589] Initializing built-in extension XTEST
    [ 3.589] Initializing built-in extension BIG-REQUESTS
    [ 3.589] Initializing built-in extension SYNC
    [ 3.589] Initializing built-in extension XKEYBOARD
    [ 3.589] Initializing built-in extension XC-MISC
    [ 3.589] Initializing built-in extension SECURITY
    [ 3.589] Initializing built-in extension XINERAMA
    [ 3.589] Initializing built-in extension XFIXES
    [ 3.589] Initializing built-in extension RENDER
    [ 3.589] Initializing built-in extension RANDR
    [ 3.589] Initializing built-in extension COMPOSITE
    [ 3.589] Initializing built-in extension DAMAGE
    [ 3.589] Initializing built-in extension MIT-SCREEN-SAVER
    [ 3.589] Initializing built-in extension DOUBLE-BUFFER
    [ 3.589] Initializing built-in extension RECORD
    [ 3.589] Initializing built-in extension DPMS
    [ 3.589] Initializing built-in extension Present
    [ 3.590] Initializing built-in extension DRI3
    [ 3.590] Initializing built-in extension X-Resource
    [ 3.590] Initializing built-in extension XVideo
    [ 3.590] Initializing built-in extension XVideo-MotionCompensation
    [ 3.590] Initializing built-in extension XFree86-VidModeExtension
    [ 3.590] Initializing built-in extension XFree86-DGA
    [ 3.590] Initializing built-in extension XFree86-DRI
    [ 3.590] Initializing built-in extension DRI2
    [ 3.590] (II) "glx" will be loaded by default.
    [ 3.590] (II) LoadModule: "dri2"
    [ 3.590] (II) Module "dri2" already built-in
    [ 3.590] (II) LoadModule: "glamoregl"
    [ 3.593] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 3.615] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 3.615] compiled for 1.15.0, module version = 0.6.0
    [ 3.615] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 3.615] (II) LoadModule: "glx"
    [ 3.617] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 3.618] (II) Module glx: vendor="X.Org Foundation"
    [ 3.618] compiled for 1.15.0, module version = 1.0.0
    [ 3.618] ABI class: X.Org Server Extension, version 8.0
    [ 3.618] (==) AIGLX enabled
    [ 3.618] Loading extension GLX
    [ 3.618] (==) Matched intel as autoconfigured driver 0
    [ 3.618] (==) Matched intel as autoconfigured driver 1
    [ 3.618] (==) Matched modesetting as autoconfigured driver 2
    [ 3.618] (==) Matched fbdev as autoconfigured driver 3
    [ 3.618] (==) Matched vesa as autoconfigured driver 4
    [ 3.618] (==) Assigned the driver to the xf86ConfigLayout
    [ 3.618] (II) LoadModule: "intel"
    [ 3.618] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 3.623] (II) Module intel: vendor="X.Org Foundation"
    [ 3.623] compiled for 1.15.0, module version = 2.99.911
    [ 3.623] Module class: X.Org Video Driver
    [ 3.623] ABI class: X.Org Video Driver, version 15.0
    [ 3.623] (II) LoadModule: "modesetting"
    [ 3.624] (WW) Warning, couldn't open module modesetting
    [ 3.624] (II) UnloadModule: "modesetting"
    [ 3.624] (II) Unloading modesetting
    [ 3.624] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 3.624] (II) LoadModule: "fbdev"
    [ 3.624] (WW) Warning, couldn't open module fbdev
    [ 3.624] (II) UnloadModule: "fbdev"
    [ 3.624] (II) Unloading fbdev
    [ 3.624] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 3.624] (II) LoadModule: "vesa"
    [ 3.624] (WW) Warning, couldn't open module vesa
    [ 3.624] (II) UnloadModule: "vesa"
    [ 3.624] (II) Unloading vesa
    [ 3.624] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 3.624] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 3.624] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 3.624] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 3.624] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 3.624] (++) using VT number 1
    [ 3.625] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
    [ 3.625] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    [ 3.625] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 3.625] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 3.625] (==) intel(0): RGB weight 888
    [ 3.625] (==) intel(0): Default visual is TrueColor
    [ 3.625] (**) intel(0): Framebuffer tiled
    [ 3.625] (**) intel(0): Pixmaps tiled
    [ 3.625] (**) intel(0): "Tear free" disabled
    [ 3.625] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 3.625] (II) intel(0): Output LVDS1 has no monitor section
    [ 3.625] (--) intel(0): Found backlight control interface acpi_video0 (type 'firmware') for output LVDS1
    [ 3.625] (II) intel(0): Output VGA1 has no monitor section
    [ 3.625] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 3.625] (--) intel(0): Output LVDS1 using initial mode 1920x1080 on pipe 0
    [ 3.625] (==) intel(0): DPI set to (96, 96)
    [ 3.625] (II) Loading sub module "dri2"
    [ 3.625] (II) LoadModule: "dri2"
    [ 3.625] (II) Module "dri2" already built-in
    [ 3.625] (==) Depth 24 pixmap format is 32 bpp
    [ 3.627] (II) intel(0): SNA initialized with Ivybridge (gen7, gt2) backend
    [ 3.627] (==) intel(0): Backing store enabled
    [ 3.627] (==) intel(0): Silken mouse enabled
    [ 3.628] (II) intel(0): HW Cursor enabled
    [ 3.628] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 3.628] (==) intel(0): DPMS enabled
    [ 3.628] (II) intel(0): [DRI2] Setup complete
    [ 3.628] (II) intel(0): [DRI2] DRI driver: i965
    [ 3.628] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 3.628] (II) intel(0): direct rendering: DRI2 Enabled
    [ 3.628] (==) intel(0): hotplug detection: "enabled"
    [ 3.628] (--) RandR disabled
    [ 3.650] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 3.650] (II) AIGLX: enabled GLX_ARB_create_context
    [ 3.650] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 3.650] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 3.650] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 3.650] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 3.650] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 3.650] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 3.650] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 3.650] (II) AIGLX: Loaded and initialized i965
    [ 3.650] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 3.652] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 3.665] (II) intel(0): Setting screen physical size to 508 x 285
    [ 3.732] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 3.732] (**) Power Button: Applying InputClass "system-keyboard"
    [ 3.732] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3.732] (II) LoadModule: "evdev"
    [ 3.732] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3.734] (II) Module evdev: vendor="X.Org Foundation"
    [ 3.734] compiled for 1.15.0, module version = 2.8.2
    [ 3.734] Module class: X.Org XInput Driver
    [ 3.734] ABI class: X.Org XInput driver, version 20.0
    [ 3.734] (II) Using input driver 'evdev' for 'Power Button'
    [ 3.734] (**) Power Button: always reports core events
    [ 3.734] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 3.734] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 3.734] (--) evdev: Power Button: Found keys
    [ 3.734] (II) evdev: Power Button: Configuring as keyboard
    [ 3.734] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
    [ 3.734] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 3.734] (**) Option "xkb_rules" "evdev"
    [ 3.734] (**) Option "xkb_model" "pc104"
    [ 3.734] (**) Option "xkb_layout" "se"
    [ 3.754] (II) config/udev: Adding input device Video Bus (/dev/input/event13)
    [ 3.754] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 3.754] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 3.754] (II) Using input driver 'evdev' for 'Video Bus'
    [ 3.754] (**) Video Bus: always reports core events
    [ 3.754] (**) evdev: Video Bus: Device: "/dev/input/event13"
    [ 3.754] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 3.754] (--) evdev: Video Bus: Found keys
    [ 3.754] (II) evdev: Video Bus: Configuring as keyboard
    [ 3.754] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input15/event13"
    [ 3.754] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 3.754] (**) Option "xkb_rules" "evdev"
    [ 3.754] (**) Option "xkb_model" "pc104"
    [ 3.754] (**) Option "xkb_layout" "se"
    [ 3.754] (II) config/udev: Adding input device Video Bus (/dev/input/event14)
    [ 3.754] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 3.754] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 3.754] (II) Using input driver 'evdev' for 'Video Bus'
    [ 3.754] (**) Video Bus: always reports core events
    [ 3.754] (**) evdev: Video Bus: Device: "/dev/input/event14"
    [ 3.754] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 3.754] (--) evdev: Video Bus: Found keys
    [ 3.754] (II) evdev: Video Bus: Configuring as keyboard
    [ 3.754] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input16/event14"
    [ 3.754] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 3.754] (**) Option "xkb_rules" "evdev"
    [ 3.754] (**) Option "xkb_model" "pc104"
    [ 3.754] (**) Option "xkb_layout" "se"
    [ 3.755] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 3.755] (II) No input driver specified, ignoring this device.
    [ 3.755] (II) This device may have been added with another device file.
    [ 3.755] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 3.755] (**) Sleep Button: Applying InputClass "system-keyboard"
    [ 3.755] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 3.755] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 3.755] (**) Sleep Button: always reports core events
    [ 3.755] (**) evdev: Sleep Button: Device: "/dev/input/event2"
    [ 3.755] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 3.755] (--) evdev: Sleep Button: Found keys
    [ 3.755] (II) evdev: Sleep Button: Configuring as keyboard
    [ 3.755] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event2"
    [ 3.755] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 3.755] (**) Option "xkb_rules" "evdev"
    [ 3.755] (**) Option "xkb_model" "pc104"
    [ 3.755] (**) Option "xkb_layout" "se"
    [ 3.755] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 3.755] (II) config/udev: Adding input device Integrated Camera (/dev/input/event6)
    [ 3.756] (**) Integrated Camera: Applying InputClass "system-keyboard"
    [ 3.756] (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
    [ 3.756] (II) Using input driver 'evdev' for 'Integrated Camera'
    [ 3.756] (**) Integrated Camera: always reports core events
    [ 3.756] (**) evdev: Integrated Camera: Device: "/dev/input/event6"
    [ 3.756] (--) evdev: Integrated Camera: Vendor 0x4f2 Product 0xb2eb
    [ 3.756] (--) evdev: Integrated Camera: Found keys
    [ 3.756] (II) evdev: Integrated Camera: Configuring as keyboard
    [ 3.756] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input8/event6"
    [ 3.756] (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD, id 10)
    [ 3.756] (**) Option "xkb_rules" "evdev"
    [ 3.756] (**) Option "xkb_model" "pc104"
    [ 3.756] (**) Option "xkb_layout" "se"
    [ 3.756] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event7)
    [ 3.756] (II) No input driver specified, ignoring this device.
    [ 3.756] (II) This device may have been added with another device file.
    [ 3.756] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event11)
    [ 3.756] (II) No input driver specified, ignoring this device.
    [ 3.756] (II) This device may have been added with another device file.
    [ 3.756] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event10)
    [ 3.756] (II) No input driver specified, ignoring this device.
    [ 3.756] (II) This device may have been added with another device file.
    [ 3.756] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event9)
    [ 3.756] (II) No input driver specified, ignoring this device.
    [ 3.756] (II) This device may have been added with another device file.
    [ 3.757] (II) config/udev: Adding input device HDA Intel PCH Dock Headphone (/dev/input/event8)
    [ 3.757] (II) No input driver specified, ignoring this device.
    [ 3.757] (II) This device may have been added with another device file.
    [ 3.757] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 3.757] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
    [ 3.757] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 3.757] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 3.757] (**) AT Translated Set 2 keyboard: always reports core events
    [ 3.757] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 3.757] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 3.757] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 3.757] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 3.757] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 3.757] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 3.757] (**) Option "xkb_rules" "evdev"
    [ 3.757] (**) Option "xkb_model" "pc104"
    [ 3.757] (**) Option "xkb_layout" "se"
    [ 3.757] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event12)
    [ 3.757] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 3.757] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 3.757] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 3.757] (II) LoadModule: "synaptics"
    [ 3.757] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 3.758] (II) Module synaptics: vendor="X.Org Foundation"
    [ 3.758] compiled for 1.15.0, module version = 1.7.4
    [ 3.758] Module class: X.Org XInput Driver
    [ 3.758] ABI class: X.Org XInput driver, version 20.0
    [ 3.758] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 3.758] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3.758] (**) Option "Device" "/dev/input/event12"
    [ 3.783] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5470 (res 60)
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4498 (res 85)
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 3.783] (**) Option "TapButton1" "1"
    [ 3.783] (**) Option "TapButton2" "2"
    [ 3.783] (**) Option "TapButton3" "3"
    [ 3.783] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3.783] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3.793] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event12"
    [ 3.793] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 3.793] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 3.793] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 3.793] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.040
    [ 3.793] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 3.793] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 3.793] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 3.793] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 3.793] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3.793] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 3.793] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 3.794] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 3.794] (II) No input driver specified, ignoring this device.
    [ 3.794] (II) This device may have been added with another device file.
    [ 3.794] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event4)
    [ 3.794] (**) ThinkPad Extra Buttons: Applying InputClass "system-keyboard"
    [ 3.794] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 3.794] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
    [ 3.794] (**) ThinkPad Extra Buttons: always reports core events
    [ 3.794] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event4"
    [ 3.794] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
    [ 3.794] (--) evdev: ThinkPad Extra Buttons: Found keys
    [ 3.795] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
    [ 3.795] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event4"
    [ 3.795] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 13)
    [ 3.795] (**) Option "xkb_rules" "evdev"
    [ 3.795] (**) Option "xkb_model" "pc104"
    [ 3.795] (**) Option "xkb_layout" "se"
    [ 3.799] (II) config/udev: removing device SynPS/2 Synaptics TouchPad
    [ 3.824] (II) UnloadModule: "synaptics"
    [ 3.824] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event12)
    [ 3.824] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 3.824] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 3.824] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 3.824] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 3.824] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3.824] (**) Option "Device" "/dev/input/event12"
    [ 3.844] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5470 (res 60)
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4498 (res 85)
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 3.844] (**) Option "TapButton1" "1"
    [ 3.844] (**) Option "TapButton2" "2"
    [ 3.844] (**) Option "TapButton3" "3"
    [ 3.844] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3.844] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3.854] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event12"
    [ 3.854] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 3.854] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 3.854] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 3.854] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.040
    [ 3.854] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 3.854] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 3.854] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 3.854] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 3.854] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 3.854] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 3.854] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 3.855] removing GPU device /sys/devices/pci0000:00/0000:00:02.0/drm/card0 /dev/dri/card0
    [ 3.855] xf86: remove device 0 /sys/devices/pci0000:00/0000:00:02.0/drm/card0
    [ 3.855] failed to find screen to remove
    [ 3.855] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 3.855] removing GPU device /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1 (null)
    [ 3.855] (II) config/udev: removing device Video Bus
    [ 3.863] (II) evdev: Video Bus: Close
    [ 3.863] (II) UnloadModule: "evdev"
    [ 3.863] (II) config/udev: Adding input device Video Bus (/dev/input/event13)
    [ 3.863] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 3.863] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 3.863] (II) Using input driver 'evdev' for 'Video Bus'
    [ 3.863] (**) Video Bus: always reports core events
    [ 3.863] (**) evdev: Video Bus: Device: "/dev/input/event13"
    [ 3.863] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 3.863] (--) evdev: Video Bus: Found keys
    [ 3.863] (II) evdev: Video Bus: Configuring as keyboard
    [ 3.863] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input15/event13"
    [ 3.863] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 3.863] (**) Option "xkb_rules" "evdev"
    [ 3.863] (**) Option "xkb_model" "pc104"
    [ 3.863] (**) Option "xkb_layout" "se"
    [ 3.863] removing GPU device /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-VGA-1 (null)
    [ 3.863] (II) config/udev: removing device Video Bus
    [ 3.870] (II) evdev: Video Bus: Close
    [ 3.870] (II) UnloadModule: "evdev"
    [ 3.870] (II) config/udev: Adding input device Video Bus (/dev/input/event14)
    [ 3.870] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 3.870] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 3.870] (II) Using input driver 'evdev' for 'Video Bus'
    [ 3.870] (**) Video Bus: always reports core events
    [ 3.870] (**) evdev: Video Bus: Device: "/dev/input/event14"
    [ 3.870] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 3.870] (--) evdev: Video Bus: Found keys
    [ 3.870] (II) evdev: Video Bus: Configuring as keyboard
    [ 3.870] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input16/event14"
    [ 3.870] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 3.870] (**) Option "xkb_rules" "evdev"
    [ 3.870] (**) Option "xkb_model" "pc104"
    [ 3.870] (**) Option "xkb_layout" "se"
    [ 4.540] (II) intel(0): EDID vendor "LEN", prod id 16562
    [ 4.540] (II) intel(0): Printing DDC gathered Modelines:
    [ 4.540] (II) intel(0): Modeline "1920x1080"x0.0 139.00 1920 1980 2028 2050 1080 1090 1100 1130 -hsync -vsync (67.8 kHz eP)
    [ 4.540] (II) intel(0): Modeline "1920x1080"x0.0 115.83 1920 1980 2028 2050 1080 1090 1100 1130 -hsync -vsync (56.5 kHz e)
    [ 7.358] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event15)
    [ 7.358] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 7.358] (**) TPPS/2 IBM TrackPoint: Applying InputClass "Trackpoint Wheel Emulation"
    [ 7.358] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    [ 7.358] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 7.358] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event15"
    [ 7.358] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
    [ 7.358] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 7.358] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
    [ 7.358] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 7.358] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 7.358] (**) Option "Emulate3Buttons" "false"
    [ 7.358] (**) Option "EmulateWheel" "true"
    [ 7.358] (**) Option "EmulateWheelButton" "2"
    [ 7.358] (**) Option "YAxisMapping" "4 5"
    [ 7.358] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 7.358] (**) Option "XAxisMapping" "6 7"
    [ 7.358] (**) evdev: TPPS/2 IBM TrackPoint: XAxisMapping: buttons 6 and 7
    [ 7.358] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 7.358] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input14/event15"
    [ 7.358] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 14)
    [ 7.358] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 7.359] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 7.359] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 7.359] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 7.359] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 7.359] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
    [ 7.359] (II) No input driver specified, ignoring this device.
    [ 7.359] (II) This device may have been added with another device file.
    [ 20245.335] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 21030.923] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 21196.939] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 21209.255] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 24416.533] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 26177.657] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none

  • Using javascript to detect the onclick event over a datatable row

    Hi all,
    I'm working with JSF 1.2 R.I. and I would like to add some javascript to my datatable to be able to control the onclick event on a row.
    At the moment I have just added a checkbox to be able to know which row the user wants to select but I'm not satisfied with this solution.
    <h:dataTable
    value="#{person_iupopulations_Observation.customer}" var="customer"
    rowClasses="evenRow,oddRow"
    cellspacing="0">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Select" />
    </f:facet>
    <h:selectBooleanCheckbox value="" onclick="getRow(this)">
    </h:selectBooleanCheckbox>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Name" />
    </f:facet>
    <h:outputText value="#{customer.Name}"></h:outputText>
    </h:column>
    </h:dataTable>
    What I would like to achieve is:
    When the user clicks the row (wherever, not only the checkbox) the checkbox changes to the new value depending, off course, on the user's selection.
    For this purpose I would need to add the onclick event to every row and associate it to a javascript function to update the checkbox.
    Can anybody help me please.
    I appreciate any suggestion.
    Thanks in advance!

    I am looking for answers on how to use javascript to detect the onclick event over a datatable row . I have a selectBooleanCheckBox in one of the columns in the every row in the table. On click of the checkbox in any row of the table, I want to get some values from the selected row and also verify that the rest of the checkboxes in all the other columns are unchecked. I want to do this using javascript. If any of you have answers, please repsond. Thanks.

  • Arrow key in the keydown event

    Hello,
    I used the keydown event to display the characters on the Screen depending on the key which is pressed,
    but if I press arrow keys and want to display "x" on the extreme right side of the characters for example :
    abcsdex
    here x is displayed when left arrow key is pressed. I tried it but x is not displayed where I want it is displayed on the extreme left of the characters or in between the characters.
    Thank you.

    I used the keydown event to display the characters on
    the Screen depending on the key which is pressed,
    but if I press arrow keys and want to display "x" on
    the extreme right side of the characters for example
    abcsdex
    here x is displayed when left arrow key is
    pressed. I tried it but x is not displayed where
    I want it is displayed on the extreme left of the
    characters or in between the characters.
    Thank you.write a KeyPressed event.get a ASCII value of the key you want to press.Then append the ASCII value of that pressed key to the current string in your desired position.First store the current string to a String variable.

Maybe you are looking for

  • How can I get my iMac Firefox bookmarks into my iPad? When I sync my iPad it only moves the old Safari bookmarks.

    My desk-top is an iMac G5. I use the Firefox brouser exclusively on it and have for a number of years. I now have an iPad [#1] but it only has Safari as a brouser. When I "Sync" my iPad with my iMac it brings my "old" Safari bookmarks list to the iPa

  • Acrobat quits during saving and then the file and comments are lost

    I'm working in acrobat pro x on a 300page pdf.  I am commenting on pages throughout the pdf using stickies.  I try to save the file.  half way through the save process acrobat unexpectedly quits.  when i reopen it says it has recovered the lost file

  • Repeating XML content from db and linked images

    I'm using XML to flow content from a database into an ID CS2 pub. There will be an .ai file associated with each record which will be placed into a tagged inline frame in each repeating element. I would like to store the .ai files in their own direct

  • Macbook's Airport Extreme

    Hi all, I bought a MBP 15,4" 2.0Ghz one week ago and I have noticed that I can not activate the pasive mode of my Airport Extreme from KisMAC. I have read on its website that the current version of KisMAC can not use on passive mode the AE of Macbook

  • Connecting The MacBook

    How do I use automator do create a workflow allowing it to connect to a network hard drive? I would have this workflow be a start up item. Thanks.