<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Integrity</title>
	<atom:link href="http://theintegrity.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://theintegrity.co.uk</link>
	<description>Knowledge Base</description>
	<lastBuildDate>Sun, 02 Sep 2012 01:27:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>Getting started with DirectX development for Windows 8 Metro using SharpDX</title>
		<link>http://theintegrity.co.uk/2012/09/getting-started-with-directx-development-for-windows-8-metro-using-sharpdx/</link>
		<comments>http://theintegrity.co.uk/2012/09/getting-started-with-directx-development-for-windows-8-metro-using-sharpdx/#comments</comments>
		<pubDate>Sun, 02 Sep 2012 01:27:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[directx]]></category>
		<category><![CDATA[sharpdx]]></category>
		<category><![CDATA[windows 8]]></category>

		<guid isPermaLink="false">http://theintegrity.co.uk/?p=425</guid>
		<description><![CDATA[This is going to be an extremely basic tutorial as I have just started playing with it myself. I found it really hard to start at first. There are some samples available but SharpDX is barely documented (the wrapper and the usage part, not the DirectX API). By saying extremely basic, I mean it. In this [...]]]></description>
		<wfw:commentRss>http://theintegrity.co.uk/2012/09/getting-started-with-directx-development-for-windows-8-metro-using-sharpdx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to style TextBlock in XAML</title>
		<link>http://theintegrity.co.uk/2012/08/how-to-style-textblock-in-xaml/</link>
		<comments>http://theintegrity.co.uk/2012/08/how-to-style-textblock-in-xaml/#comments</comments>
		<pubDate>Sat, 18 Aug 2012 20:42:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[windows 8]]></category>
		<category><![CDATA[xaml]]></category>

		<guid isPermaLink="false">http://theintegrity.co.uk/?p=420</guid>
		<description><![CDATA[1. To add a style a TextBlock in XAML, first add style definition to Page.Resources section &#60;Page.Resources&#62; &#60;Style TargetType="TextBlock" x:Key="InputLabel"&#62;    &#60;Setter Property="FontSize" Value="28" /&#62;   &#60;/Style&#62; &#60;/Page.Resources&#62; More information about Setter properties and some examples are available at: http://msdn.microsoft.com/en-us/library/system.windows.setter%28v=vs.95%29.aspx 2. Add Style attribute to the TextBlock &#60;TextBlock x:Name="labelComicName" Text="Name" Style="{StaticResource InputLabel}"/&#62;]]></description>
		<wfw:commentRss>http://theintegrity.co.uk/2012/08/how-to-style-textblock-in-xaml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2008 R2 Domain Controller Default Domain Policy Default Settings</title>
		<link>http://theintegrity.co.uk/2011/05/windows-server-2008-r2-domain-controller-default-domain-policy-default-settings/</link>
		<comments>http://theintegrity.co.uk/2011/05/windows-server-2008-r2-domain-controller-default-domain-policy-default-settings/#comments</comments>
		<pubDate>Wed, 25 May 2011 19:58:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[KB]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://theintegrity.co.uk/?p=405</guid>
		<description><![CDATA[Below you can find a screenshot of Group Policy Management console on Windows Server 2008 R2 Domain Controller right after the clean installation (and promoting to a DC). These are the default Default Domain Policy settings on a clean Domain Controller. Not sure if it makes a difference but Forest and Domain functional level is [...]]]></description>
		<wfw:commentRss>http://theintegrity.co.uk/2011/05/windows-server-2008-r2-domain-controller-default-domain-policy-default-settings/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Recycle an Application Pool on remote server using Powershell</title>
		<link>http://theintegrity.co.uk/2011/05/recycle-an-application-pool-on-remote-server-using-powershell/</link>
		<comments>http://theintegrity.co.uk/2011/05/recycle-an-application-pool-on-remote-server-using-powershell/#comments</comments>
		<pubDate>Sun, 15 May 2011 15:23:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[wmi]]></category>

		<guid isPermaLink="false">http://theintegrity.co.uk/?p=389</guid>
		<description><![CDATA[The following script will let you recycle an Application Pool on a remote server running IIS 6 or IIS 7 (with IIS 6 WMI Compatibility Features installed). The script accepts 2 parameters: a server name and an application pools name, in the following format: PS &#62;.\RecycleIIsAppPool.ps1 server_name "application_pool_name" To obtain a list of application pools [...]]]></description>
		<wfw:commentRss>http://theintegrity.co.uk/2011/05/recycle-an-application-pool-on-remote-server-using-powershell/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>List IIS application pools on remote server using Powershell</title>
		<link>http://theintegrity.co.uk/2011/05/list-iis-application-pools-on-remote-server-using-powershell/</link>
		<comments>http://theintegrity.co.uk/2011/05/list-iis-application-pools-on-remote-server-using-powershell/#comments</comments>
		<pubDate>Sat, 14 May 2011 15:30:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[wmi]]></category>

		<guid isPermaLink="false">http://theintegrity.co.uk/?p=379</guid>
		<description><![CDATA[The following script will let you query remote IIS server and return a list of the application pools on that server. It is assumed that you run the script with domain account that is a member of Administrators group on the remote computer but the script can be easily modified to use other credentials. This [...]]]></description>
		<wfw:commentRss>http://theintegrity.co.uk/2011/05/list-iis-application-pools-on-remote-server-using-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
