views:

10

answers:

1

I'd like to create a SharePoint 2010 workflow that calls and EXE file and waits for the file to execute and then perform some actions. I can't seem to find any references to calling and EXE file or any other program from a SharePoint Workflow. Can I accomplish this in Sharepoint Designer? If so, how?

Thanks.

A: 

I don't think it is possible to call an EXE file directly from a workflow. The closest thing supported by WF is communication with local services. However, it is complicated and definitely cannot be done in SharePoint Designer.

Marek Grzenkowicz
Thanks for the reply Marek. The EXE file downloads TAB delimited files via FTP and imports the data into a SQL Server DB.
August Blaze
@August Blaze If you're up to some custom coding, it's something that can be done inside a custom workflow activity or even better two separate activities - first for FTP communication (you can also consider buying this one - 3rd party solutions exist) and second to import the data.
Marek Grzenkowicz