WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

Ctrl Alt Del Issues

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

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
File Created: 1999:04:15:16:52:10
Last Updated: 1999:04:15:16:52:10