We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
When i try to terminate OS processes, the Terminating use case is working with this code :
newprocess := OSWSWinProcess new shellCommand: 'cmd.exe'; run. newprocess terminate.
But if i wait the cmd.exe startup or with a Delay between shellCommand and terminate... it fails :
newprocess := OSWSWinProcess new shellCommand: 'cmd.exe'; run. 5 seconds wait. newprocess terminate.
if i run the terminate using the hProcess of the newprocess processInfo... it doesn't work anymore ?
OSWSWinProcessLibrary uniqueInstance terminate: newprocess processInfo hProcess exitCode: 0.
Please help ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When i try to terminate OS processes, the Terminating use case is working with this code :
But if i wait the cmd.exe startup or with a Delay between shellCommand and terminate... it fails :
if i run the terminate using the hProcess of the newprocess processInfo... it doesn't work anymore ?
Please help ?
The text was updated successfully, but these errors were encountered: