Oh... HAHAHAHAHAHA
you're totally right Lonkey.
Had a late night last night... let's keep it at that [Smile]

Anyway SRolland, I do that copy option in the LOGON.KIX.

Here's a sample of my kix script which handles that part:

code:
 
Select
Case @InWin = ("1") ;Windows NT
If Exist (@LDRIVE + "\lmhosts.")
Copy @LDRIVE + "\lmhosts." %systemroot%\system32\drivers\etc
EndIf
If Exist (@LDRIVE + "\hosts.")
Copy @LDRIVE + "\hosts." %systemroot%\system32\drivers\etc
EndIf
If Exist (@LDRIVE + "\services.")
Copy @LDRIVE + "\services." %systemroot%\system32\drivers\etc
EndIf
If Exist ("%systemroot%\system32\nbtstat.exe")
Run "%systemroot%\system32\nbtstat -R" >nul
EndIf
Case @InWin = ("2") ;Windows 9x
If Exist (@LDRIVE + "\lmhosts.")
Copy @LDRIVE + "\lmhosts." %windir%
EndIf
If Exist (@LDRIVE + "\hosts.")
Copy @LDRIVE + "\hosts." %windir%
EndIf
If Exist (@LDRIVE + "\services.")
Copy @LDRIVE + "\services." %windir%
EndIf
If Exist ("%windir%\nbtstat.exe")
Run "%windir%\nbtstat -R" >nul
EndIf
EndSelect


This should be more helpful than my last post [Smile]

Greetz, Brian
_________________________
Rodney Dangerfield: “My mother didn't breast-feed me. She said she liked me as a friend.”