I am trying to use PSExec to kick off a console application on a remote computer in an interactive state. When I run something like this:
PsExec.exe -s -d -i 1 \\MyServer notepad.exe
It launches Notepad just fine. If I then run this:
PsExec.exe -s -d -i 1 \\MyServer C:\Temp\MyConsoleApp.exe
It launches the command windows but doesn't do anything as far as I can tell.
Hi
We have script to stop our application, all our application use this standard script to stop however in one of our application this script does not work properly. It does not kill the process, thats why we always use the manual process to kill which is to kill the process id (kill -9 <process id>.
Can you please assist? what is missing or wrong .
I'm trying to use psexec.exe to run batch scripts on Windows Server 2008. I cannot use plaintext passwords, so I'm using the "-s" flag, and not providing a username/password.
I have my application working perfectly without the service.
After I developed the service for notification part,
it works fine on my debug machine but not for other 2 devices tested:
my device is running 2.3.5
test device 1: 2.3.5
test device 2: 4.2.1
I found that the process stopped unexpectedly message showed on service launch.
It shows twice of my application project name although notificatio
Here is what I am trying:
Launch ami-c98d55a0 with t1.micro size and a security group with inbound tcp ports 139, 445, 3389 open.
The script is fairly straight forward. Simply tries to start a bunch of windows services. Execution locally works fine when on the target machine. The script is actually executing fine as well when done via PsExec, it just never returns until I hit the "enter" key on my CMD prompt.
I have 5 activities. When I click on any button in any of those 5 activities, I want to close the application and when I reopen it, I want to launch the application from first activity.
selenium grid 1.0.8, selenium server 2.21.0, firefox 11.0 and 10.0, tomcat 6.0.35
i launch grid hub manually.
launch remote control from java code with SelfRegisteringRemoteControlLauncher.main(args)
write a web application, user can click a button to launch remote control then run the test, deploy this web application to tomcat 6.0.35
in windows 7, after user click the button, it can launch re
im wondering if its possible to launch a linux application from within my C application and be able to read and input data to that launched program. what functions should i be looking into to be able to do this.