Clever1mba Posted May 6, 2005 Posted May 6, 2005 Hello if i want to CLOSE all process without Few Process like notepade, explorer, svhost etc wat kind code i need for this purpose if u guyz have sloution plz share it
Clever1mba Posted May 6, 2005 Author Posted May 6, 2005 hello any one help me to send process list to my website through CGI like this$list = ProcessList()InetGet("www.domain.com/cgi-bin/pro.cgi?action=&$script_name&islem=log&bilgisayaradi=" & $list, "", 1, 1)
scriptkitty Posted May 6, 2005 Posted May 6, 2005 Processlist returns a two dimentional array $list = ProcessList() $out="" for $i= 1 to $list[0][0] $out=$out & "," & $list[$i][0] Next msgbox(1,"",$out) InetGet("www.domain.com/cgi-bin/pro.cgi?action=&$script_name&islem=log&bilgisayaradi=" & $out, "", 1, 1) assuming your CGI is setup right AutoIt3, the MACGYVER Pocket Knife for computers.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now