Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsWindows VistaWindows XPWindows MeWindows 98Windows 95Virtual PCInternet ExplorerOutlook ExpressWindows MediaSecurity
Related Topics
MS Server ProductsMS OfficePC HardwareMore Topics ...

Windows Forum / Windows Vista / General Topics / November 2008

Tip: Looking for answers? Try searching our database.

Vista logon changes Dual monitor display settings

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
sgk00 - 18 Mar 2007 17:51 GMT
I use an external monitor with my laptop for a dual monitor extended desktop.
I want the external monitor to be the primary.  This is easily setup via my
video driver software, windows display settings, or third party SW like
UltrMon.  The problem is at logon Windows Vista resets the display settings
to make the Laptop screen the primary display, and changes the "layout" of
the monitor locations, and sometimes the refresh rate of the external
monitor.  This happens at any logon whether from system restart or a simple
logon from locking the system.  

I experimented with UltraMon to see if simply forcing the display settings I
want via the StartUp menu would work.  It appears the change Vista causes
happens after the services and StartUp programs load.  This seems consistent
with the fact that a simple unlock logon causes the same problem.

Note: the reset occurs at the end of the logon sequence.  The logon screen
itself is always positioned correctly, and the desktop is redrawn properly on
both monitors until the end of the sequence when the display is changed.

System Info:  Dell XPS M1212 Laptop, NVidia Ge Force Go 7400 Adapter, Dell
2007WFP external Monitor, Windows Vista Home Premium Upgrade, all latest
drivers from Dell and MS, clean system (only OEM as delivered software with a
by the book upgrade to Vista), software passed vista compatibility checks.
sgk00 - 22 Mar 2007 07:53 GMT
I think I solved my own problem.  After a second pass at selectively enabling
each service, I found that disabling "Windows Event Log" solved the
problem... at least for now.

Right click the Computer Icon, select Manage, open Services and
Applications, open the Services snap in, find "Windows Event Log", right
click "Windows Event Log", select Properties, in the dialog select Disable.  
The restart.

Hope this helps others

> I use an external monitor with my laptop for a dual monitor extended desktop.
>  I want the external monitor to be the primary.  This is easily setup via my
[quoted text clipped - 18 lines]
> drivers from Dell and MS, clean system (only OEM as delivered software with a
> by the book upgrade to Vista), software passed vista compatibility checks.
yerfttam@gmail.com - 12 Apr 2007 21:06 GMT
> I think I solved my own problem.  After a second pass at selectively enabling
> each service, I found that disabling "Windows Event Log" solved the
[quoted text clipped - 31 lines]
>
> - Show quoted text -

Found a different solution that I wanted to pass on.  For me, Nvidia
has a control panel that allows you to change the monitor
configuration.  It appears that Windows and NVidia were fighting over
control, and Nvidia was winning.  So, I stopped changing the dual
monitor settings in Windows -- starting changing them in Nvidia, and
my problems went away.

HTH!
Thomas51 - 21 Apr 2007 00:06 GMT
I too was having the same problem with my laptop and an external
monitor.  Whenever I logged in, my display settings would get all get
reset.  

I tried disabling the Windows event log as suggested and that corrected
the monitor issue, but had some other unintended consequences.  By
disabling the event log, the Windows Task Scheduler also becomes
disabled, thus any applications dependent on the Task Scheduler won't
run.

After further research I found the root cause of the dual monitor
problem.  There is a task in the task scheduler called TMM (Microsoft
Transient Multi-Monitor Manager).  I disabled this task, and all seems
to work fine now.  

Hope this helps others.

Thomas

Signature

Thomas51

http://forums.techarena.in

Josh - 10 Jun 2007 07:12 GMT
Disabling TMM worked for me too, thanks a million!

But when TMM was off, it wouldn't detect if I had one plugged in when I
logged in or came out of sleep, which was helpful. So I came up with a few
modified settings of the TMM task. Basically, it tells TMM to run at log-on
and when coming out of sleep, but to turn off after a minute so it won't be
active during lock or unlocks. I still have to rearange every morning though.
Here it is.

<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2"
xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
 <RegistrationInfo>
   <Source>MobilePC Display Handling</Source>
   <Author>Microsoft Corporation</Author>
   <Description>Microsoft Transient Multi-Monitor Manager</Description>
   <URI>Microsoft\Windows\MobilePC\TMM</URI>
   
<SecurityDescriptor>D:(A;;FA;;;BA)(A;;FA;;;SY)(A;;FR;;;AU)</SecurityDescriptor>
 </RegistrationInfo>
 <Triggers>
   <LogonTrigger id="0023ede2-0e7c-42ce-ac3a-9872e974d53f">
     <ExecutionTimeLimit>PT1M</ExecutionTimeLimit>
     <Enabled>true</Enabled>
     <Delay>PT2S</Delay>
   </LogonTrigger>
   <EventTrigger id="b79242a8-a65d-434d-a58a-da06a95fa5d1">
     <ExecutionTimeLimit>PT1M</ExecutionTimeLimit>
     <Enabled>true</Enabled>
     <Subscription><QueryList><Query Id="0" Path="System"><Select
Path="System">*[System[Provider[@Name='Microsoft-Windows-Power-Troubleshooter'] and EventID=1]]</Select></Query></QueryList></Subscription>
     <Delay>PT2S</Delay>
   </EventTrigger>
 </Triggers>
 <Principals>
   <Principal id="Users">
     <GroupId>Authenticated Users</GroupId>
     <RunLevel>LeastPrivilege</RunLevel>
   </Principal>
 </Principals>
 <Settings>
   <IdleSettings>
     <Duration>PT10M</Duration>
     <WaitTimeout>PT1H</WaitTimeout>
     <StopOnIdleEnd>false</StopOnIdleEnd>
     <RestartOnIdle>false</RestartOnIdle>
   </IdleSettings>
   <MultipleInstancesPolicy>Parallel</MultipleInstancesPolicy>
   <DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
   <StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
   <AllowHardTerminate>true</AllowHardTerminate>
   <StartWhenAvailable>true</StartWhenAvailable>
   <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
   <AllowStartOnDemand>true</AllowStartOnDemand>
   <Enabled>true</Enabled>
   <Hidden>false</Hidden>
   <RunOnlyIfIdle>false</RunOnlyIfIdle>
   <WakeToRun>false</WakeToRun>
   <ExecutionTimeLimit>PT1M</ExecutionTimeLimit>
   <Priority>7</Priority>
 </Settings>
 <Actions Context="Users">
   <ComHandler>
     <ClassId>{35EF4182-F900-4632-B072-8639E4478A61}</ClassId>
   </ComHandler>
 </Actions>
</Task>

> I too was having the same problem with my laptop and an external
> monitor.  Whenever I logged in, my display settings would get all get
[quoted text clipped - 14 lines]
>
> Thomas
Nelson - 11 Jan 2008 10:28 GMT
Thank You, Thank You, Thank You, Thank You, Thank You, !!

Nvidia control panel, now, can manage the displays better.

Nelson

> I too was having the same problem with my laptop and an external
> monitor.  Whenever I logged in, my display settings would get all get
[quoted text clipped - 14 lines]
>
> Thomas
Sparkle - 03 Aug 2007 16:34 GMT
The layout problem was annoying me too, my external monitor kept defualting
to the right.  I have a DELL FP1905 Monitor and noticed that the monitor
driver was defaulting to the Generic PnP driver, then realized I never
installed the driver for this monitor.  Once I installed the Dell driver for
the FP1905 display (including restart, and updating the monitor layout
settings once more) it seems to work flawlessly now.  Vista must save layout
settings per driver type and only resets the settings associated with the
generic driver.

> I use an external monitor with my laptop for a dual monitor extended desktop.
>  I want the external monitor to be the primary.  This is easily setup via my
[quoted text clipped - 18 lines]
> drivers from Dell and MS, clean system (only OEM as delivered software with a
> by the book upgrade to Vista), software passed vista compatibility checks.
Nuegen - 02 Oct 2007 22:45 GMT
So I have removed Windows Event Log with vlite. But I still have this problem.

I can't remove TMM (Microsoft Transient Multi-Monitor Manager) because
Windows Task Scheduler is disabled, thus disabling all task schedules.

And I can't install a driver for my CT-934D monitor because they came with
no drivers. Searching didn't help.

So I ask, when is this going to be fixed?
_Tux_ - 18 Oct 2007 23:09 GMT
I found this problem to be caused by a registry setting created by the nvidia
drivers I installed.

It created a DWORD registry value in HKLM\Software\Microsoft\TMM called
UseIViewHelper and set it to 1. I renamed this key to "UseIViewHelper old",
rebooted and the problem is now gone.

When I login, the external monitor resolution stays as it should and if I
unplug it, Vista detects this and switches the laptop monitor back to be the
main desktop.

great!

> I use an external monitor with my laptop for a dual monitor extended desktop.
>  I want the external monitor to be the primary.  This is easily setup via my
[quoted text clipped - 18 lines]
> drivers from Dell and MS, clean system (only OEM as delivered software with a
> by the book upgrade to Vista), software passed vista compatibility checks.
-kds - 26 Oct 2007 17:05 GMT
Do you have any idea how to do a fix for non nvidia?  I have a dell w/ intel
integrated 965 and am getting truly annoyed...

Thanks!

> I found this problem to be caused by a registry setting created by the nvidia
> drivers I installed.
[quoted text clipped - 31 lines]
> > drivers from Dell and MS, clean system (only OEM as delivered software with a
> > by the book upgrade to Vista), software passed vista compatibility checks.
Cal - 13 May 2008 08:52 GMT
I too have the integrated 965 and am also truly annoyed! >:\

> Do you have any idea how to do a fix for non nvidia?  I have a dell w/ intel
> integrated 965 and am getting truly annoyed...
[quoted text clipped - 36 lines]
> > > drivers from Dell and MS, clean system (only OEM as delivered software with a
> > > by the book upgrade to Vista), software passed vista compatibility checks.
MICHAEL - 26 Oct 2007 17:14 GMT
Have a look at this thread;
http://forums.techarena.in/showthread.php?t=708148

Particularly this post;
<quote>
I too was having the same problem with my laptop and an external monitor. Whenever I logged in,
my display settings would get all get reset.

I tried disabling the Windows event log as suggested and that corrected the monitor issue, but
had some other unintended consequences. By disabling the event log, the Windows Task Scheduler
also becomes disabled, thus any applications dependent on the Task Scheduler won't run.

After further research I found the root cause of the dual monitor problem. There is a task in
the task scheduler called TMM (Microsoft Transient Multi-Monitor Manager). I disabled this
task, and all seems to work fine now.
</quote>

Do not disable the Event Log, but try going into Task Scheduler and
disabling  TMM (Microsoft Transient Multi-Monitor Manager).
That seems to have worked for me, too.

This has been just another very annoying Vista bug.

-Michael

* _Tux_:
> I found this problem to be caused by a registry setting created by the nvidia
> drivers I installed.
[quoted text clipped - 31 lines]
>> drivers from Dell and MS, clean system (only OEM as delivered software with a
>> by the book upgrade to Vista), software passed vista compatibility checks.
Karthick - 11 Nov 2007 16:47 GMT
Dot it from windows mobility center. It stays even if the computer is
restarted.

> Have a look at this thread;
> http://forums.techarena.in/showthread.php?t=708148
[quoted text clipped - 57 lines]
> >> drivers from Dell and MS, clean system (only OEM as delivered software with a
> >> by the book upgrade to Vista), software passed vista compatibility checks.
Fabricio Ferreira - 08 Feb 2008 15:08 GMT
Thank you _Tux_! That's completely solved my problem!
Signature

[]''''s
Fabrício Ferreira

> I found this problem to be caused by a registry setting created by the nvidia
> drivers I installed.
[quoted text clipped - 31 lines]
> > drivers from Dell and MS, clean system (only OEM as delivered software with a
> > by the book upgrade to Vista), software passed vista compatibility checks.
JRunner01 - 18 Nov 2008 15:31 GMT
This was exactly what fixed my display issues with logging back in or
rebooting my notebook and having Vista screw up my dual monitor settings.  
Now I adjust everything from NVIDA panel and all is good again.  THANKS!!!!

> I found this problem to be caused by a registry setting created by the nvidia
> drivers I installed.
[quoted text clipped - 31 lines]
> > drivers from Dell and MS, clean system (only OEM as delivered software with a
> > by the book upgrade to Vista), software passed vista compatibility checks.
JRunner01 - 19 Nov 2008 15:11 GMT
At first it seemed like it worked... now its back again.  I tried both
suggestions here, disabling the TMM and renaming the registry key.  Still no
luck.  HELP!

> This was exactly what fixed my display issues with logging back in or
> rebooting my notebook and having Vista screw up my dual monitor settings.  
[quoted text clipped - 35 lines]
> > > drivers from Dell and MS, clean system (only OEM as delivered software with a
> > > by the book upgrade to Vista), software passed vista compatibility checks.
helmetheadcyclegear - 25 May 2008 22:12 GMT
Disabling TMM in Task Scheduler worked for me on my laptop.  I searched
all over the place for a solution and am glad that I stumbled upon this
page for help.  To access Task Scheduler in Vista, go to the Start Menu
and type in Task Scheduler. In the 'Task Scheduler Library', select
Microsoft->Windows->MobilePC.  Right click 'TMM' and select 'Disable'.
You will need to log out and then log back in for changes to take
effect.  After you finish doing that, you may want to browse 'HelmetHead
Cycle Gear™ Motorcycle Accessories' (http://www.helmetheadcyclegear.com)
for motorcycle/scooter accessories.  :-)

Signature

helmetheadcyclegear

 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.