BlueFireZ said:
Lately, when I turn on my computer the monitors lose their signals just
before the welcome screen comes up. They are fine before that.
If I reboot the computer the monitors work fine. They only lose the signal
about one in four times when I turn on the computer.
What could be happening?
Thanks
A further reason, other than those mentioned by Malke and V Green, could be
that your display settings assume a value that is incompatible with your
monitor. Here is how you can find out:
1. Mark the code below with your mouse.
2. Click Start / Run and type this command:
Notepad "%UserProfile%\Start Menu\Programs\Startup\Display.bat"
3. Click OK and allow a new file to be generated.
4. Click Edit+Paste to get the code into the notepad screen.
5. Save and close the file.
Windows will now record your display settings each time you log on. To
examine the settings, open the file c:\Display.txt. You will see lines such
as this one:
Sun 05/04/2009 18:41:29 Display=768Hx1024Wx16 colours
Are they the same each time?
@echo off
set VB=echo ^>^>c:\TempVBS.vbs 0>c:\TempVBS.vbs
%VB% Set oWMIService=GetObject("winmgmts:\\.\root\CIMV2")
%VB% Set cItems = oWMIService.ExecQuery( _
%VB% "SELECT * FROM Win32_DisplayConfiguration",,48)
%VB% For Each oItem in cItems
%VB% Wscript.Echo Date(), Time(), "Display=" ^& ^
oitem.PelsHeight ^& "Hx" ^& oItem.PelsWidth ^& ^
"Wx" ^& oItem.BitsPerPel ^& " colours"
%VB% Next
cscript //nologo c:\TempVBS.vbs
del c:\TempVBS.vbs