I have created a executable file lets say 'Startbackup.exe' and it is located in 'D:\Start Backup\Startbackup.exe'
What i am trying to acheive is to create a bactch file to start this .Exe uisng defualt paramter . My parameter is 'Startbackup/run'.
I tried following command in cmd and it works.
How can i create a .bat file? I have tried following but its not working
Start /D D:\Start Backup\ Startbackup Parameter Startbackup/run 
Start /D "D:\Start Backup". Ifstartbackup/runworks then it appears that/runis your parameter, so all you need is to append that, with an optional/empty title, e.gStart /D "D:\Start Backup" startbackup /runorStart /D "D:\Start Backup" "" startbackup /run.