Can certain windows be "anchored" in Windows 7?

Solution 1:

You could also conceivably create an AutoHotKey script that would just wait around for certain window types to appear, then relocate them... Something like this:

Loop
{
    WinWait, ahk_class #32770
    IfWinExist
    {
        WinMove, 0, 0       ; move the window to the top left
    }
}

Solution 2:

Download Resource Hacker or Resource Tuner.

Take ownership of %windir%\System32\en-US\Shell32.dll.mui Then open it in one of the above programs.

You probably want dialog 1131, search for Progress

The position is set to 0, 0 which means it should be at the center of the screen. Change those numbers around to suite your needs.

"Then save the file at some other location. At last rename default file to some other name like "imageres_bak.dll" and copy new modified file to the same folder. restart your system and Windows will start using the new file."

Good luck, you'll need it. This is no quick fix.