FYI there is a way to change the local admin password for W2K or XP domain
computers. You have to configure your GPO for a "computer startup script"
this is what my .bat startup script looks like for our domain when i want to
change the computer passwords.
@echo off
if exist %windir%\cusrmgr.exe goto CHANGE
copy \\<SeverName>\netlogon\cusrmgr.exe %windir%\cusrmgr.exe
:CHANGE
%windir%\cusrmgr.exe -u administrator -P <Enter password here>
EXIT
You can get a copy of "cusrmgr.exe" from Microsoft for download or i think
it is also available on the W2k resource kit. Hope it helps!
Philip Nunn