Wilson WindowWare Tech Support

WinBatch WinBatch+Compiler WebBatch
Home | Tech Database | Tech BBS | White Papers | Purchase


How to Get the "Close Program" Window to Pop Up

Keywords: Close Program Window 

Question:

I use a remote control program that allows me to run Windows on a remote computer over internet. The remote control does not allow me to do a "Ctrl-Alt-Del" on the remote computer. The reason that I would like to do this is to get to the "Close Program" window so that I can terminate some programs running in the background. Is it possible using Winbatch to get the "Close Program" window to pop up? I tried just doing this and it did not work. I tried doing a Control Alt Delete to get "Close Program" window, with SendKey("^+!+{del}") Exit, but that didn't work. Any suggestions?

Answer:

You might try something like
list=WinItemize()
thisone=AskItemList("Close",list,@tab,@sorted,@single)
if thisone=="" then exit
WinClose(thisone)

Article ID:   W13163
Filename:   Get the Close Program Window to Pop Up.txt