Make a little proggie using function EnumWindows:
BOOL EnumWindows(
WNDENUMPROC lpEnumFunc, // pointer to callback function
LPARAM lParam // application-defined value
);
This enumerates all windows on the screen, and your callback gets handle to each, so you can find and do anything you need