-2

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.

David L.
  • 2,095
  • 23
  • 23
user1724668
  • 1
  • 1
  • 1

1 Answers1

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