How to disable flashing popup logo Dell Display Manager (DDM) application

Post Reply
tong
Site Admin
Posts: 2387
Joined: Fri 01 May 2009 8:55 pm

How to disable flashing popup logo Dell Display Manager (DDM) application

Post by tong »

SAM_5576.JPG snap0828.png snap0829.png How to disable flashing popup logo

While holding down the SHIFT key, right-click on the DDM system tray icon and uncheck "Onscreen notifications" in the popup menu.

Code: Select all

reg add "HKCU\Software\EnTech\DDM" /v ScreenNotifications /t REG_DWORD /d 0 /f
tong
Site Admin
Posts: 2387
Joined: Fri 01 May 2009 8:55 pm

Re: How to disable flashing popup logo Dell Display Manager (DDM) application

Post by tong »

How to fix toolbar mess up in xplorer2

Code: Select all

reg add "HKCU\Software\EnTech\DDM" /v RestoreWindowLayout /t REG_DWORD /d 0 /f

The display driver wakes the monitor up with a safe, low resolution and then switches to the native higher resolution.

It has an undocumented feature that can reduce, if not eliminate, the annoyance of having to manually rearrange your open windows: add the value "RestoreWindowLayout" to HKEY_CURRENT_USER\Software\EnTech\DDM and set it to 1 (dword).

You'll need to have at least v1.22.1554 of DDM for this to work.

In a nutshell, this switch does is tell DDM to store your open window positions when the monitor powers down, and then to restore them when the monitor wakes up again.

08/10/2015 - 1.25.1612
- Enabled RestoreWindowLayout by default
Post Reply