In usual fashion I sat down the other day and tried to come up with a useful tool I could quickly code. After about a week of coding and testing I’ve come up with a simple command line tool that will retrieve and display both v4 and v6 IP address information for one or more [...]
I have a legacy Linksys WUSB54GSC USB Wi-Fi adapter that I wanted to use on my new workstation; a power house with x64 Windows 7. I needed that Wi-Fi, but unfortunately it is a first generation of the two versions of the device and Linksys supports neither. Their support site only provides XP drivers that [...]
If you’re like me, you’ve got a slew of duplicate files lurking all over your hard drive. I couldn’t find any programs for windows that would allow me to find duplicate files for free, so I decided to write this simple console application. It will take a few parameters and allow you to find files [...]
There exists a need to globalize your applications but copying and pasting each string from a resource file into Google translate is tiresome. 3rd party applications are fraught with translation errors and/or are expensive. Simply put there exists a need to have a simple way to extract resource strings from RESX files and have them [...]
There may exist a need to programmatically retrieve a program’s assembly attributes to provide product information to a user. This can be problematic if you are not using the System.Windows.Forms.Application library. Retrieving this information however is still possible using commands within the System.Reflection.Assembly class. I have encapsulated the most commonly used attributes in the following [...]