June 8, 2009 at 3:03 pm
I am trying pass a parameter to the bat file, if I use 48 in place of the user::book it works, but everything else has failed
I have the variable set as a string and have value set to 48.
Thank for the help.....
Exec:C:\WINDOWS\system32\cmd.exe
Arguments:/c c:\practice_move_pdfs.bat user::book
June 8, 2009 at 3:13 pm
You need to use the expression builder to set the arguements property to
"/c c:\practice_move_pdfs.bat " + @user::book
or something similar.
June 9, 2009 at 7:17 am
FYI for anyone out there
first declare both pieces as there own variables
Testvar = /c c:\practice_move_pdfs.bat
book = 48
then use the express builder @[User::TestVar] +" " + @[User::book]
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply