WAMON13.EXE /SP /SILENT /SUPPRESSMSGBOXES /LOG /NOCANCEL /NORESTART /CLOSEAPPLICATIONS /NOICONS
IF EXIST "C:\ProgramData\wam\wam.dat" SET WAMDAT="C:\ProgramData\wam\wam.dat"
IF EXIST "C:\Documents and Settings\All Users\wam\wam.dat" SET WAMDAT="C:\Documents and Settings\All Users\wam\wam.dat"
sqlite3 %WAMDAT% "update settings set value='1' where key='remote_access';"
sqlite3 %WAMDAT% "update settings set value='1' where key='RecordIdle';"
It installs a silent copy of WAMON, then uses sqlite3 to update the database enabling remote access and recording of idle time.
If you are doing a lot of computers, run the file from a central location via a login script and add the following command:
ECHO.^<A HREF=http://%computername%:57824/stats^>%computername% - %username%^</a^> >> wamon.html
Now you'll not only silently install the program to all of your users, but you'll have an html file that continuously updates with links to the users that have installed the program.
Seems to work great!