What I am trying to do is take whatever is in parameter %1 when the bat file is called and put it on the windows clipboard without changing it.
echo %1 | clip
Works but adds the linefeed/carriage return at the end.
set /p = %1 | clip
Does not change the text at all, unless the user types something other then just the Enter key, but it waits for the user input. |