Hello, I am a newcomer here I wanted to ask about the command line that appears on the proxy explorer window after I run the script by using autoit. Here is my script : $DIRPATH = @ScriptDir
$IPADDRESS1 = @IPAddress1
$IPSEVER = "199.115.229.67"
$PROXY = "10.8.3.8"
$HOST = "Host: get.nimbuzz.com"
Sleep(100)
;SETTING PROXYTUNNEL ROUTE GATEWAY
Run(@SystemDir & '\route.exe ADD '& $PROXY &' MASK 255.255.255.255 "' & $IPADDRESS1 & '"', @SystemDir, @SW_HIDE)
Sleep(100)
Run(@SystemDir & '\route.exe ADD '& $IPSEVER &' MASK 255.255.255.255 "' & $IPADDRESS1 & '"', @SystemDir, @SW_HIDE)
Sleep(100)
Run(@ScriptDir & '\proxytunnel -a 7070 -p '& $PROXY &':8080 -d '& $IPSEVER &':443 -H "'& $HOST &'"',@ScriptDir , @SW_HIDE) everything is going well, but I do not want a command that I wrote on the autoit script appears in the Process Explorer window and tooltip like this screenshot : Can I disabled with autoit? Thanks