Start remote program, but don't wait
I wanto to run a command to opne a program on remote computer, but I don't want to wait for this program to finish.
Is like to open a notepad.exe on remote computer, but don't wait for it. How can I do this?
-
Hi Jean Carlos,
I have done this before by creating a .bat file with a start command and parameters. In this case it would be: start /d C:\windows\system32\ /b notepad.exe
I named this .bat file notepad.bat and placed this in my repository. From there I created a new package and used the .bat file as my install file and let er rip.
-
For the app I am trying to run, this didn't work for me. I created a VBS script and set the Option to "Run As - Logged on User" with the following.
Dim objShell
Set objShell = WScript.CreateObject( "WScript.Shell" )
objShell.Run("""C:\Program Files\App1\Application.exe""")
Set objShell = Nothing
Now my app launches correctly and the deployment ends with success.
-
I have been faced same problem by my client but one of my best app developer his name is david solved this problem through some custom code which was based on react native platform.
Please sign in to leave a comment.
Comments
4 comments