I wish to have a batch file in my SendTo menu (win7). I want to right click a bunch of files and send them to this batch file which will then concatenate their file names into one long string with a + sign between, like so
filepath1+filepath2+filepath3....
Something like this is getting close but I don't know how to separate each parameter
for %%i in (%*) do echo %* > names.txt