Hello, jrdebug.
There is indeed a difference in the default setting in savng find/search as you have mentioned, win9x vs win2000. However, even search result is saved win9x way, I find it is not very convenient to use. The only advantage of it is that you can use advanced search features.
If your search does not make use of the advanced search features mentioned above, then the Dir command coupled with wildcard or not, various switches available, and the redirection of output (append or not) to a text file is sometime more convenient and more powerful than gui search facility.
For example, you want to search on C, E, G, H drives from root downward, of files with extension dll, and output the result to c:\found.txt, then the single line command will do :
For %%D in (C,E,G,H) Do dir %%D:\*.dll /s/b >> c:\found.txt
(one single line)
With many switches available to Dir, you can do better than gui search. Say, searching C,E,G,H drives only cannot be set in gui search. But, if you make heavy use of advanced features, then, one has to stick to gui search or else use other utilities.
regards - tsuji