Execute process Task

  • 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

  • You need to use the expression builder to set the arguements property to

    "/c c:\practice_move_pdfs.bat " + @user::book

    or something similar.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • 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