hi, I've been using auto it for years but I'm a little stumped.   I'm trying to find a short and sweet way to get the windows associated with a process and find out what process is associated with a window. ideally I'd like functions like:   $process = "Firefox.exe" $windowHandle = [some window handle ] GetProcessFromWindowHandle($windowHandle) (returns the name of a process) GetWindowHandlesFromProcess($process) (returns an array with a list of all the windows associated with the process)   any