Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get the list of opened of folders, enumerate through it and minimize each folder programmatically?

At times some opened folders do steal focus from the tool when jumping from one form in the application to another. Preventing this is of high priority for our client. The customers are visually impaired people, so they access the machine only via screen readers. Minimizing other windows (folders) is not at all a problem, in fact a requirement.

I tried this:

foreach (Process p in Process.GetProcessesByName("explorer"))
{
    p.StartInfo.WindowStyle = ProcessWindowStyle.Minimized;
}

As expected it did no good.

Update:

From the answers here, I tried this:

    delegate bool EnumThreadDelegate(IntPtr hWnd, IntPtr lParam);

    [DllImport("user32.dll")]
    static extern bool EnumThreadWindows(int dwThreadId, EnumThreadDelegate lpfn, IntPtr lParam);

    static IEnumerable<IntPtr> EnumerateProcessWindowHandles(int processID)
    {
        List<IntPtr> handles = new List<IntPtr>();

        EnumThreadDelegate addWindowHandle = delegate(IntPtr hWnd, IntPtr param)
        {
            handles.Add(hWnd);
            return true;
        };

        foreach (ProcessThread thread in Process.GetProcessById(processID).Threads)                              
            EnumThreadWindows(thread.Id, addWindowHandle, IntPtr.Zero);

        return handles;
    }

    const int SW_MINIMIZED = 6;

    [DllImport("user32.dll")]
    static extern int ShowWindow(IntPtr hWnd, int nCmdShow);

    private void button1_Click(object sender, EventArgs e)
    {
        foreach (IntPtr handle in EnumerateProcessWindowHandles(Process.GetProcessesByName("explorer")[0].Id))
            ShowWindow(handle, SW_MINIMIZED);
    }

This creates a whole lot of invisible explorer windows to be suddenly listed in the taksbar out of no where. I am bit noob in dealing with Windows API, so the code itself will actually help.

share|improve this question
You need to send a message to the window, this has to be done at Windows API level. – Arjang Feb 13 '12 at 0:18
@Arjang can I see some code somewhere? – nawfal Feb 13 '12 at 0:21
1  
If I had the code it would have been an answer not a comment. Just wanted to be of assistance in a better google search. – Arjang Feb 13 '12 at 1:54

3 Answers

up vote 3 down vote accepted
+100

Please try this (the code is somewhat messy but for the purpose you should be able to go through it ;))

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Text;
using System.Globalization;

namespace WindowsFormsApplication20
{
    static class Program
    {
        [STAThread]
        static void Main()
        {
            foreach (IntPtr handle in EnumerateProcessWindowHandles(Process.GetProcessesByName("explorer")[0].Id))
            {
                SendMessage(handle, WM_SYSCOMMAND, SC_MINIMIZE, 0);
            }
        }

        [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
        static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount);

        static string GetDaClassName(IntPtr hWnd)
        {
            int nRet;
            StringBuilder ClassName = new StringBuilder(100);
            //Get the window class name
            nRet = GetClassName(hWnd, ClassName, ClassName.Capacity);
            if (nRet != 0)
            {
                return ClassName.ToString();
            }
            else
            {
                return null;
            }
        }

        delegate bool EnumThreadDelegate(IntPtr hWnd, IntPtr lParam);

        [DllImport("user32.dll")]
        static extern bool EnumThreadWindows(int dwThreadId, EnumThreadDelegate lpfn, IntPtr lParam);

        static IEnumerable<IntPtr> EnumerateProcessWindowHandles(int processID)
        {
            List<IntPtr> handles = new List<IntPtr>();

            EnumThreadDelegate addWindowHandle = delegate(IntPtr hWnd, IntPtr param)
            {
                string className = GetDaClassName(hWnd);

                switch (className)
                {
                    case null:
                        break;
                    case "ExploreWClass":
                        handles.Add(hWnd);
                        break;
                    case "CabinetWClass":
                        handles.Add(hWnd);
                        break;
                    default:
                        break;
                }

                return true;
            };

            foreach (ProcessThread thread in Process.GetProcessById(processID).Threads)
                EnumThreadWindows(thread.Id, addWindowHandle, IntPtr.Zero);

            return handles;
        }

        [DllImport("user32.dll", CharSet = CharSet.Auto)]
        static extern IntPtr SendMessage(IntPtr hWnd, UInt32 Msg, int wParam, int lParam);

        const int WM_SYSCOMMAND = 274;
        const int SC_MINIMIZE = 0xF020;
    }
}

Best regards,

Żubrówka

share|improve this answer
Let me try that one! Thanks :) – nawfal Feb 24 '12 at 16:42
I can't believe, it just worked! :) – nawfal Feb 24 '12 at 16:46
Before I award you the bounty, let me ask you, what should be done to minimize other open windows, say all MS Excel windows (using the very same shell API? – nawfal Feb 24 '12 at 16:49
1  
You're very welcome nawfal :) – Żubrówka Feb 24 '12 at 17:14
1  
GetDaClassName function is the key here. It gives the exact handle to be minimized! And yes, I can minimize any application I wish hence. Work of a genius, take my 100 points bro (in 13 hours) ! ;) – nawfal Feb 24 '12 at 17:25
show 5 more comments

//Create Instance Of Shell Class by referencing COM Library "Microsoft Shell Controls And Automation" -shell32.dll

Shell32.ShellClass objShell = new Shell32.ShellClass();
//Show Desktop
((Shell32.IShellDispatch4)objShell).ToggleDesktop();

Edit: to show your application (Activate or Maximize/Restore) after toggling actually turned out to be quite difficult:

I tried:

Application.DoEvents();

System.Threading.Thread.Sleep(5000);

Even overriding the WndProc didn't manage to capture the event:

private const Int32 WM_SYSCOMMAND = 0x112;
        private const Int32 SC_MINIMIZE = 0xf020;
        protected override void WndProc(ref Message m)
        {
            if (m.Msg == WM_SYSCOMMAND)
            {
                if (m.WParam.ToInt32() == SC_MINIMIZE)
                    return;
            }
            base.WndProc(ref m);
        }

So I suggest instead of Minimising all other windows, just stick yours on top during the operation, then once your finished turn off Always On Top:

  [DllImport("user32.dll")]
    static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags);

static readonly IntPtr HWND_TOPMOST = new IntPtr(-1);

const UInt32 SWP_NOSIZE = 0x0001;
const UInt32 SWP_NOMOVE = 0x0002;
const UInt32 TOPMOST_FLAGS = SWP_NOMOVE | SWP_NOSIZE;

public static void MakeTopMost (IntPtr hWnd)
{
    SetWindowPos(hWnd, HWND_TOPMOST, 0, 0, 0, 0, TOPMOST_FLAGS);
}
share|improve this answer
This minimizes everything including my app. this.Activate doesn't bring it to front – nawfal Feb 13 '12 at 1:26
sorry it should be this.WindowState = FormWindowState.Maximized; – Jeremy Thompson Feb 13 '12 at 1:48
No way. it still keeps my form in the bottom :( – nawfal Feb 13 '12 at 2:10
@nawfal - yes, your right and this was a PITA. Please see my edited answer. I hope its a suitable workaround. – Jeremy Thompson Feb 13 '12 at 4:38
This doesn't still work. Sorry for the delay in reply. It minimizes all the windows to show desktop, even taking the focus from the application. Previously I used to get the focus. I do not know what is happening under the hood. – nawfal Feb 24 '12 at 7:08

If you are willing to use p-invoke you can use EnumThreadWindows to enumerate all windows of a process. Then use ShowWindow to minimize them.

share|improve this answer
Thanks.Let me try that – nawfal Feb 13 '12 at 0:23
Is this to enumerate through all general windows? or just folder windows? – nawfal Feb 13 '12 at 0:43
You can enumerate all topmost windows of a specific process using this method. In your case all windows belonging to the explorer. You need to get a handle to the main thread of the process. – rasmus Feb 13 '12 at 0:48
Hey ramsus can you post little bit of the code itself, I can not get to do this. – nawfal Feb 13 '12 at 0:50
1  
There is another question about this. – rasmus Feb 13 '12 at 0:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.