I am looking for a way to send specific text to clipboard with specific keys, this is the closest I got, I only cannot find how I can make one of those commands be a combination like ALT+D for example:
@echo off
color 0a
title KeyStrokeSim
goto Start
:Start
cls
echo Press D or F to continue...
choice /c df /n
if %errorlevel%==1 goto Finished1
if %errorlevel%==2 goto Finished2
:Finished1
echo|set /p=youpressedD|clip
goto Start
:Finished2
echo|set /p=youpressedF|clip
goto Start
It is needed for a large number of commands so i am avoiding the windows shortcut alternative. Thanks