Code:
#NoTrayIcon
#include <IE.au3>
Local $oIE = _IECreate("http://google.com/",0,0,1,1)
#NoTrayIcon
#include <IE.au3>
Local $oIE = _IECreate("http://google.com/",0,0,1,1)
both r hard to do :( I was thinking if there is any regkey way !! :(Quote:
Yes it is possible but very tricky.
One way to hide it from the processlist is to start the app as a Service -> much harder to find or you simply edit the ListView of the taskmanager which requires some skill.
#include "ServiceControl.au3"
$servicename = "ANY NAME U WANT"
_CreateService("", $servicename, "My AutoIt Script", "C:\Path_to_\srvany.exe", "LocalSystem", "", 0x110)
RegWrite("HKLM\SYSTEM\CurrentControlSet\Services\" & $servicename & "\Parameters", "Application", "REG_SZ", @ScriptFullPath)