Do someone knows how to add the action to be triggered when calling my batch file with the /? argument ? I've always used the -h to display usages, but for once I need my -h arg for something else.
EDIT : Actually I've tried by parsing attributes like this
for %%i in (%*) do ....
But the /? argument was skipped, I'll try yours solutions to see if it's different.
Btw, why when you parse %%i the /? args is skipped ?