kiboost 1 Posted June 23, 2010 Hi, I use a script (autoit3 x32) on several machines to iste all running process, it put this into our intranet server. The script redo itself every 5sec Under xp, no problem, runs like a charm Under win7 pro x64, every 5sec it create a new cmd.exe and conhost.exe process ! Any idea would be great help, here is the script : $kname = @ComputerName $file_path = "\\intra_server\Documents\webserver\www\intranet\network\cache\" & $kname & ".txt" $command = StringFormat('pslist.exe -accepteula %s > "%s"',"",$file_path) $i=0 While $i <= 10 Run(@ComSpec & ' /C ' & $command, @ScriptDir, @SW_HIDE) Sleep(5000) ;five seconds WEnd Win7 pro x64. scripts compiled to x64. - Autoit v3.3.6.1 | Scite 1.79 Share this post Link to post Share on other sites
kiboost 1 Posted June 23, 2010 Ok sorry !! I've updated my autoit to last version, recomplied scripts, and all goes fine !! autoit rocks ! Win7 pro x64. scripts compiled to x64. - Autoit v3.3.6.1 | Scite 1.79 Share this post Link to post Share on other sites