I need a batch file that can continuously hit the enter key over and over. I honestly don't know the first thing about batch files but I am pretty sure this can be done.
Asked
Active
Viewed 2,792 times
1 Answers
0
Have a look at SendKey.NET freeware automation tool :
@echo off
start notepad.exe
SendKeys Hello World!{enter}
AutoIt automation and scripting language might also help, it can simulate keystrokes.

David L.
- 2,095
- 23
- 23