For months i have had a Windows Update stall. For months i've seen Windows Installer stuck trying to do something:

Every time i reboot it leaves an orphaned folder in the root of my C: drive:

i see that Document Explorer was launched by Windows Installer with a /setup command line option:
"c:\Program Files (x86)\Common Files\Microsoft Shared\Help 8\dexplore.exe" /setup /log "C:\Windows\TEMP\VS1.tmp"
Today i finally looked into it, and the problem is that Document Explorer is stuck showing a message box:

How can i click OK on a dialog box, that is running under the context of NT AUTHORITY\SYSTEM, and probably running on another desktop?
Note: Windows has provided no mention that a service is showing a message box - offering to let me switch to Session 0 desktop.
.
psexec -desi tscon <sessID>to connect yourself to the other session... (before you do that, ensure you have a way back:psexec -desi <sessID> cmd) – grawity Jul 25 '11 at 12:01psexec -desi tscon 0. Unfortunately all that happens in a console window flashes up; i cannot read what i presume is an error message. But my console does saytscon started on HARPAX with process ID 7460., but the process closes immediately. – Ian Boyd Jul 26 '11 at 2:55-deoptions (psexec -si tscon 0). It should run the process in the same console. (I'm not sure why I added-dein the first place.) – grawity Jul 26 '11 at 9:10