Disable laptop's display on boot when used with external display

21,919

Solution 1

The free command-line utility Display Changer can be used to write a batch file that will set the external monitor to be the primary.

You could then add the batch file to Start / Programs / Startup, so it runs every time.

Test first if the script fails when the external monitor is not connected, so as not to leave you without a monitor in this case.

Solution 2

You need to disable built-in display in Device Manager.

Turn off the Screen Permanently

BUT!!! - Do not disable the monitor unless you have already installed and verified the functionality of a secondary monitor. Once disabled from the "Device Manager," the main screen will not turn back on automatically, even when an external screen is unplugged.

I would suggest the next 2 methods:

  1. Switch to an external monitor by pressing Windows + P keys.
  2. Configure power options to use external display when closing LID.
Share:
21,919
Chris Bain
Author by

Chris Bain

Updated on September 18, 2022

Comments

  • Chris Bain
    Chris Bain over 1 year

    I keep my laptop tucked away and solely use an external display with it via HDMI. In Windows 7 display settings, I have it set up to "Show desktop only on 2 [my external display]" This works fine in all cases except when I boot the laptop when the external display is already connected. In that case, the laptop's display stays on and sticks at the Windows 7 boot logo unless I manually shut the display off. (I should mention that while the laptop's display is stuck at the boot logo, the external monitor and computer are running just fine.)

    The laptop is an Asus N56VZ with Nvidia 650m graphics and the latest drivers. I've checked Nvidia's control panel as well as the BIOS and nothing looked very promising.

    Any ideas as to how I can get my laptop screen to shut itself off after booting into Windows?

    Edit 1 For clarification, if I boot the laptop without the external display plugged in, and THEN plug in the HDMI, the laptop screen shuts off and the external monitor works as it should.

    Edit 2 Thanks to the answer from @harrymc I now have something working. I created a batch that switches the laptop display to primary and then back again (Simply setting the external display to primary doesn't work and the laptop screen stays "stuck"):

    ECHO OFF
    TIMEOUT /T 2 /NOBREAK
    DisplaySwitch.exe /internal
    TIMEOUT /T 2 /NOBREAK
    DisplaySwitch.exe /external
    

    Unfortunately, the change in resolutions causes my windows/icons to become messed up which then need to be resized, so it's really just trading one annoyance for another.

    On to more testing!

    • Volodymyr Molodets
      Volodymyr Molodets over 11 years
      Just to clarify: have you tried to set external display as a main display and then rebooting to see what happens?
    • Chris Bain
      Chris Bain over 11 years
      @inhabitant Yes, my external display is set as the main display
  • Chris Bain
    Chris Bain over 11 years
    I do not want to permanently disable the laptop display, just automatically shut it off when there is an external monitor present on boot. This is usually how Windows handles this situation, but with this particular laptop the display gets stuck at the boot logo and doesn't shut off.
  • Volodymyr Molodets
    Volodymyr Molodets over 11 years
    Maybe, creating two different hardware profiles is what you need in this very case. First one - will be default, with built-in display enabled. Second one - custom profile - with built-in display disabled.
  • Chris Bain
    Chris Bain over 11 years
    This is Windows 7... no hardware profiles.
  • Chris Bain
    Chris Bain over 11 years
    See my edit above. I used the built-in displayswitch.exe with some success. Thanks for the suggestion.
  • harrymc
    harrymc over 11 years
    Display Changer can also use resolution.
  • Chris Bain
    Chris Bain over 11 years
    It was an issue with the swapping of the lower-resolution laptop display and the higher-resolution external display. I think it's sorted now. Thanks for the solution!
  • vonbrand
    vonbrand over 11 years
    This should be a comment (yes, you can't comment yet).
  • Kit Johnson
    Kit Johnson almost 7 years
    The link you provided is broken. It's always a good idea to summarise the steps provided by external articles, in case this happens.
  • Vesanto
    Vesanto over 3 years
    Turn off the Screen Permanently link is broken.