Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to invoke an executable (or Powershell script) from SharePoint 2010 workflow. What are my options? Is it even possible? I did some search online but nothing good comes out. All I get how to execute workflow from powershell script or executable but that's not what I am looking for.

Idea is to when a approver done with approving a document (doc, docx, xls, or xlsx) then I would like workflow to invoke a powershell or executable with parameters.

When I manually use the executable it looks like below from cmdlet.

C:\ConvertDocs> .\convert.exe c:\docs\test.xls c:\pdfs\test.pdf

I have a powershell with parameters that uses the same executable. And powershell script cmdlet look like below.

.\call_Convert.ps1 c:\docs\test.xls c:\pdfs\test2.pdf
share|improve this question
add comment (requires an account with 50 reputation)

1 Answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.