Categories
- Active Directory
- Apache
- ASP.Net
- Attributes
- Batch Files
- C#
- FireFox
- Generics
- IIS
- Internet Explorer
- JavaScript
- jQuery
- LINQ
- Microsoft AJAX
- Microsoft Office
- Microsoft TechNet
- MS Build
- MS SQL Server
- MVC
- Regular Expressions
- SSIS
- Subversion
- T-SQL
- Team Foundation Server
- This and that
- Visual Studio
- WCF
- Web Services
- Windows 7
- Windows Server 2008 R2
- WinForms
- WordPress
Archives
- February 2012
- January 2012
- October 2011
- September 2011
- August 2011
- June 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- May 2006
- March 2006
- January 2006
Meta
Author Archives: Greg
IT Toolbox: TechNet Magazine February 2012
The February IT Toolbox column is up on the TechNet Magazine website. In February, I covered these products: smtp4dev: A local smtp server to test out applications and email messages DisplayFusion Pro: A full-featured, multimonitor management application PureText: Copy/paste text … Continue reading
Posted in Microsoft TechNet
Leave a comment
C#: Export a List of Objects to CSV with LINQ, Attributes, and Generics
Have you ever needed to transform data from in-memory C# objects to a CSV flat-file of a specific format? Here’s an easy way to get the job done with C#, LINQ, and Generics. First you need the Attribute you will … Continue reading
Posted in Attributes, C#, Generics, LINQ
Leave a comment
IT Toolbox: TechNet Magazine January 2012
The January IT Toolbox column is up on the TechNet Magazine website. In January, I covered these products: SQL Source Control: Version your T-SQL within SSMS Bins: Taskbar Organizer for Windows MD5 Checksum Tool: Free MD5 checksum tool Check it … Continue reading
Posted in Microsoft TechNet
Leave a comment
IT Toolbox: TechNet Magazine December 2011
The December IT Toolbox column is up on the TechNet Magazine website. In December, I covered these products: SSMS Tools Pack: Extend SQL Server Management studio Network Inventory Advisor: Automated system and device inventory application Check it out and let … Continue reading
Posted in Microsoft TechNet
Leave a comment
IT Toolbox: TechNet Magazine November 2011
The November IT Toolbox column is up on the TechNet Magazine website. In November, I covered these products: MaxiVista: Extend Windows’ desktop onto another physical machine EaseUS Todo Backup: An alternate backup solution for Windows desktops Check it out and … Continue reading
Posted in Microsoft TechNet
Leave a comment
IT Toolbox: TechNet Magazine October 2011
The October IT Toolbox column is up on the TechNet Magazine website. This month I covered three products: up.time: Up/down service, server and network device monitoring Synergy: Software-based KVM Iperf: Test your network’s performance Check it out and let me … Continue reading
Posted in Microsoft TechNet
Leave a comment
C# : String Extension to Parse Enums
It seems to me that there is too much typing involved in parsing a string as an Enum type. Here’s a quick string extension method to turn it into a simpler one liner: public static T EnumParse<T>(this string input, bool … Continue reading
Posted in C#
Leave a comment
IT Toolbox: TechNet Magazine September 2011
The September IT Toolbox column is up on the TechNet Magazine website. This month I covered these two products: Lansweeper: Hardware, software, and device inventory management ipMonitor: Detailed monitoring of your servers, systems, and network devices. Check it out and … Continue reading
Posted in Microsoft TechNet
Leave a comment
ASP.Net: App_Offline.htm as a Maintenance Page
While Googling about, I came upon an oldy-but-goody, that apparently has been available since the release of ASP.Net 2.0: App_Offline.htm. An undocumented feature, you can copy a file called app_offline.htm into the root of your .Net website and the application … Continue reading
Posted in ASP.Net, IIS, MVC
Leave a comment
SSIS: Use Two OLE DB Destination Adapters to Catch Insertion/Constraint Errors
If you are using SQL Server Integration Server (SSIS) packages to insert large volumes of data, you have undoubtedly encountered incorrectly formatted or typed data in your data source including precision errors, conversion errors, and primary key/foreign key constraint errors etc. To … Continue reading
Posted in MS SQL Server, SSIS
1 Comment