David wrote: > os.system('NET VIEW') returns 0 under windows, although the DOS box > pops up and the NET VIEW executes correctly. > > Is there some other command I should be using instead? I guess an Yes, os.popen('NET VIEW') should serve your needs -- it returns a filelike object, open for reading, with the output of 'NET VIEW'. Alex