MartinK 2014-10-29 00:06
Due to company restrictions, i have to reset Windows Explorer every time i change the wallpaper (long story).
After Explorer.exe is restarted, the 'Always on top' rule is ignored / fails.
if i then disable and re-enable 'always on top', it works again.
|
Christian Studer 2014-10-29 14:10
Which version of UltraMon and Windows are you using?
I tested on Windows 7 with UltraMon 3.2.2, but so far haven't seen this issue. explorer.exe was closed and restarted via Task Manager.
Christian Studer - www.realtimesoft.com
|
MartinK 2014-11-03 05:39
Windows 7 x64 Professional, Ultramon 3.2.2
I use LinqPad (Administrator) to restart Explorer.exe:
public void RestartExplorer()
{
Process p = new Process();
foreach (System.Diagnostics.Process exe in System.Diagnostics.Process.GetProcesses())
{
if (exe.ProcessName == "explorer")
exe.Kill();
}
}
|
Christian Studer 2014-11-03 14:17
I'm still not seeing this issue, also when killing explorer.exe using your code (compiled in Visual Studio).
Do you have the same issue if you restart explorer.exe via Task Manager?
Christian Studer - www.realtimesoft.com
|