When I create a .exe, I can right click it and go to properties->details. Then I get a list like:
File Description | Type | Applic
For .NET, google for "setting assembly attributes" for information on what attributes are available. You then use the attributes like so ...
using System.Reflection; // Needed to get to the attributes. [assembly:AssemblyTitle("My File Description")] [etc.]