Quote Originally Posted by pcmechanix View Post
Can you set this up to output to a text file, or at least cut and paste the output? Great program!
As all of the main program logic is contained in the InstalledProgram class, which is in its own DLL project, you can just create your own application that references that DLL and calls the GetInstalledPrograms method, then write the returned data to a text file yourself.
The application shown in the screenshot is just a demo of what you could do with the InstalledProgram class - the whole point of separating the core functionality into its own class is that you can use it to get the data and then do whatever you want with it (display it on a form like in my example, write it to a database, write it to a text file, etc etc)