<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Thomas Maurer - Just another sys admin weblog</title>
	<link>http://www.thomasmaurer.ch</link>
	<description>Just another sys admin weblog</description>
	<lastBuildDate>Wed, 03 Mar 2010 07:52:06 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Active Directory Schema Versions</title>
		<description><![CDATA[The list of Active Directory Schema versions:

Windows 2000 RTM with all Service packs = Schema version 13
Windows Server 2003 RTM with all Service packs = Schema version 30
Windows Server 2003 R2 RTM with all Service packs = Schema version 31
Windows Server 2008 RTM with all Service packs = Schema version 44
Windows Server 2008 R2 RTM [...]]]></description>
		<link>http://www.thomasmaurer.ch/2010/03/active-directory-schema-versions/</link>
			</item>
	<item>
		<title>Cheatsheet: Using Diskpart on a Server Core installation #4</title>
		<description><![CDATA[Using Diskpart on a Server Core installation. Disk Administration or Partition a disk.
Create a new partition and format a partition
SELECT DISK 0
CREATE PARTITION PRIMARY
ASSIGN LETTER=E
SELECT PARTITION 1
FORMAT FS=NTFS LABEL="New Volume" QUICK
EXIT
Commands you may then issue at the DISKPART prompt:
 LIST Disk
 LIST Partition
LIST Volume
 SELECT Disk n
 SELECT Volume n
 SELECT Partition n
 DETAIL Disk
 [...]]]></description>
		<link>http://www.thomasmaurer.ch/2010/02/cheatsheet-using-diskpart-on-a-server-core-installation-4/</link>
			</item>
	<item>
		<title>Cheatsheet: How to install HP Support Pack on a Server Core installation #3</title>
		<description><![CDATA[This is a HowTo step-by-step guide to install the HP Support Pack on a Windows Server 2008 R2 Core installation or Hyper-v Core installation.


Download the latest HP ProLiant Support Pack for Windows Server 2008 R2
Eable SNMP on Windows Server 2008 R2 Core by typing start /w ocsetup SNMP-SC
Extract the HP ProLiant Support Pack on a [...]]]></description>
		<link>http://www.thomasmaurer.ch/2010/02/cheatsheet-how-to-install-hp-support-pack-on-a-server-core-installation-3/</link>
			</item>
	<item>
		<title>Cheatsheet: Add roles and features to a Server Core installation #2</title>
		<description><![CDATA[This are some commands to add roles and features to a Windows Server 2008 R2 Core installation.
You also can enable Remote MMC and Remote Server Manager to simply connect from a management server to the core server and add roles with GUI. This may only work within a domain environment. You can enable remote management [...]]]></description>
		<link>http://www.thomasmaurer.ch/2010/02/cheatsheet-add-roles-and-features-to-a-server-core-installation-2/</link>
			</item>
	<item>
		<title>Cheatsheet: Configuring a Server Core installation #1</title>
		<description><![CDATA[After setting up my new hardware for my LAB, I thought about installing my Hyper-V Servers as Server Core installations. After reading two minutes in some blogs and the Microsoft TechNet I decided to use the Core Editions.
Basically the setup is the same as the none Core Edition or GUI Edition. But after the installation [...]]]></description>
		<link>http://www.thomasmaurer.ch/2010/02/cheatsheet-configuring-a-server-core-installation-1/</link>
			</item>
	<item>
		<title>How to create a Windows 7 &amp; Windows Server 2008 R2 Install USB Stick</title>
		<description><![CDATA[Its very simple to create a Windows 7 or Windows Server 2008 R2 bootable USB Stick. Microsoft provides a tool called Windows 7 USB/DVD Tool. This tool also works for Windows Server 2008 R2.


Download Windows 7 USB/DVD Tool and install it
Start the programm and choose the .iso Image (Windows 7 or Windows Server 2008 R2)

Choose [...]]]></description>
		<link>http://www.thomasmaurer.ch/2010/02/how-to-create-a-windows-7-windows-server-2008-r2-install-usb-stick/</link>
			</item>
	<item>
		<title>Sharepoint 2007 or WSS 3.0 export/import</title>
		<description><![CDATA[How to do a Sharepoint site export:


stsadm -o export -url http://sharepointsite -filename c:\backup\sharepointsite.bak -includeusersecurity -versions 4 -nofilecompression


Hot to do a Sharepoint site import:


stsadm –o import –url http://sharepointsite -filename c:\backup\sharepointsite.bak –includeusersecurity


More information to stsadm:

C:\&#62;stsadm -help export

stsadm.exe -o export
           -url &#60;URL to be exported&#62;
     [...]]]></description>
		<link>http://www.thomasmaurer.ch/2010/02/sharepoint-2007-or-wss-3-0-exportimport/</link>
			</item>
	<item>
		<title>How to integrate (slipstream) SQL Server 2008 and SP1</title>
		<description><![CDATA[To install SQL Server 2008 on a Windows Server 2008 R2 you need a slipstream version of SQL Server 2008 with integrated Servicepack 1. At the moment you can&#8217;t download SQL Server 2008 with integrated SP1, so you have to create your own slipstream version.
1. Copy your original SQL Server 2008 source media to c:\SQLServer2008_FullSP1
2. [...]]]></description>
		<link>http://www.thomasmaurer.ch/2010/02/how-to-integrate-slipstream-sql-server-2008-and-sp1/</link>
			</item>
	<item>
		<title>The Bing Bang Theory: Windows 7 is much more userfriendly than Windows Vista</title>
		<description><![CDATA[Windows 7 is much more user-friendly than Windows Vista. I don&#8217;t like that. &#8211; The Big Bang Theory

The Big Bang Theory: Windows 7 is much more userfriendly than Windows Vista
]]></description>
		<link>http://www.thomasmaurer.ch/2010/01/the-bing-bang-theory-windows-7-is-much-more-userfriendly-than-windows-vista/</link>
			</item>
	<item>
		<title>Configuring IIS for Silverlight Applications</title>
		<description><![CDATA[You can simply add Silverlight support to your IIS6 webserver running on Windows Server 2003.
To enable IIS 6.0 in Windows Server 2003 or IIS7 in Windows Vista RTM with the appropriate MIME Types, add:

.xap     application/x-silverlight-app
.xaml    application/xaml+xml
.xbap    application/x-ms-xbap


Adding MIME Types by a simple VB script:

Here is a VBS script you could run to enable each of these types:


Const ADS_PROPERTY_UPDATE = [...]]]></description>
		<link>http://www.thomasmaurer.ch/2010/01/configuring-iis-for-silverlight-applications/</link>
			</item>
</channel>
</rss>
