Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details

If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.

Search found 2 matches

by skeeter007
Fri Mar 25, 2016 3:13 pm
Forum: General Support
Topic: Prevent Emulate Keystrokes from triggering System.UnIdle
Replies: 2
Views: 1578

Re: Prevent Emulate Keystrokes from triggering System.UnIdle

Thanks DanRoss! I didn't end up using AutoIt but instead wrote 2 powershell scripts that get executed as command line actions:

minimize_all_windows.ps1:
$shell = New-Object -ComObject "Shell.Application"
$shell.MinimizeAll()


undo_minimize_all_windows.ps1:
$shell = New-Object -ComObject "Shell ...
by skeeter007
Thu Mar 24, 2016 2:24 pm
Forum: General Support
Topic: Prevent Emulate Keystrokes from triggering System.UnIdle
Replies: 2
Views: 1578

Prevent Emulate Keystrokes from triggering System.UnIdle

I'm trying to make EventGhost minimize all Windows on System.Idle and then restore them on System.UnIdle.

The problem is, when I emulate {Win+M} on System.Idle, it immediately triggers System.UnIdle. Is there a way to prevent this?