Maybe a bit off topic but there should be some programmers around here.
OS is XP Pro x64
I have a small .bat program I am trying to run from the right click menu. It works fine but it hangs up in the dos screen, no prompt showing, I hit enter and it completes and the text shows up in the Windows clipboard.
Any ideas on how to get it to not wait for the enter key.
Code:
@echo off
set /p = %1 | clip
exit