how open calc.exe on c# use script workflow 9.2
The straightforward answer: no.
It is probably not useful at all to try to do this from Workflow. The reasons are explained in Brian's and Cliff's answers. To summarize:
Suggestion: create a custom toolbar button on Laserfiche Windows Client.
Step 1. Open the Options dialog from the menu.
Step 2. Customize the toolbar.
Step 3. Add a new custom toolbar button.
Step 4. Specify the name, action, and icon for the new custom toolbar button. Here, you can launch "calc.exe" by browsing for locally installed applications and configuring the command-line arguments.
Process.Start is how one process can launch another in .Net. Keep in mind that this will start that process on the Workflow server, running within the same Windows session and potentially competing for resources with Workflow.
Nabeel,
Perhaps you can provide additional information about what you are ultimately trying to accomplish. As Brian states, you can use the .NET framework System.Diagnostics.Process.Start to launch an application from a script activity in Workflow but that application instance is going to open on the Workflow server not on a client workstation. (Which is probably not what you are intending to happen?)
Protected Overrides Sub Execute()
'Write your code here.
process.start("http://192.168.0.18:5000/sendsms/ ''
End Sub
it's work
thank you