T420 with Multiple Monitors

I have a T420, with a Dock series 3 (model 4338).  I would like to set it up to have 2 external monitors and to also use the laptops display.  The KB references the Optimus drivers, which I do not have.   My display adapter is recognized as an Intel (R) HD Graphics Family.  Is there a way to also use the laptop display or do I have to have the Optimus to enable it?
Thanks in advance
Carl
:edit
my laptop
ThinkPad T420 (4177-Q5U)
15-2520M(2.50GHz) 2GB RAM 320GB 7200rpm HD 14in 1366x768 LCD Intel HD Graphics CDRW/DVDRW 1Gb Ethernet UltraNav Secure Chip Camera 6c Li-Ion Win7 Pro 64
Solved!
Go to Solution.

with your laptop this method is not possible, you would need the Nvidia equipped GPU to do this.
However, you can run the laptop with an additional external screen by getting a usb2dvi converter or an eGPU solution.
Regards,
Jin Li
May this year, be the year of 'DO'!
I am a volunteer, and not a paid staff of Lenovo or Microsoft

Similar Messages

  • [Non IE Regression] Support for full screen mode with multiple monitors

    This seems to be a regression with Flash Player v11.2.202.x (for all other browsers).
    With Internet Explorer it is still working.
    http://kb2.adobe.com/cps/890/cpsid_89050.html
    == Support for full screen mode with multiple monitors ==
    Full screen content will remain in full-screen on secondary monitors, allowing users to watch full-screen content while working on another display.
    Tested on Windows 7 x64 SP1 with:
    - Internet Explorer 9
    - Firefox Release, Beta, Aurora, Nightly
    - Opera 12 build 1116
    In bugbase.adobe.com I cannot choose v11.2.x

    Please vote for it If you have the same problem:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3016912
    Thanks

  • Can you have multiple users working off the same Mac pro at the same time with multiple monitors but doing different things?

    I'm buying desktops for a start up company and was wondering if I could purchase a single Mac Pro and run multiple monitors to allow multiple users to work on the computer at the same time. These users would be doing different tasks but I would hope to accomplish that on a single desktop. I know that screen sharing is possible but with only one user controlling both of the screens. Thanks in advance, sorry for my apple ignorance!

    A lot of companies are buying or leasing laptops to be used at the office by day, and carried home at night.
    Some companies are doing "Bring your own device". Bring a device to receive email -- computer/smartphone/tablet you already have, or have an allowance to buy one for your use.
    If Capital is short (and when is it not) leasing computers, to be turned in a few years, can be a huge savings because the cost is expensed as incurred. The alternative is laying out cash today, but not being able to expense the cost this year. Instead, the computer expense must be recovered over their useful life (often five years) through depreciation.

  • You cannot shadow a session with multiple monitors enabled in Windows Server 2008 R2

    Searching through the forums (and according to KB2484290) it appears that there is no solution to this problem.  We are rolling out thin clients that are using dual monitors exclusively and we were very surprised to find out that we couldn't shadow
    sessions with dual monitors (which to us means that we can't shadow ANY sessions).  This now completely changes our approach to managing these devices. 
    We are running Windows Server 2008 R2 SP1 with Remote Desktop Services installed.  The thin clients are running Windows Embedded Standard 7 with the latest updates / RDP client. All steps have been followed to ensure that the apropriate settings and
    permissions have been set up to allow access into the session. 
    We tested by unchecking the RDP setting “use all my monitors for the remote session”, with that setting disabled shadowing worked
    Questions:
    1. KB2484290 is from Dec 2010 - It's now April 2012, is there a workaround / hotfix for this issue that will allow us to shadow sessions using the native Microsoft tools?
    2. Are there any recommended alternatives (software)?  Free/Paid - doesn't matter we just need something that will work.  I'm sure there are a few options out there but I am looking for suggestions for what people have used in the past that worked
    best for them to help us narrow down the choices.

    Hi,
    In my experience, so far, the workaround is Remote Assistance, Remote Assistance supports multiple monitors, and is the presently recommended solution if you need this functionality. Remote Assistance is a Windows Server Feature that must be explicitly installed
    on Windows Server 2008 R2; it is already installed with the client versions of the operating system.
    More information:
    Remote Assistance Overview
    http://technet.microsoft.com/en-us/library/cc753881.aspx
    Remote Assistance and Resulting Internet Communication in Windows Server 2008
    http://technet.microsoft.com/en-us/library/cc770456(v=ws.10).aspx
    As far as I know, there are some third-party tools can be used as the solution, such as Teamviewer, ISL Online, etc.
    Please Note: The third-party products discussed here are manufactured by companies that are independent of Microsoft. We make no warranty, implied or otherwise, regarding
    these products' performance or reliability.
    Regards,
    Dollar Wang
    Forum Support
    TechNet Subscriber Support
    If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Technology changes life……

  • How do you center dialogs with multiple monitors. code, best practices

    My existing code will take the pixel size of the java app, and using the size of the dialog, it will center dialogs perfectly in the center of the application. This is great for single monitors, but when multiple monitors are introduced it is a problem. With dual monitor, the dialog is split in half between the two monitors.
    I should be able to determine which pixel/frame initiated the user's action; and then i am hoping to get some code or direction on:
    1. how to determine which monitor the user initiated the action on (knowing the px or frame location, how would i do this)
    2. how to center dialog on that monitor
    if possible, it would be appreciated if you can provide some code; i cant find anything on determing pixel size of monitors and this seems to be a little bit of a project to do from scratch. open source, 3rd party, insight, guidance, all is appreciated. thanks !

    This code may help:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class OptionPaneDemo {
        ActionListener al = new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                Component comp = (Component) evt.getSource();
                JFrame f = (JFrame) SwingUtilities.windowForComponent(comp);
                showDialogInUpperRightCorner(f);
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable(){
                public void run() {
                    new OptionPaneDemo().go();
        void go() {
            GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
            for(GraphicsDevice gd: ge.getScreenDevices()) {
                JButton showDialogButton = new JButton("show the dialog");
                showDialogButton.addActionListener(al);
                JFrame f = new JFrame(gd.getDefaultConfiguration());
                f.getContentPane().add(showDialogButton, BorderLayout.NORTH);
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.pack();
                centerWindow(f);
                f.setVisible(true);
        void centerWindow(Window w) {
            Rectangle windowBounds = w.getBounds();
            GraphicsConfiguration gc = w.getGraphicsConfiguration();
            Rectangle screenBounds = gc.getBounds();
            int x = screenBounds.x + (screenBounds.width - windowBounds.width)/2;
            int y = screenBounds.y + (screenBounds.height - windowBounds.height)/2;
            w.setLocation(x, y);
        void showDialogInUpperRightCorner(JFrame f) {
            JOptionPane pane = new JOptionPane("Hello, world!");
            JDialog dialog = pane.createDialog(f, "title");
            Rectangle dialogBounds = dialog.getBounds();
            GraphicsConfiguration gc = dialog.getGraphicsConfiguration();
            Rectangle screenBounds = gc.getBounds();
            //int x = screenBounds.x + screenBounds.width - dialogBounds.width;
            //int y = screenBounds.y == 0 ? 1 : screenBounds.y;
            int x = screenBounds.x;
            int y = screenBounds.y + screenBounds.height - dialogBounds.height-1;
            System.out.format("(%d,%d)%n", x, y);
            dialog.setLocation(x, y);
            dialog.setVisible(true);
    }

  • How can use full app with multiple monitor

    in Lion and Mountain Lion
    when i use Multiple Monitors and move any app in full-screen mode
    its become in one monitor and other monitor become blank
    but it seems usefull that other monitor show another app in fullscreen mode
    how can i do this ?
    and sorry for my bad english!!

    Sorry to say, but it is designed to work that way.
    The only way around it that I know of is, not to use full-screen but just fill the screen with the application that you are using.
    A

  • Flash with multiple monitors

    Hello,
    I have an issue with the Flash projector and multiple
    monitors.
    I develop an application with .exe file that run on a
    multiple monitors enviroments, when I try to get a full screen
    (with CTRL + F or fscommand("fullscreen", "true")) the display goes
    only to the primary screen.
    The only thing that work is to maximize the application but I
    get the menu and the windows bar and button.
    Do anyone have an idea how to fix it??
    Thank you in advance.
    Javier.

    Thank you Russ,
    What I do is to Extend the Windows desktop to both monitors
    and then I open the flash project and drag and drop to the second
    monitor, but when I full screen the project is only show on the
    primary monitor.
    Regards.
    Javier.

  • Bizarre crashing with Multiple Monitors in Win 7 64-bit.

    I am running InDesign CS 4.0.2 ME (4.0.4 has yet to be released) with 4 monitors running on 2 nvidia cards. I am having the most bizarre behaviour. After rebooting the computer, ID crashes on starting. The only way to get it to work is to first disable the second card, then it loads fine, the reenable the second card. ID will open and close without any problem until I reboot again!
    This is really strange.
    I used to have a similar problem on Vista where if ID was maximised on start it wouldn't load so I had to make the preference be that it didn't open full screen (1920 x 1200) and then it would work.
    It seems that Adobe would prefer us all to work on XP with a 17" monitor.
    On a similar front, in 64-bit Windows 7, the ID icon doesn't show. It's just a blank icon. The book icon works, as does, .idml etc., but an .indd simply doesn't appear in purple. This is unique to 64-bit Win 7, because under 32-bit it works fine.
    Most bizarre and quite irritating!

    All I can tell you is that I don't see this issue with the standard version of InDesign.
    It sounds to me like a video card/driver issue and that's where I'd be concentrating my efforts.
    Bob

  • Mavericks with Multiple Monitors?

    I keep my tool pallets arranged on my second monitor. Ever since I upgraded to Mavericks Photoshop, InDesign and Illustrator all lost my workspace settings whenever the monitors go to sleep. I can restore everything by chooseing Reset Workspace, but this is getting real old. Usually after waking up the monitors, the palettes either all show up in my main monitor or almost completely off screen on my second monitor?
    Am I the only one having this problem?
    Only other thing I have noticed wierd in CC since moving to Mavericks several weeks ago is that Photoshop sometimes switches to the Color-Wheel cursor (but not spinning) at times regardless of which tool is selected - eventually it will switch back, but have not identified what causes it to restore itself.

    Fwiw, I think this is expected behavior.  Aperture is set to use multiple monitors in the same (OS determined) "Space".  In Mountain Lion, you could not show two spaces at the same time. In Mavericks you can assign a monitor to a space (this is the default).  But if you want an app to use both monitors, you have to turn off this feature.
    As I see it (actually, I don't -- I haven't upgraded to the big wave), the hierarchy was:
    Space(s)
    Monitors (all in same Space at any given time)
    Apps
    and now it is (by default):
    Monitor(s)
    Space(s) (one per monitor)
    Apps.
    What you are asking is to have each Monitor display a Space, and have an app (Aperture) run in two Spaces at the same time.  That might be asking too much. 

  • Help with multiple monitors

    Hi Guys,
    I've run in to a bit of an issue with my MP. I run three monitors off two GT120 cards. They work great in OSX and did work fine in Win7. We've just moved and when Ifired up the mac again at the new place the three monitors work fine in OSX still but when I bootcamp in to Win7 it will only work with one monitor if I power up the other two it either rearranges the screens around of blanks them all so that I end up with a black screen that I can move the mouse pointer around on and the other screens say they have no input and switch off. Occasionally win7 shuts down completely!
    It's got me baffled.......I don't know windows that well to start rummaging around too much and OSX is working fine so the hardware is OK. HELP!!
    Cheers
    Mike
    P.S. Everything is up to date.............in fact nothing has changed since the whole set-up was moved to the new house.

    I think I have it worked out. I put the Kona card in "input passthrough" mode and all seems to work just fine. I had it in MacIntosh desktop and that was causing my problem
    If any other suggestions I am sure open to them.
    Thanks
    John

  • How can use Print and Page Setup Dialogs with multiple monitors?

    It seems the designers of the printing API forgot to include multiple monitor support.
    According to the API, a way to popup a print dialog is done via this manner;
    1) PrinterJob.getPrinterJob().printDialog()
    or
    2)PrinterJob.getPrinterJob().printDialog(PrintRequestAttributeSet atts)
    Option (1) brings up the native print dialog and hangs the event thread (another problem, for later i guess) and (2) brings up the Swing dialog which at least doesn't hang the event thread. And while somewhat limited is not a bad print dialog.
    The problem is that there is no way to pass a GraphicsConfiguration object, so that the print dialog can know where to popup (what monitor).
    So looking around, we have this newer 1.4 method
    http://java.sun.com/j2se/1.4/docs/api/javax/print/ServiceUI.html
    public static PrintService printDialog(GraphicsConfiguration gc,
    int x,
    int y,
    PrintService[] services,
    PrintService defaultService,
    DocFlavor flavor,
    PrintRequestAttributeSet attributes) throws HeadlessException
    So now this method has a way to pass a graphicsconfiguration, so it should know what monitor to create the dialog in.
    But this method is such a mess to setup. When I use it, it lists the printers but doesn't select the user's default printer.
    But more problematecally is that there is no PAGE SETUP dialog equivalent to this method! So I would have a print dialog that pops up in the right place, but page setup on default monitor! ARGH!!!
    The code for ServiceUI has a pageDialog() method but it's commented out for "future release". What a mess.
    Is there any way to solve this? To have pageDialog and printDialog on a given monitor?

    It seems the designers of the printing API forgot to include multiple monitor support.
    According to the API, a way to popup a print dialog is done via this manner;
    1) PrinterJob.getPrinterJob().printDialog()
    or
    2)PrinterJob.getPrinterJob().printDialog(PrintRequestAttributeSet atts)
    Option (1) brings up the native print dialog and hangs the event thread (another problem, for later i guess) and (2) brings up the Swing dialog which at least doesn't hang the event thread. And while somewhat limited is not a bad print dialog.
    The problem is that there is no way to pass a GraphicsConfiguration object, so that the print dialog can know where to popup (what monitor).
    So looking around, we have this newer 1.4 method
    http://java.sun.com/j2se/1.4/docs/api/javax/print/ServiceUI.html
    public static PrintService printDialog(GraphicsConfiguration gc,
    int x,
    int y,
    PrintService[] services,
    PrintService defaultService,
    DocFlavor flavor,
    PrintRequestAttributeSet attributes) throws HeadlessException
    So now this method has a way to pass a graphicsconfiguration, so it should know what monitor to create the dialog in.
    But this method is such a mess to setup. When I use it, it lists the printers but doesn't select the user's default printer.
    But more problematecally is that there is no PAGE SETUP dialog equivalent to this method! So I would have a print dialog that pops up in the right place, but page setup on default monitor! ARGH!!!
    The code for ServiceUI has a pageDialog() method but it's commented out for "future release". What a mess.
    Is there any way to solve this? To have pageDialog and printDialog on a given monitor?

  • T420 Linux Multiple Monitors

    Running RHEL6.4 T420 4180-F66 I have the Dock series 3.
    I'm looking to have 2 23" LCD monitors with the laptop screen working at the same time. I can't get it to work i've tried 100 different ways and can't seem to find anything online except for third party software that is no longer supported for RHEL 6.4 I'm currently running Nvidia driver 319.17 please help.
    Thanks

    Quick note - you may want to look up the specific dock you have. As I reviewed them, at least one specified that two external displays can be used but that the Thinkpad display would be disabled. The specific one I saw was this : http://support.lenovo.com/en_US/product-and-parts/detail.page?&LegacyDocID=MIGR-72873.

  • Zoom (Accessibility feature) is extremely slow with multiple monitors [OSX 10.10]

    When connecting an external display to my Laptop and using the "Ctrl + Scroll" functionality for accessibility zooming, the display/graphics are extremely slow.
    An estimate of FPS would be sub 1FPS. The machine becomes unresponsive and is unusable for a minute or so, until I can get it zoomed back out, and it begins responding normally.
    This is very disruptive, as its a feature I use often.
    The same laptop on OSX 10.9 did not exhibit this issue.
    Hardware: MacBook Pro 13" Retina Mid 2014, 16GB Ram
    Software: OSX Yosemite 10.10
    System Information: http://cl.ly/image/0H1p032w0M0w
    Reproduction steps:
    1. Enable CTRL+SCROLL zoom functionality in System Preferences > Accessibility
    2. Connect external monitor (Display port cable)
    3. Hold CTRL and Scroll to zoom
    4. System becomes slow, graphics slow, showing < 1 FPS without any other applications running

    Just to note, I have the same problem....
    When you use Thunderbolt display with 15" MB Pro late 2013, it zooms unreasonably slow.
    But when you close the laptop display and only have the Thunderbolt display on, it zooms a bit faster, but still too slow for such a new laptop.
    I think it could be optimised a bit better, something somewhere can be improved here.
    Regards,
    Ned

  • Macbook Pro video issue with multiple Monitors and Powerpoint 2011

    Hello all,
    I have a major issue that is perplexing me. Whenever I hook up a second monitor or projector to my Macbook Pro 15" Early 2010 and launch a Powerpoint slideshow I lose video on both systems immediately and can only recover with a reboot. This is fully reproducable. It doesn't matter if I'm using the mini Display Port to DVI or VGA adapter, same results. Same results with monitors, TVs, or external projectors. I only experience this issue in MS Powerpoint 2011, no other applications. I have 8GB of Ram and a 2.66GHZ i7. It doesn't matter what my resolution is set to, same issue. I will post two error reports below for additional details.
    Thank you for the help,
    Eric
    Interval Since Last Panic Report: 1489459 sec
    Panics Since Last Report: 5
    Anonymous UUID: AC46B310-CEBD-4130-AAD5-8D163B949E0D
    Thu Mar 3 18:08:35 2011
    panic(cpu 0 caller 0x9d3bfa): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xc0000000 0xa5ea3000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x83701768 : 0x21b50c (0x5d4438 0x8370179c 0x223974 0x0)
    0x837017b8 : 0x9d3bfa (0xbe92bc 0xc59940 0xbf8424 0x0)
    0x83701858 : 0xaee640 (0xe9c5c04 0xd551004 0x100 0xae881b)
    0x837018a8 : 0xae5639 (0xd551004 0x100 0x837018d8 0x9c36d7)
    0x837018d8 : 0x17169ce (0xd551004 0x100 0x438004ee 0x3)
    0x83701a18 : 0xb0d2bd (0xd551004 0xd681004 0x0 0x0)
    0x83701a58 : 0x9dce63 (0xd551004 0xd681004 0x0 0x0)
    0x83701af8 : 0x9d946f (0x0 0x9 0x0 0x0)
    0x83701ca8 : 0x9da2b7 (0x0 0x600d600d 0x7057 0x83701ce8)
    0x83701d98 : 0xc94d1c (0xc1d00044 0xbeef0003 0xcaf0133e 0xcaf01340)
    0x83701eb8 : 0xc94fba (0xee95804 0x18547e04 0x6d1c6460 0x8)
    0x83701f18 : 0xc952a5 (0xee95804 0x18547e04 0x6d1c6460 0x83702180)
    0x83701fc8 : 0xca94a9 (0xee95804 0x1844a8e8 0x8370233c 0x83702180)
    0x83702238 : 0xc8ac0b (0x6d29e000 0x1844a8e8 0x8370233c 0x83702324)
    0x83702398 : 0xc8ae49 (0x6d1de000 0x1844a800 0x1 0x0)
    0x837023c8 : 0xc8d90a (0x6d1de000 0x1844a800 0x1 0x9e9de118)
    0x83702408 : 0xcafb4e (0x6d1de000 0x1844a800 0x6d3f2274 0x140)
    0x83702498 : 0xca13c1 (0x1855ec80 0x1844a800 0x0 0x1)
    0x837024f8 : 0xca1628 (0x6d3f2000 0x6d3f277c 0x1844a800 0x0)
    0x83702548 : 0xca1afc (0x6d3f2000 0x6d3f277c 0x8370286c 0x8370280c)
    0x83702888 : 0xc9e945 (0x6d3f2000 0x6d3f277c 0x1 0x220673)
    0x837028a8 : 0xc665a1 (0x6d3f2000 0x6d3f277c 0x18724240 0x500547)
    0x837028d8 : 0xca0408 (0x6d3f2000 0x83702a1c 0x83702908 0x4ffa01)
    0x83702918 : 0xc6a8de (0x6d3f2000 0x83702a1c 0x83702a1c 0x83702980)
    0x83702a58 : 0xca3cfe (0x6d3f2000 0x0 0x83702b6c 0x83702b68)
    0x83702b08 : 0xc66c93 (0x6d3f2000 0x0 0x83702b6c 0x83702b68)
    0x83702b88 : 0x565a88 (0x6d3f2000 0x0 0x83702ddc 0x83702c14)
    0x83702bd8 : 0x566327 (0xcf4e20 0x6d3f2000 0x1cac2d88 0x1)
    0x83702c28 : 0x566bdb (0x6d3f2000 0x10 0x83702c70 0x0)
    0x83702d48 : 0x285bce (0x6d3f2000 0x10 0x1cac2d88 0x1)
    0x83703df8 : 0x21d8ba (0x1cac2d60 0x114625a0 0xfc330 0x8a03)
    0x83703e38 : 0x210a3a (0x1cac2d00 0x0 0x1cab2ce0 0x10599fc0)
    Backtrace continues...
    Kernel Extensions in backtrace (with dependencies):
    com.apple.GeForce(6.2.6)@0xc5b000->0xd10fff
    dependency: com.apple.NVDAResman(6.2.6)@0x96d000
    dependency: com.apple.iokit.IONDRVSupport(2.2)@0x960000
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x92d000
    dependency: com.apple.iokit.IOGraphicsFamily(2.2)@0x93e000
    com.apple.nvidia.nv50hal(6.2.6)@0x15e0000->0x19f4fff
    dependency: com.apple.NVDAResman(6.2.6)@0x96d000
    com.apple.NVDAResman(6.2.6)@0x96d000->0xc5afff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x92d000
    dependency: com.apple.iokit.IONDRVSupport(2.2)@0x960000
    dependency: com.apple.iokit.IOGraphicsFamily(2.2)@0x93e000
    BSD process name corresponding to current thread: Microsoft PowerP
    Mac OS version:
    10J567
    Kernel version:
    Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 6097571436804
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI 4.1.5 (addr 0x147f000, size 0x65536) - last unloaded 133585664378
    loaded kexts:
    com.aventail.xgfilt.kext 1.0 - last loaded 362791442640
    com.aventail.tun.kext 1.0
    com.google.filesystems.fusefs 2.0.3
    com.McAfee.kext.AppProtection 1.0.0d1
    com.vmware.kext.vmnet 3.1.2
    com.vmware.kext.vmioplug 3.1.2
    com.vmware.kext.vmci 3.1.2
    com.vmware.kext.vmx86 3.1.2
    com.mcafee.kext.Virex 1.0.0d1
    MonitorControl.drv 1.0d3
    com.apple.filesystems.udf 2.1
    com.apple.driver.AppleHWSensor 1.9.3d0
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AppleBluetoothMultitouch 54
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.driver.AppleHDA 1.9.9f12
    com.apple.driver.AGPM 100.12.19
    com.apple.driver.AppleMikeyDriver 1.9.9f12
    com.apple.driver.AudioAUUC 1.13
    com.apple.driver.AppleUpstreamUserClient 3.4.5
    com.apple.driver.AppleMCCSControl 1.0.17
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.6
    com.apple.driver.ACPISMCPlatformPlugin 4.5.0d5
    com.apple.driver.AppleLPC 1.4.12
    com.apple.driver.AppleGraphicsControl 2.8.68
    com.apple.GeForce 6.2.6
    com.apple.driver.AppleIntelHDGraphics 6.2.6
    com.apple.driver.AppleIntelHDGraphicsFB 6.2.6
    com.apple.driver.MaxTranserSizeOverrideDriver 2.5.8
    com.apple.driver.AppleUSBTCButtons 200.3.2
    com.apple.driver.AppleUSBCardReader 2.5.8
    com.apple.driver.AppleUSBTCKeyboard 200.3.2
    com.apple.driver.AppleIRController 303.8
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage 1.6.3
    com.apple.driver.AppleUSBHub 4.1.7
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AirPortBrcm43224 426.36.1
    com.apple.iokit.AppleBCM5701Ethernet 2.3.9b6
    com.apple.driver.AppleEFINVRAM 1.4.0
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleUSBEHCI 4.1.7
    com.apple.driver.AppleAHCIPort 2.1.5
    com.apple.driver.AppleACPIButtons 1.3.5
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.5
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.13.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.13.0
    com.apple.driver.AppleHIDKeyboard 141
    com.apple.driver.IOBluetoothHIDDriver 2.3.8f7
    com.apple.driver.AppleMultitouchDriver 207.10
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.DspFuncLib 1.9.9f12
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IOSurface 74.2
    com.apple.iokit.IOBluetoothSerialManager 2.3.8f7
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.8.0fc1
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.9.9f12
    com.apple.iokit.IOHDAFamily 1.9.9f12
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.1.0d3
    com.apple.driver.IOPlatformPluginFamily 4.5.0d5
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.nvidia.nv50hal 6.2.6
    com.apple.NVDAResman 6.2.6
    com.apple.iokit.IONDRVSupport 2.2
    com.apple.iokit.IOGraphicsFamily 2.2
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.3.8f7
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.8f7
    com.apple.iokit.IOBluetoothFamily 2.3.8f7
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBMassStorageClass 2.6.5
    com.apple.driver.AppleUSBMultitouch 206.6
    com.apple.iokit.IOUSBHIDDriver 4.1.5
    com.apple.driver.AppleUSBMergeNub 4.1.5
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.5
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 4.1.5
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IO80211Family 312
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOUSBFamily 4.1.7
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.driver.AppleEFIRuntime 1.4.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 289
    com.apple.iokit.IOStorageFamily 1.6.2
    com.apple.driver.AppleACPIPlatform 1.3.5
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 465.76 GB
    Serial ATA Device: MATSHITADVD-R UJ-898, 5.6 MB
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: My Book, 0x1058 (Western Digital Technologies, Inc.), 0x1102, 0xfd130000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0xfd110000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0237, 0xfa140000
    USB Device: ImageMate 12 in 1 Reader/Writer, 0x0781 (SanDisk Corporation), 0x8989, 0xfa144000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa130000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0xfa120000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8218, 0xfa113000
    #2 Panic
    Interval Since Last Panic Report: 1490834 sec
    Panics Since Last Report: 7
    Anonymous UUID: AC46B310-CEBD-4130-AAD5-8D163B949E0D
    Thu Mar 3 18:30:57 2011
    panic(cpu 2 caller 0x9d3bfa): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xc0000000 0xa5e82000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 2), Frame : Return Address (4 potential args on stack)
    0x82f79bd8 : 0x21b50c (0x5d4438 0x82f79c0c 0x223974 0x0)
    0x82f79c28 : 0x9d3bfa (0xbe92bc 0xc59940 0xbf8424 0x0)
    0x82f79cc8 : 0xaee640 (0xe4e0804 0xe624004 0x100 0x2)
    0x82f79d18 : 0xae5639 (0xe624004 0x100 0x82f79d48 0x9c36d7)
    0x82f79d48 : 0x171a9ce (0xe624004 0x100 0x438004ee 0x29eac3)
    0x82f79e88 : 0xb0d2bd (0xe624004 0xe4db004 0x0 0x0)
    0x82f79ec8 : 0x9dce63 (0xe624004 0xe4db004 0x0 0x0)
    0x82f79f68 : 0x9d946f (0x0 0x9 0x0 0x0)
    0x82f7a118 : 0x9db5fb (0x0 0x600d600d 0x7027 0x82f7a148)
    0x82f7a1e8 : 0xc84975 (0xc1d00041 0xbeef0003 0x18512500 0x71)
    0x82f7a288 : 0xc84e9f (0x6d204000 0x18512500 0x184fc004 0x0)
    0x82f7a2c8 : 0xc5ce0b (0x6d204000 0x18512500 0x184fc004 0x0)
    0x82f7a2f8 : 0xc84572 (0x6d204000 0x18512500 0x184fc004 0x0)
    0x82f7a318 : 0xc5c418 (0x6d204000 0x18512500 0x184fc004 0x0)
    0x82f7a338 : 0xc84e4a (0x6d204000 0x184fc000 0x2 0x2)
    0x82f7a378 : 0xc5f7b9 (0x6d204000 0x184fc000 0x0 0x184fc000)
    0x82f7a3b8 : 0xc5d269 (0x6d204000 0x6d3cf000 0x6d3d8000 0x1808d400)
    0x82f7a408 : 0xcafbed (0x6d204000 0x6d3cf000 0x6d3d8000 0x1808d400)
    0x82f7a498 : 0xca13c1 (0x1808d400 0x184fc000 0x0 0x1)
    0x82f7a4f8 : 0xca1628 (0x6d3cf000 0x6d3cf77c 0x184fc000 0x0)
    0x82f7a548 : 0xca1afc (0x6d3cf000 0x6d3cf77c 0x82f7a86c 0x82f7a80c)
    0x82f7a888 : 0xc9e945 (0x6d3cf000 0x6d3cf77c 0x1 0x220673)
    0x82f7a8a8 : 0xc665a1 (0x6d3cf000 0x6d3cf77c 0x18513100 0x500547)
    0x82f7a8d8 : 0xca0408 (0x6d3cf000 0x82f7aa1c 0x82f7a908 0x6d3cf000)
    0x82f7a918 : 0xc6a8de (0x6d3cf000 0x82f7aa1c 0x82f7aa1c 0x82f7a980)
    0x82f7aa58 : 0xca3cfe (0x6d3cf000 0x0 0x82f7ab6c 0x82f7ab68)
    0x82f7ab08 : 0xc66c93 (0x6d3cf000 0x0 0x82f7ab6c 0x82f7ab68)
    0x82f7ab88 : 0x565a88 (0x6d3cf000 0x0 0x82f7addc 0x82f7ac14)
    0x82f7abd8 : 0x566327 (0xcf4e20 0x6d3cf000 0x17ce2188 0x1)
    0x82f7ac28 : 0x566bdb (0x6d3cf000 0x10 0x82f7ac70 0x0)
    0x82f7ad48 : 0x285bce (0x6d3cf000 0x10 0x17ce2188 0x1)
    0x82f7bdf8 : 0x21d8ba (0x17ce2160 0x1720f5a0 0x1fd590 0xa017)
    Backtrace continues...
    Kernel Extensions in backtrace (with dependencies):
    com.apple.nvidia.nv50hal(6.2.6)@0x15e4000->0x19f8fff
    dependency: com.apple.NVDAResman(6.2.6)@0x96d000
    com.apple.GeForce(6.2.6)@0xc5b000->0xd10fff
    dependency: com.apple.NVDAResman(6.2.6)@0x96d000
    dependency: com.apple.iokit.IONDRVSupport(2.2)@0x960000
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x92d000
    dependency: com.apple.iokit.IOGraphicsFamily(2.2)@0x93e000
    com.apple.NVDAResman(6.2.6)@0x96d000->0xc5afff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x92d000
    dependency: com.apple.iokit.IONDRVSupport(2.2)@0x960000
    dependency: com.apple.iokit.IOGraphicsFamily(2.2)@0x93e000
    BSD process name corresponding to current thread: Microsoft PowerP
    Mac OS version:
    10J567
    Kernel version:
    Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 404911465926
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI 4.1.5 (addr 0x1483000, size 0x65536) - last unloaded 107949333800
    loaded kexts:
    com.google.filesystems.fusefs 2.0.3 - last loaded 376650877354
    com.McAfee.kext.AppProtection 1.0.0d1
    com.vmware.kext.vmnet 3.1.2
    com.vmware.kext.vmioplug 3.1.2
    com.vmware.kext.vmci 3.1.2
    com.vmware.kext.vmx86 3.1.2
    com.mcafee.kext.Virex 1.0.0d1
    MonitorControl.drv 1.0d3
    com.apple.filesystems.udf 2.1
    com.apple.driver.AppleHWSensor 1.9.3d0
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AppleBluetoothMultitouch 54
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.driver.AppleHDA 1.9.9f12
    com.apple.driver.AGPM 100.12.19
    com.apple.driver.AppleUpstreamUserClient 3.4.5
    com.apple.driver.AppleMCCSControl 1.0.17
    com.apple.driver.AppleMikeyDriver 1.9.9f12
    com.apple.driver.AudioAUUC 1.13
    com.apple.driver.AppleIntelHDGraphics 6.2.6
    com.apple.driver.AppleIntelHDGraphicsFB 6.2.6
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.6
    com.apple.GeForce 6.2.6
    com.apple.driver.ACPISMCPlatformPlugin 4.5.0d5
    com.apple.driver.AppleGraphicsControl 2.8.68
    com.apple.driver.AppleLPC 1.4.12
    com.apple.driver.MaxTranserSizeOverrideDriver 2.5.8
    com.apple.driver.AppleUSBTCButtons 200.3.2
    com.apple.driver.AppleUSBCardReader 2.5.8
    com.apple.driver.AppleIRController 303.8
    com.apple.driver.AppleUSBTCKeyboard 200.3.2
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.iokit.IOAHCIBlockStorage 1.6.3
    com.apple.driver.AppleUSBHub 4.1.7
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AirPortBrcm43224 426.36.1
    com.apple.iokit.AppleBCM5701Ethernet 2.3.9b6
    com.apple.driver.AppleEFINVRAM 1.4.0
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleUSBEHCI 4.1.7
    com.apple.driver.AppleAHCIPort 2.1.5
    com.apple.driver.AppleACPIButtons 1.3.5
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.5
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.13.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.13.0
    com.apple.driver.AppleHIDKeyboard 141
    com.apple.driver.IOBluetoothHIDDriver 2.3.8f7
    com.apple.driver.AppleMultitouchDriver 207.10
    com.apple.driver.DspFuncLib 1.9.9f12
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.nvidia.nv50hal 6.2.6
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IOSurface 74.2
    com.apple.iokit.IOBluetoothSerialManager 2.3.8f7
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.8.0fc1
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.9.9f12
    com.apple.iokit.IOHDAFamily 1.9.9f12
    com.apple.NVDAResman 6.2.6
    com.apple.driver.AppleSMC 3.1.0d3
    com.apple.driver.IOPlatformPluginFamily 4.5.0d5
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.iokit.IONDRVSupport 2.2
    com.apple.iokit.IOGraphicsFamily 2.2
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.3.8f7
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.8f7
    com.apple.iokit.IOBluetoothFamily 2.3.8f7
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBMassStorageClass 2.6.5
    com.apple.driver.AppleUSBMultitouch 206.6
    com.apple.iokit.IOUSBHIDDriver 4.1.5
    com.apple.driver.AppleUSBMergeNub 4.1.5
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.5
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 4.1.5
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IO80211Family 312
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOUSBFamily 4.1.7
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.driver.AppleEFIRuntime 1.4.0
    com.apple.iokit.IOHIDFamily 1.6.5
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 289
    com.apple.iokit.IOStorageFamily 1.6.2
    com.apple.driver.AppleACPIPlatform 1.3.5
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f16
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 465.76 GB
    Serial ATA Device: MATSHITADVD-R UJ-898, 5.6 MB
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfa100000
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0237, 0xfa140000
    USB Device: ImageMate 12 in 1 Reader/Writer, 0x0781 (SanDisk Corporation), 0x8989, 0xfa144000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0xfa130000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0xfa120000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8218, 0xfa113000
    USB Device: Hub, 0x0424 (SMSC), 0x2514, 0xfd100000
    USB Device: My Book, 0x1058 (Western Digital Technologies, Inc.), 0x1102, 0xfd130000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0xfd110000

    I "fixed" it, I did a fresh install and restore and that power point issue is gone.  It works now without crashing but I am using Snow Leopard 10.6.4 now instead of 10.6.7.  I'm going to update and see what happens.

  • Can Lookout Operate in any way with multiple monitors/video boards in one computer?

    Windows supports multie monitors in varios wasy. Can I utilize Lookout with this functionality?

    Using one webclient screen and a Lookout screen.  All versions after 5.1 can only run one instance of Lookout.  You can create a webclient version and display it in fullscreen.
    Mike
    Mike Crabtree - Lead Developer
    Destek of Nevada, Inc. / Digital Telemetry Systems, Inc.
    (866) 964-6948 / (760) 247-9512

Maybe you are looking for

  • Como identificar se um imposto no B1 é retido na fonte ou não?

    Caros, preciso fazer um relatório demonstrando os valores de impostos retidos na fonte e o valor dos impostos não retidos. Como identifico no B1 que o imposto deve ser retido? Grato

  • Next N97 firmware update?

    It has  been ages since I got my N97 and yes we all know that Nokia admitted that it was a complete failure as a phone let allone a flagship but still they could help in removing the bitterness from us a little bit. It has been ages (or it seems so)

  • Sourced SC showing in Buyer's Worklist

    Is that a standard behavior that sourced SC are visible in the Buyer's worklist in SOCO? They have zero quantity and cannot be selected for sourcing, although they are visible in there untill deleted by the buyer manually out of the Worklist. We are

  • BorderLayout right approach?

    I asked a question wrt BorderLayout in the programming forum and was asked to post such questions here. Basically I have a JFrame and I want to put a JPanel in the middle of it. I tried using BorderLayout.CENTER but the default center behavior is to

  • Firefox will not connect to websites, it opens but will not go to sites, just keeps cycling

    None of the browsers (Firefox, IE or Chrome) will connect to websites. They open but just keep cycling