Hello All
Requirement:
I want to create a batch file wich will capture keboard values and write somwhere in text.
E.g- If I run a batch file and what ever keys i will press on my keyboard should get write in a file.
Thanks in advance[color=green][/color]
How to capture keyboard value and write in a file???
Moderator: DosItHelp
-
- Posts: 5
- Joined: 10 Sep 2009 22:53
-
- Posts: 5
- Joined: 15 Jan 2010 20:46
- Contact:
Well, you could do this...
Code: Select all
@ECHO OFF
set /p whatever=
ECHO."%whatever%">> "whatever.txt"