Change Download Destination (_download)

(imported topic written by dahiana.mp91)

Hi,

Somebody knows how can I change the default destination for the download command?

I need to store some files in a specific directory.

This is an idea of what I need to do:

download http://download.microsoft.com/download/e/a/e/eaea4109-0870-4dd3-88e0-a34035dc181a/WindowsXP-KB828035-x86-ENU.exe

continue if {(size of it = 365664 and sha1 of it = “f7f92c435e6c79c9b68af186c1ce51055a6b48ba”) of file “WindowsXP-KB828035-x86-ENU.exe” of folder “__download”}

Instead of store the file in the “_download” directory I need to store it in “C:\testDirectory”

Thanks for your help :slight_smile:

(imported comment written by jessewk)

just add a line after the continue if:

move _download\WindowsXP-KB828035-x86-ENU.exe C:\testDirectory

(imported comment written by dahiana.mp91)

Thank you so much!!! :smiley:

It works!!!