I want to create a batch file, where I automatically press CTRL+s every few minutes. until now I have
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
How can I send them together?
%SendKeys%refer to the script from stackoverflow.com/questions/17038282/…?