Jump to content

Recommended Posts

Posted

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

Posted

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)

Posted

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.

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...