In WSH, how can I parse multiple presses like ALT-CTRL-DEL?
With SendKeys, you can't. I told you about it .
Regarding sending multiple keys - please read the documentation at SendKeys()
MSDN . It's not hard to find out.
There may be an ActiveX component somewhere that can take screenshots for you, but with scripting using vanilla Windows this is not possible.
source to share
Yes, I think, as Tomalak said, what you are trying to do is likely to require invoking an ActiveX component using the CreateObject command.
I would advise you, though usually when you get to the point where your script is trying to call applications (Word) and take screenshots ... it's time to invest in some development software (Visual Studio or whatever) and write actual application.
If you're totally in the mood for it, DevGuru has a decent help page for the CreateObject command.
source to share