Just in case someone else could use the info, then here goes...
I have solved my problem by looking through a bunch of reg keys under the main eset key and then done alittle experimenting...
To bypass the 3 dialogs that NOD32 v2.70.32 displays when windows starts up after an unattended install, then copy/paste the following text and save it as 'nod32.reg' and then add 'regedit /s nod32.reg' as the next line after 'start /wait nentenst.exe /silentmode' in your batch file which is loaded from GuiRunOnce.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Eset\Nod\CurrentVersion\Kernel]
"SampleEnable"=dword:00000001
"UnwantedEnabled"=dword:00000000
This will enable 'ThreatSense.Net'(but only for unknown threats and not for anonymus statistical data) and disable detection of unwanted applications. If you want to disable 'ThreatSense.Net', then just set 'SampleEnable' to 'dword:00000000' instead, and if you want to enable detection of unwanted applications, then you set 'UnwantedEnabled' to 'dword:00000001' instead.
Personally, then i also want to automatically have the splash screen disabled, have silent mode enabled and disable the use of the graphical GUI, so i use :
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Eset\Nod\CurrentVersion\Common]
"SilentMode"=dword:00000001
"GraphicMode"=dword:00000000
"DontShowSplash"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Eset\Nod\CurrentVersion\Kernel]
"SampleEnable"=dword:00000001
"UnwantedEnabled"=dword:00000000
CU, Martin.
This post has been edited by Martin H: 27 April 2007 - 04:26 PM