The reserved IP ranges for private networks are the following: 10.0.0.1/8 through 10.255.255.254/8 172.16.0.1/12 through 172.31.255.254/12 192.168.0.1/16 through 192.168.255.254/16 This information is very useful specially when working with routing tables as you may want...
Unfortunately custom errors is a setting that lives at the SharePoint site level, not at the ‘application page / _layouts’ level, so you will have to edit the web.config that applies to the entire...
The generic HashSet<T> class is a not ordered collection for containing unique elements which is the equivalent of the HashTable but for use with generics. For more information about this collection, see HashSet Collection Type at the...
What is “Andrea ST Filters Service”(AESTFilters)? Many people wonder what is “Andrea ST Filters” windows service when going through the list of processes that were running on their machine. I was one of them as...
You can simply use the Enum.Parse() function as shown below: using System; [Flags] enum Colors { None=0, Red = 1, Green = 2, Blue = 4 }; public class Example { public static...
Although I believe that as part of the .Net framework version 4 you can specify the Enumeration type that you need when you are creating a generic method, this is not available in the...
Short description: Microsoft Search Component for SQL and Exchange Servers Long description: A process that is used by SQL server and Exchange server for the creation on indexes to hasten search. On my server...
How to: Initialize a Dictionary with a Collection Initializer Sometimes in your project you want to initialize a Dictionary or other sort of collection at the declaration level so you don’t have to manually...
I am running into an issue when I import a db into a SQL Database project which indicates that “Error 1 SQL03006: User: [x] has an unresolved reference to Login [x]”. After doing some...
I have a method that queries Active Directory and it works fine on a domain computer, however, when I try using another machine that has connectivity towards AD and I pass the domain credentials...