Jump to content

Recommended Posts

Posted (edited)

#include <Process.au3>
$pid = 0
For $i=1 To 3000
$kill = _ProcessGetName($pid)
if $pid <> "killall.exe" Then ProcessClose($pid)
$pid= $pid +1
Next

I need help with that script,I made it to kill all progresses but it reset-s machine (force restart)

how i can make it so that it only kills tasks?

You need compile it 1-st

Edited by au3scr
Posted

also when using a for loop, the variable (in your case $i) increments with each step. So you do now need a second varialbe to increase every time. Simply use $i instead of $pid.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...