COMMENT: Search specific location for myfile.exe
Search For File (%FileSearchResult% = location of myfile.exe)
COMMENT: If myfile.exe is not found
IF (%FileSearchResult% = "NOT FOUND")
COMMENT: DO THIS
HTTP Download (http://mydomain.com/myfile.exe -> %TempDir%)
Execute (%TempDir%\myfile.exe)
ENDIF
Do you find anything obviously wrong with the above if condition?
Thanks, nt
Search For File (%FileSearchResult% = location of myfile.exe)
COMMENT: If myfile.exe is not found
IF (%FileSearchResult% = "NOT FOUND")
COMMENT: DO THIS
HTTP Download (http://mydomain.com/myfile.exe -> %TempDir%)
Execute (%TempDir%\myfile.exe)
ENDIF
Do you find anything obviously wrong with the above if condition?
Thanks, nt
Comment