如何使用Batch发送快捷键

时间:2015-01-12 11:52:28

标签: batch-file

我想创建一个批处理文件,每隔几分钟我会自动按 CTRL + s 。 到现在为止我已经

set /a i=0
:start
if /I %i% GEQ 10 goto :next
%SendKeys% "{^}"
%SendKeys% "{s}"
ping 1.1.1.1 -n 1 -w 300000 > nul
goto :start
:next

我如何将它们一起发送?

1 个答案:

答案 0 :(得分:2)

%SendKeys% "^s"

http://msdn.microsoft.com/en-us/library/8c6yea83%28v=vs.84%29.aspx查看WshShell.SendKeys的完整键和修饰符列表。