Hi Friends, This also gonna be small tutorial. if you want to pass some parameters to windows bat file.what would you do. let me explain first open new text file and type @echo off in windows environment %0 is file name let me make you short list this
1 2 3 4 5 6 7 8 9 10 |
%0 file name %1 first parameter %2 second parameter %3 Third Parameter |
Lets go through quick scenario.I…