How to get machine IP Address using C# and LINQ

Microsoft .NET have a mature API to play and code against the network you are connected. All the information you need to do that resides under System.Net and its sub namespace. This article will cover the simplest part of all and provide a way on how to get the…

Install SQL Server 2012 Express Step by Step

This steps will guide you to install SQL Server 2012 Express edition, code name “Denali”. The express edition is free version of SQL Server 2012 and is available for download from Microsoft site. Download the installer and run. Step 1: The installer will create a temporary folder in your C…

Configure Windows Server 2008 to host your own domain

You can easily find yourself in a situation where you keep refreshing your mail box waiting for a reply from your hosting provider support team about the issue you are facing and hope to get fixed. The more you expand or grow in your business, the more is the need…

How to create Bootable Windows 8 using USB Flash drive

In the age of clouds, flash drive are the household stuffs that are being used. Till everyone would step in the cloud and you would not fantasize buying a brand new high end lots of storage portable disk, you tend to use your flash drive for lots of data transfers…

Understanding WPF Commands

Lately Microsoft have been using some of the well known design patterns to ease and furnish work of a programmer who choose to bang keyboards using .NET. One good example is WPF commands. Microsoft at MSDN on Commanding: Commanding is an input mechanism in Windows Presentation Foundation (WPF) which provides…

Managing Microsoft Message Queue (MSMQ)

In this part of my sharing we will take a tour of the robust and user-friendly Message Queue (MSMQ) explorer provided by Microsoft out-of-box to manage all basic task related to message queue. To open MSMQ explorer navigate to Control Panel > Administrative Tools > Computer Management > Services and…

Introduction to Microsoft Message Queue (MSMQ)

Microsoft Message Queue is message based protocol technology that provides a way to communicate asynchronously in a distributed environment. Microsoft Message Queue is also known as MSMQ for short, code name “Falcon”. MSMQ is one of the best proven ways to engineer for developing distributed enterprise business solutions. It provides…