In this blog I will show how to check Domain and Forest Functional Level in Windows Server 2012. Follow the following steps to do that: Enter domain.msc via Run command. Next window will be of "A...
Adprep.exe is a command-line tool that is available on the on the Windows Server 2008 R2 installation disk in the \support\adprep folder
While creating a new solution, you might want to add an existing SQL Server existing database to your solution in Visual Studio. This blog illustrates with pictures how to add an existing database pro...
In this blog I will show how to remove a Domain Controller from a Domain in Windows Server 2008 R2. Follow the following steps to do that: Enter dcpromo via Run command. Click Next on Welcome Screen. ...
In this blog I will show how to uninstall AD FS 2.0 in Windows server 2008 R2. Follow the following steps to do that: Enter appwiz.cpl via Run command. Click "View Installed Updates". Select...
Here you will learn how to save data in the device via your android application using "Shared Preferences" which offers fast retrieval and is easy to program. Most of the applications that s...
Parsing JSON data into android application is the mechanism of receiving JSON data and from a sever's API and then displaying that data into your android application's UI. Read on to know more...
This blog will apply to those folks who use Photoshop for design. I will focus on the use of channels to make a perfect selection out of a very complex image. In this blog I will also show you how to ...
In this blog post you will be getting a brief knowledge about how to integrate facebook services into your application.
Here you will be given an introduction on how to read and write to a file saved in internal storage of your phone.
Read on to find which new features have been added in Visual Studio 2015
Toast message is a way to provide some information to the user that stays on the screen for a couple of seconds. Here, we will be working on how to beautify that message so that it goes with the theme...
In this blog, we will create a string array in our file "strings.xml" and then bind it to the listview and display some information in another string array based on that click.
Learn how to backup a database using SQL Server Management Studio in 15 easy steps
Adobe has been keeping busy for a few months now working on the new features for Photoshop CC 2015. And finally they released a new version recently. The engineers worked on the new artboards, improve...
Open Command Prompt Window in your computer with "Run as Admin". On the Command Prompt window, type: wmic bios get serialnumber. Hit enter. Service Tag would be displayed.
While working with .SVC files in my applications I was getting the 404 error: HTTP Error 404.0 - Not Found The resource you are looking for has been removed, had its name changed, or is temporarily un...
Here a quick hitter for you - this little piece of code allows you to validate a credit card (in C#) before submitting for processing. This should work with Visa, Mastercard, Discover, and American Ex...
You may come across an instance in your C# and ASP.NET programming where you need to download an external webpage and parse the meta tags... specifically, the "Title," "Meta Description...
C# RSS FEED GENERATOR - This is a snippet of code that you can simply paste into your own code to generate a C# RSS
Below is the script to do the same: DECLARE @table_name NVARCHAR(256) DECLARE @col_name NVARCHAR(256) DECLARE @Command NVARCHAR(1000) SET @table_name = N'YourTableName' SET @col_name = N'Y...
Below is the simple script to get country from IP: $.get("http://ipinfo.io/"+ip, function (response) { //response.country); //response.region); }, "jsonp"); Here is how you can use...
While working with a json file today I got the following error from server: HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the pag...