Menu
  • HOME
  • TAGS

Execute a batch file before executing in a shortcut (.lnk)

windows,batch-file,lnk

Supply program with parameters to your batch script as follows C:\Siemens\NX10\UGII\setup_NX10_environment.bat "C:\Siemens\NX10\UGII\ugraf.exe" -nx and improve that batch as follows: rem all the original setup_NX10_environment.bat stuff here %* exit or rem all the original setup_NX10_environment.bat stuff here call %* exit or rem all the original setup_NX10_environment.bat stuff here start "" %*...