I used to have the client installed with the logon script, but I had to quit doing it because the portables in the company didn't like it.
It's very easy to install the clients with the logon script.
To do it, make a share dnet under the netlogon share, and copy dnetc.exe, dnetc.com and dnetc.ini to that folder. Then append the following code to the logon script
Code:
@echo off
if exist "c:\program files\dnet\dnetc.ini" goto :END
echo installing distributed.net client
pushd "c:\program files"
md "dnet"
cd dnet
popd
copy dnetc\*.* "c:\program files\dnetc\"
"c:\program files\dnet\dnetc" -install
net start dnetc
echo finished installing distributed.net client
:END
This script is intended for windows NT (or 2K), so I don't know if it will work on win9x.