Is there way to hide the windows dictation dialog after finish with it?

Jarred Zhang 10 Reputation points
2024-08-03T02:39:50.1733333+00:00

So every time I activate and open up the Windows dictation (/via Win + H ) it will open up a small popup dialog then when I'm done or finished with it, it's still being left on the screen and I have to close it every time manually. I was just wondering if there is a way to let it like automatically hide after once it's done/finished. Maybe a setting/script to write to tamper it?

Thank you in advance for any recommendations!

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
12,077 questions
0 comments No comments
{count} vote

2 answers

Sort by: Most helpful
  1. Jarred Zhang 10 Reputation points
    2024-08-05T06:45:09.13+00:00

    Wow thanks! That's a great idea. I installed autohot key 1.1, created and ran the script, but...it didn't seem to work. It still stays on the screen after 5 seconds of being inactive.

    1 person found this answer helpful.
    0 comments No comments

  2. S.Sengupta 22,536 Reputation points MVP
    2024-08-05T02:12:56.93+00:00

    Download and install AutoHotkey and create an AutoHotkey script.

    #Persistent
    SetTimer, CheckDictationWindow, 5000  ; Check every 5 seconds
    
    CheckDictationWindow:
    If WinExist("Dictation")
    {
        WinGetActiveStats, ActiveTitle, ActiveWidth, ActiveHeight, ActiveX, ActiveY
        If (ActiveTitle != "Dictation")
        {
            WinClose, Dictation
        }
    }
    return
    
    

    Save the file with a .ahk extension and run the script.

    This script checks every 5 seconds if the dictation window exists and isn't the active window, and closes it if so.

    You could also try Microsoft's PowerToys which includes a FancyZones feature that can be used to automatically minimize or hide windows in certain screen areas.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.