我想创建一个批处理文件,每隔几分钟我会自动按 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
我如何将它们一起发送?
答案 0 :(得分:2)
%SendKeys% "^s"
请http://msdn.microsoft.com/en-us/library/8c6yea83%28v=vs.84%29.aspx查看WshShell.SendKeys
的完整键和修饰符列表。