How To Launch "cmd" from application modeller
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
29-03-17 01:44 PM
Hi,
I am not able to launch cmd from modeller tried different ways .
but not able to start the windows shell,
cmd on background runs on two processes namingly cmd and conhost tried that as well.
Any help would be appreciated.
Thanks.
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
29-03-17 05:22 PM
Hi Prateek,
I have also tried to launch the CMD from application modeler but it didn't worked.
But I have achieved through the action ""Start Process"" available in the Utility - Environment VBO.
After launching the CMD we can attach the CMD by using application modeler.
try and let me know if you find any issues.
Regards,
Kiran
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
29-03-17 06:07 PM
thanks kiran
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-04-17 01:22 AM
i also launched it via a code in C#, create a business process with no application then add a code step
string strCmdText;
strCmdText= ""Echo"" ;
System.Diagnostics.Process.Start(""CMD.exe"",strCmdText);
once it launches you can attach
oh ensure you add system.dll to the initilaize screen
C:\Windows\Microsoft.NET\Framework\v4.0.30319\System.dll
