I was finally able to discover an AD cleanup method for stale computer accounts in a Windows 2000 AD.
Since we have one 2003 server in our environment (Our SMS 2003 Server), we loaded the 2003 admin pack to that machine.
We were then able to query our Windows 2000 active directory (SP3 required) using the dsquery command.
To display stale computer accounts:
dsquery computer DC=YOURDOMAINNAME,dc=com -stalepwd 45
If you want to delete the accounts, you pipe the results to DSRM:
dsquery computer DC=YOURDOMAINNAME,dc=com -stalepwd 45 \ dsrm -noprompt
Not only is our AD much cleaner, our SMS console is free of stale accounts as well.
Here is a link to another site with some additional information on the filtering capabilities of DSQUERY:
More on DSQUERY attribute filtering -
http://www.jsifaq.com/SUBP/TIP7700/rh7717.htmGood Luck ALL