To make Ad-Watch load during startup on all computers in your network, you need to add a key to the "Run section" of the registry. This can be done e.g. with a batch file executed from a logon script. The batch file below is an example of how this can be done. This batch file must be executed in the context of the local administrator. By replacing HKEY_LOCAL_MACHINE in the example with HKEY_CURRENT_USER, it will also work for restricted users.
Note that text that are intended in the listing below should be written on the same line as the one above.
_____________________________________________________________
@echo off
set regadwatch=\"%SYSTEMDRIVE%\\Program files\\Norman\\
Norman Ad-Aware SE Professional\\Ad-Watch.exe\"
ECHO Windows Registry Editor Version 5.00>%SYSTEMDRIVE%\regtmp.reg
ECHO.>>%SYSTEMDRIVE%\regtmp.reg
ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\
CurrentVersion\Run]>>%SYSTEMDRIVE%\regtmp.reg
ECHO "AWMON"="%regadwatch%">>%SYSTEMDRIVE%\regtmp.reg
%windir%\regedit /S %SYSTEMDRIVE%\regtmp.reg
del %SYSTEMDRIVE%\regtmp.reg
_____________________________________________________________