<?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>Philip Wilmot</title>
	<atom:link href="http://philipwilmot.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://philipwilmot.co.uk/blog</link>
	<description>the ever learning IT professional</description>
	<lastBuildDate>Wed, 12 Jan 2011 18:31:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Access 2007 &#8211; Email Report As Attachment</title>
		<link>http://philipwilmot.co.uk/blog/2010/02/access-2007-email-report-as-attachment/</link>
		<comments>http://philipwilmot.co.uk/blog/2010/02/access-2007-email-report-as-attachment/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 13:54:25 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Access]]></category>

		<guid isPermaLink="false">http://philipwilmot.co.uk/blog/?p=57</guid>
		<description><![CDATA[You have a Form which you have created, perhaps this Form is used for Ordering, you would then like to E-mail the order as a Report, outputted as PDF. You would also like the attachment (PDF Report) named based on your Order Number. First create your report and customise it to your needs. Back on [...]]]></description>
			<content:encoded><![CDATA[<p>You have a Form which you have created, perhaps this Form is used for Ordering, you would then like to E-mail the order as a Report, outputted as PDF. You would also like the attachment (PDF Report) named based on your Order Number.</p>
<p>First create your report and customise it to your needs.</p>
<p>Back on your Form create a Command Button and use the Command Button Wizard to setup the basic Sending concept. Select Report Operations, then Mail Report. Select your report and enter your desired Text. Finally give it a meaningful name. This will create an [Event Procedure] for the On Click Property. It will look a little like the following:<br />
<code><br />
Private Sub Command50_Click()<br />
On Error GoTo Err_Command50_Click<br />
Dim stDocName As String<br />
stDocName = "rpt_stock_order_po"<br />
DoCmd.SendObject acReport, stDocName<br />
Exit_Command50_Click:<br />
Exit Sub<br />
Err_Command50_Click:<br />
MsgBox Err.Description<br />
Resume Exit_Command50_Click<br />
End Sub<br />
</code></p>
<p>Modify the following line&#8230;</p>
<p><code>DoCmd.SendObject acReport, stDocName</code></p>
<p>&#8230;to look something more like</p>
<p><code>DoCmd.SendObject acReport, stDocName, acFormatPDF, "supplier@company.com", , , "Ink Order", "Please find enclosed our Ink Order", True</code></p>
<p>This will specifically output the Report as PDF (Office 2007 SP2 Required), automatically add the Email address, complete the Subject Line  and fill out the Body of the Email. Should you want it to automatically send it change the True to False.<br />
However you will notice the attachment is named whatever the Report is called or what is completed in the Report Caption property. If you have entered anything in the Report Caption property remove it now as we will automatically create this next. It will automatically be changed accordingly to a specific detail on your Report, such as a order number.</p>
<p>Open your Report and select an [Event Procedure] for the Report Load function.<br />
Add the following line:</p>
<p><code>Me.Caption = "Order " &amp; [your-order-number-field]</code></p>
<p>You will notice your Report title will change based upon your order number when opening the report. You will also notice that when trying to send your Report from your Form it still names the attachement to whatever your Report is called and not what the Caption is!<br />
This is because we need the Report to open up before so it can process the Caption change. If we go back to the send Report code and inbetween declaring <code>stDocName</code> and <code>DoCmd.SendObject</code> add the following to Open your report.</p>
<p><code>DoCmd.OpenReport stDocName, acPreview</code>.</p>
<p>Upon clicking on your Command Button, the Report will open with the correct title caption, and your E-mail client will have the correctly named attachment based on it.</p>
]]></content:encoded>
			<wfw:commentRss>http://philipwilmot.co.uk/blog/2010/02/access-2007-email-report-as-attachment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Barracuda Web Filter &#8211; Block Domain Subdirectories</title>
		<link>http://philipwilmot.co.uk/blog/2010/01/barracuda-web-filter-block-domain-subdirectories/</link>
		<comments>http://philipwilmot.co.uk/blog/2010/01/barracuda-web-filter-block-domain-subdirectories/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 09:11:17 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Barracuda Web Filter]]></category>

		<guid isPermaLink="false">http://philipwilmot.co.uk/blog/?p=50</guid>
		<description><![CDATA[For example you want to allow your users to access www.bbc.co.uk but do not want them to access iPlayer. As iPlayer is a Subdirectory and not a subdomain we can not just add it to the domain block list or a custom category you may have set up. The best way is to create an [...]]]></description>
			<content:encoded><![CDATA[<p>For example you want to allow your users to access www.bbc.co.uk but do not want them to access iPlayer. As iPlayer is a Subdirectory and not a subdomain we can not just add it to the domain block list or a custom category you may have set up. The best way is to create an Exception.</p>
<p>Log into your web filter.</p>
<p>1. Navigate to <strong>BLOCK/ACCEPT</strong>.</p>
<p>2. Select <strong>Exceptions</strong>.</p>
<p>3. Create a <strong>Block</strong> rule.  Under<strong> Category</strong> select <strong>URL Patterns</strong>. Under <strong>Sub Category/Expression</strong> enter <strong>www.bbc.co.uk/iplayer</strong></p>
<p>4. Create a <strong>Allow</strong> rule. Under<strong> Category</strong> select <strong>Domains</strong>. Under <strong>Sub Category/Expression</strong> enter <strong>bbc.co.uk</strong></p>
<p>Make sure the Block rule is above the Allow rule as Exceptions work from top down. In this case it will Block BBC iPlayer but then allow access to the BBC website.</p>
<p>You can find more information regarding Blocking Domain Subdirectories in the following Barracuda KB article <a href="http://www.barracuda.com/kb?id=50160000000GSzw" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://philipwilmot.co.uk/blog/2010/01/barracuda-web-filter-block-domain-subdirectories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 &#8211; KMS To MAK</title>
		<link>http://philipwilmot.co.uk/blog/2010/01/windows-7-kms-to-mak/</link>
		<comments>http://philipwilmot.co.uk/blog/2010/01/windows-7-kms-to-mak/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 11:00:42 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://philipwilmot.co.uk/blog/?p=42</guid>
		<description><![CDATA[If you have set up a KMS Host / Client system (see here) but have not reached your 25 Client threshold yet and you are over your 30 days grace period, the chances are your Windows 7 Clients are notifying you that copy is not genuine. If you plan to reach this limit very soon [...]]]></description>
			<content:encoded><![CDATA[<p>If you have set up a KMS Host / Client system (see <a href="http://philipwilmot.co.uk/blog/2009/12/windows-7-windows-server-2008r2-kms/" target="_blank">here</a>) but have not reached your 25 Client threshold yet and you are over your 30 days grace period, the chances are your Windows 7 Clients are notifying you that copy is not genuine. If you plan to reach this limit very soon (within 30 days) you can always reset your client machines by using <code>slmgr /rearm</code>. A restart will be required but you will be on a fresh 30 day grace period.<br />
If you do not plan on reaching the threshold for awhile then you will probably want to convert your Clients to a MAK. This works very much like VLK however it does a one time activation with Microsoft for each machine you use it on. The limit of a MAK key depends on your license agreement, should you reach it you can contact Microsoft to see if you can extend it.<br />
To request a MAK you can either log into your MVLS and request one through your account, or you can call Microsoft Product Activation (UK: 0800 0188354), provide your enrollment number and they will process a MAK and e-mail you with it.<br />
Once you have your MAK key simply click on Change product key under Windows Activation. This will automatically change it from KMS to MAK and connect online and activate with Microsoft. Alternatively you can use <code>slmgr /ipk </code> &lt;MAK&gt;.</p>
]]></content:encoded>
			<wfw:commentRss>http://philipwilmot.co.uk/blog/2010/01/windows-7-kms-to-mak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 &#8211; God Mode</title>
		<link>http://philipwilmot.co.uk/blog/2010/01/windows-7-god-mode/</link>
		<comments>http://philipwilmot.co.uk/blog/2010/01/windows-7-god-mode/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 11:14:47 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://philipwilmot.co.uk/blog/?p=40</guid>
		<description><![CDATA[Tired of trying to find out what setting is located where? How about a place where all settings are grouped together? Enter Windows 7 God Mode. Right click on your Desktop. Create a New Folder Rename it to GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} The icon will change from a standard folder to a configuration folder. Open it to access [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of trying to find out what setting is located where? How about a place where all settings are grouped together? Enter Windows 7 God Mode.</p>
<p>Right click on your Desktop.</p>
<p>Create a New Folder</p>
<p>Rename it to <code>GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}</code></p>
<p>The icon will change from a standard folder to a configuration folder. Open it to access God Mode. You can copy this shortcut to a USB stick should you wish and take it to use on other Windows 7 PC&#8217;s.</p>
]]></content:encoded>
			<wfw:commentRss>http://philipwilmot.co.uk/blog/2010/01/windows-7-god-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Failed Un-installation Of Deployed Software</title>
		<link>http://philipwilmot.co.uk/blog/2009/12/remove-failed-removal-of-deployed-software/</link>
		<comments>http://philipwilmot.co.uk/blog/2009/12/remove-failed-removal-of-deployed-software/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 13:11:00 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Software Deployment]]></category>

		<guid isPermaLink="false">http://philipwilmot.co.uk/blog/?p=35</guid>
		<description><![CDATA[You have deployed managed software via Group Policy. When you come to remove that software via Group Policy the client machine (Windows XP) will hang at &#8220;Removing managed software&#8230;&#8221;. This is most likely caused by a dialog prompt popping up during the uninstall and as you can not see this during the removal process the [...]]]></description>
			<content:encoded><![CDATA[<p>You have deployed managed software via Group Policy. When you come to remove that software via Group Policy the client machine (Windows XP) will hang at &#8220;Removing managed software&#8230;&#8221;. This is most likely caused by a dialog prompt popping up during the uninstall and as you can not see this during the removal process the computer will just stay stuck at the removing software display.<br />
If this is a per-computer package then the best way around it is to boot the affected computer up in Safe Mode, enter regedit and find navigate to the following:</p>
<p><code>HKLM\Software\Microsoft\Windows\CurrentVersion\Group Policy\Appmgmt</code></p>
<p>Then find the correct key, this is easy to do by looking at each key&#8217;s &#8220;<strong>Deployment Name</strong>&#8220;. Once you have found the correct key simply delete it and reboot. The computer will boot normally now and you can then remove the offending software via Control Panel.</p>
]]></content:encoded>
			<wfw:commentRss>http://philipwilmot.co.uk/blog/2009/12/remove-failed-removal-of-deployed-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Clean Install Using Upgrade Version</title>
		<link>http://philipwilmot.co.uk/blog/2009/12/windows-7-clean-install-using-upgrade-version/</link>
		<comments>http://philipwilmot.co.uk/blog/2009/12/windows-7-clean-install-using-upgrade-version/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:58:17 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://philipwilmot.co.uk/blog/?p=32</guid>
		<description><![CDATA[Remember back in the Windows XP days? If you purchased the Upgrade version and wanted to do a clean install on a virgin hard drive, XP would ask you to put in the disk containing a previous version of Windows. How easy was that. Vista was a lot more difficult to get around. You had [...]]]></description>
			<content:encoded><![CDATA[<p>Remember back in the Windows XP days? If you purchased the Upgrade version and wanted to do a clean install on a virgin hard drive, XP would ask you to put in the disk containing a previous version of Windows. How easy was that.</p>
<p>Vista was a lot more difficult to get around. You had to to a double install of Vista.</p>
<p>With Windows 7, it has all changed again. Luckily it can be very simple workaround &#8211; a simple registry tweak.</p>
<p>1. Disconnect from the internet, this just stops any automatic activation or updates coming through once Windows has installed, and although it does not matter, it&#8217;s just a extra step you got to wait until they are finished before doing the workaround.</p>
<p>2. Install Windows 7, when it asks you to input the product key, skip it.</p>
<p>3. Once Windows 7 has finished installing open <strong>regedit.exe</strong>.</p>
<p>4. Navigate to the following: <code>HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/Setup/OOBE/</code></p>
<p>5. Find <code>MediaBootInstall</code>, double click it and change the value from &#8220;<code>1</code>&#8221; to &#8220;<code>0</code>&#8220;. If for some strange reason it is already at <code>0</code> all is good, skip to step 7.</p>
<p>6. Enter <code>cmd</code> in Start Menu search to load Command Prompt, however right click on it and select <em>Run As Administrator</em>. Enter <code>slmgr /rearm</code></p>
<p>7. After the &#8220;Command completed successfully&#8221; dialog restart your computer. Once back in Windows, right click on <strong>Computer</strong>, <strong>Properties</strong> and under <strong>Windows Activation</strong> enter your Product Key and Activate.</p>
]]></content:encoded>
			<wfw:commentRss>http://philipwilmot.co.uk/blog/2009/12/windows-7-clean-install-using-upgrade-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 &#8211; Install Any Version/SKU</title>
		<link>http://philipwilmot.co.uk/blog/2009/12/windows-7-install-any-versionsku/</link>
		<comments>http://philipwilmot.co.uk/blog/2009/12/windows-7-install-any-versionsku/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:35:30 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://philipwilmot.co.uk/blog/?p=27</guid>
		<description><![CDATA[One good thing about Vista&#8217;s DVD is that any DVD version could install another. For example a Home Premium DVD could install the Ultimate Version. A retail DVD could install a OEM version. What defined what could be installed was the actual Product Key. So as long as you had a Ultimate Product Key you [...]]]></description>
			<content:encoded><![CDATA[<p>One good thing about Vista&#8217;s DVD is that any DVD version could install another. For example a Home Premium DVD could install the Ultimate Version. A retail DVD could install a OEM version. What defined what could be installed was the actual Product Key.<br />
So as long as you had a Ultimate Product Key you could use a Home Premium DVD should you lose your Ultimate. You could also use a retail Vista DVD and your OEM Product Key to do a nice vanilla install on your brand new crapware filled laptop.</p>
<p>This all changed with Windows 7. It seemed each DVD was different. That what it seemed like. But that&#8217;s not the case. There is a file called <strong>ei.cfg</strong> that controls which version is installed. Simply by deleting or renaming the file will remove the restriction and once again you will be given a choice of which version to install.</p>
<p>The file can be located inside the <strong>/sources/</strong> folder. If you are installing from a USB stick this is dead easy to do however if you are installing from a DVD then you will need to re-create the DVD. The following <a href="http://www.mydigitallife.info/2009/07/23/how-to-select-any-edition-or-version-sku-of-windows-7-to-install-from-single-edition-dvd-disc-media-or-iso/" target="_blank">guide</a> will help you accomplish this.</p>
]]></content:encoded>
			<wfw:commentRss>http://philipwilmot.co.uk/blog/2009/12/windows-7-install-any-versionsku/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 &amp; Windows Server 2008/R2 KMS</title>
		<link>http://philipwilmot.co.uk/blog/2009/12/windows-7-windows-server-2008r2-kms/</link>
		<comments>http://philipwilmot.co.uk/blog/2009/12/windows-7-windows-server-2008r2-kms/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:03:22 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://philipwilmot.co.uk/blog/?p=5</guid>
		<description><![CDATA[Understanding Microsoft&#8217;s Volume Activation 2.0 they brought in with Vista and Server 2008 (and now Windows 7 &#38; Server 2008 R2) can be a bit hard to get your head around. Although I can kind of understand why Microsoft stopped VLK, mainly down to easy piracy, moving to something quite different can be frustrating if [...]]]></description>
			<content:encoded><![CDATA[<p>Understanding Microsoft&#8217;s Volume Activation 2.0 they brought in with Vista and Server 2008 (and now Windows 7 &amp; Server 2008 R2) can be a bit hard to get your head around. Although I can kind of understand why Microsoft stopped VLK, mainly down to easy piracy, moving to something quite different can be frustrating if you don&#8217;t do your homework.<br />
<strong> </strong></p>
<p><strong>How KMS Works</strong><br />
A server acts as the KMS Host, Clients then contact the KMS server. Once the KMS threshold has been met, the KMS host will send a activation request to Microsoft. The KMS Host will then activate the Clients. The KMS threshold is 5 for Windows Server 2008/R2 and 25 for Windows 7. If there are not enough clients to meet the threshold for activation then they will report to the KMS Host every two hours until the threshold is met.</p>
<p><strong>KMS Host Keys Matched to Products They Activate<br />
</strong>There are several key types. The table below, taken from TechNet, explains which type of key should be used and what they will activate. For example if you only have Standard and Enterprise Server you will only need KMS B key.<strong> </strong></p>
<table border="1">
<tbody>
<tr>
<th>Volume product group</th>
<th>Windows products</th>
<th>Key type</th>
<th>Products activated by key type</th>
</tr>
<tr>
<td>Windows Vista</td>
<td>Windows Vista Business<br />
Windows Vista Enterprise</td>
<td>KMS</td>
<td>Windows Vista Business<br />
Windows Vista Enterprise</td>
</tr>
<tr>
<td>Windows 7</td>
<td>Windows 7 Professional<br />
Windows 7 Enterprise</td>
<td>KMS</td>
<td>Windows Vista Business<br />
Windows Vista Enterprise<br />
Windows 7 Professional<br />
Windows 7 Enterprise</td>
</tr>
<tr>
<td>Windows Server 2008 R2<br />
Server Group A:</td>
<td>Windows Web Server® 2008 R2<br />
Windows Server 2008 R2 HPC Edition<br />
Windows HPC Server 2008 R2</td>
<td>KMS_A</td>
<td>Windows Server 2008 R2 Group A<br />
Windows Server 2008 Group A<br />
Windows Vista Volume Editions<br />
Windows 7 Volume Editions</td>
</tr>
<tr>
<td>Windows Server 2008 R2<br />
Server Group B</td>
<td>Windows Server 2008 R2 Standard<br />
Windows Server 2008 R2 Enterprise</td>
<td>KMS_B</td>
<td>Windows Server 2008 R2 Group A<br />
Windows Server 2008 Group A<br />
Windows Server 2008 R2 Group B<br />
Windows Server 2008 Group B<br />
Windows Vista Volume Editions<br />
Windows 7 Volume Editions</td>
</tr>
<tr>
<td>Windows Server 2008 R2<br />
Server Group C</td>
<td>Windows Server 2008 R2 Datacenter<br />
Windows Server 2008 R2 for Itanium-Based Systems</td>
<td>KMS_C</td>
<td>Windows Server 2008 R2 Group A<br />
Windows Server 2008 Group A<br />
Windows Server 2008 R2 Group B<br />
Windows Server 2008 Group B<br />
Windows Server 2008 R2 Group C<br />
Windows Server 2008 Group C<br />
Windows Vista Volume Editions<br />
Windows 7 Volume Editions</td>
</tr>
</tbody>
</table>
<p><strong>slmgr<br />
</strong>Microsoft tool for configuring and managing activations from Windows. A few useful commands working with KMS.</p>
<p><code>slmgr /dlv<br />
</code>This will give you information regarding your software licensing service. Use this to check the client count contacting the KMS Host.</p>
<p><code>slmgr /rearm<br />
</code>Rearms the activation using the existing product key.</p>
<p><code>slmgr /upk<br />
</code>This will uninstall the product key.</p>
<p><code>slmgr /ipk &lt;Product Key&gt;<br />
</code>This will allow you the enter or change the product key.</p>
<p><code>slmgr /ato<br />
</code>This is the command line to activate windows.</p>
<p><code>nslookup -type=srv _vlmcs._tcp<br />
</code>This will tell you which server is listed in DNS for Volume Licensing. Basically what server is your KMS Server.</p>
<p><strong>Need Default KMS Client key?</strong><br />
Microsoft provide the default KMS clients keys on their TechNet help site. Vista &amp; Server 2008 <a href="http://technet.microsoft.com/en-us/library/cc303280.aspx" target="_blank">here</a> or Windows 7 &amp; Server 2008 R2 <a href="http://technet.microsoft.com/en-us/library/dd772269.aspx" target="_blank">here</a>.</p>
<p><strong><span style="text-decoration: underline;">Installing Windows Server &amp; Windows 7 Using KMS</span></strong></p>
<p><strong>First Server installation of Windows Server 2008 or R2</strong><br />
If you have not used KMS before and you are installing your first Windows Server 2008 use a KMS product key from your licensing agreement. This will act now as your KMS Host server. This product key will activate with Microsoft.</p>
<p><strong>Further Server Installations of  Windows Server 2008 or R2</strong><br />
When it give you the chance to enter a product key do not enter anything, it should by default use a built in KMS Client key. Should you enter the same key as your first server or any other KMS product key you will have two servers acting as KMS Host. This is OK only if you PLAN to have two KMS Host servers. If you entered a KMS product key and realised you shouldn&#8217;t have, then we need to replace this key with a default KMS Client key.</p>
<p>Open a elevated command prompt and use the following commands. A restart will most likely be required after uninstalling the existing product key. You can find the KMS Client product key <a href="http://technet.microsoft.com/en-us/library/cc303280.aspx" target="_blank">here (Vista &amp; Server 2008)</a> or <a href="http://technet.microsoft.com/en-us/library/dd772269.aspx" target="_blank">here (Win7 &amp; Server 2008 R2)</a> , scroll down till you find the <em>KMS Client Setup Keys.</em></p>
<p><code>slmgr /upk<br />
</code> <code>slmgr /ipk &lt;Product Key&gt;</code></p>
<p><strong>Installations Of Windows 7<br />
</strong>Use the same guidelines as Further Server Installations. A default KMS client key is built into the installation of Windows 7, you will notice when installing it will not ask for a product key.</p>
<p><strong>Activating Windows 7 with Windows Server 2008 (not R2)<br />
</strong>You will most likely encounter problems when trying to activate Windows 7 when you have a Windows Server 2008 acting as a KMS Host. The problem here is that the KMS Host only knows about Vista and Server 2008, not Windows 7 and Server 2008 R2. An <a href="http://www.microsoft.com/downloads/details.aspx?familyid=D284F030-642F-443B-85CE-74EF449D5AB4&amp;amp;displaylang=en" target="_blank">update</a> has been released that updates Windows Server 2008. Once the update has been installed on the KMS Host the server will need to be restarted. <em><strong>You will then need to update the KMS Host with a KMS Server 2008 R2 key, even though you are only running Server 2008</strong>.</em> You can find the KMS Host key from your licensing agreement.</p>
<p><code>slmgr /ipk &lt;Product Key&gt;</code></p>
<p>Followed by a stop and start of a KMS Service</p>
<p><code>net stop slsvc</code></p>
<p><code>net start slsvc</code></p>
<p>You should then find your Windows 7 can contact the KMS Host. If the threshold is not met, it will report that it could not activate. This is perfectly normal and you should not worry.<br />
However it is advisable that if your long term plan is to have a number of clients under the threshold then you should consider using MAK keys instead.<br />
See <a href="http://philipwilmot.co.uk/blog/2010/01/windows-7-kms-to-mak/" target="_blank">here</a> for when to use MAK and how to convert to it.</p>
<p>For more information regarding KMS and activation then the <strong>Volume Activation Technical Reference Guide</strong> is a good place to start. It can be found <a href="http://technet.microsoft.com/en-us/library/ee355153.aspx" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://philipwilmot.co.uk/blog/2009/12/windows-7-windows-server-2008r2-kms/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install Windows 7 From USB</title>
		<link>http://philipwilmot.co.uk/blog/2009/12/install-windows-7-from-usb/</link>
		<comments>http://philipwilmot.co.uk/blog/2009/12/install-windows-7-from-usb/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 10:39:20 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://philipwilmot.co.uk/blog/?p=3</guid>
		<description><![CDATA[If you purchased Windows 7 Digital Download from their educational offer via Digital River you will have a choice of two files to download. An ISO or an extractable EXE. The ISO you can burn straight to disk to install from, the EXE you can install from within your existing copy of windows, alternatively you [...]]]></description>
			<content:encoded><![CDATA[<p>If you purchased Windows 7 Digital Download from their educational offer via Digital River you will have a choice of two files to download. An ISO or an extractable EXE. The ISO you can burn straight to disk to install from, the EXE you can install from within your existing copy of windows, alternatively you can put these files on a USB stick and install Windows 7 from there. You can also use the ISO or even an existing Windows 7 DVD to install from USB.</p>
<p><strong>Windows 7 USB/DVD Download Tool<br />
</strong>If you have a ISO or DVD instead of following the instruction below, Microsoft have now released a open source tool which does the process for you. You can view the blog post <a href="http://port25.technet.com/archive/2009/12/09/windows-7-usb-dvd-download-tool-released-under-gplv2.aspx" target="_blank">here</a> and download the tool <a href="http://images2.store.microsoft.com/prod/clustera/framework/w7udt/1.0/en-us/Windows7-USB-DVD-tool.exe" target="_blank">here</a>. However if you have the Digital Download or want to do it yourself then please read on.</p>
<p><strong>Digital River Download Preperation</strong><br />
The extractable EXE consits of 3 files; <strong><em>Win7-P-Retail-en-us-x64</em>.exe</strong>, <em><strong>setup1.box</strong></em>, <em><strong>setup2.box</strong>.<br />
</em>Running the EXE will expand the files to a folder called <em><strong>expandedSetup</strong>. </em>Inside this folder is all the usual files you would see on a Windows 7 DVD.</p>
<p>1. Run <strong><em>Win7-P-Retail-en-us-x64</em>.exe</strong></p>
<p>2. This will expand the the files to a folder called <strong>expandedSetup</strong>. Make a note of this location. For this explanation I expanded to <strong>C:\expandedSetup</strong></p>
<p><strong>Prerequisites<br />
</strong>USB Stick &#8211; Minimum 4GB.<br />
USB boot feature in BIOS.<br />
Preperation takes place in a Windows Environment.</p>
<p><strong>Preparing The USB<br />
</strong></p>
<p><strong>1.</strong> Enter  <code>cmd</code> and press <strong>Ctrl</strong> + <strong>Shift</strong> + <strong>Enter </strong>to open Command Prompt with Administrative rights.</p>
<p><strong>2.</strong> Enter <code>DISKPART</code> in Command Prompt. This will load <strong>DISKPART</strong> utility in Command Prompt.</p>
<p><strong>3.</strong> Enter <code>LIST DISK</code>. Under <em><strong>Disk ###</strong></em> note the disk number of the USB Stick. If you have one hard drive with one partition then the hard drive will be <em><strong>Disk 0</strong></em> and the USB stick should be <em><strong>Disk 1</strong></em>. Checking the size of the disk should give it a way! For the purpose of this explanation I will assume your USB stick is Disk 1.</p>
<p><strong>4.</strong> Enter <code>SELECECT DISK 1</code>. Your USB stick is now the selected device.</p>
<p><strong>5.</strong> Enter the following in order:</p>
<p><code>CLEAN<br />
CREATE PARTITION PRIMARY<br />
SELECT PARTITION 1<br />
ACTIVE<br />
FORMAT FS=NTFS QUICK<br />
ASSIGN</code></p>
<p><strong>6.</strong> You can now exit <strong>DISKPART</strong> by typing <code>EXIT</code>. You will be now back at the Command Prompt. Leave it open.</p>
<p><strong>Making USB Bootable Windows 7 Installation</strong></p>
<p>Digital Download: Make sure you know the location of the expandedSetup folder from your digital download. For the purpose of this explanation I will use <strong>C:\expandedSetup</strong><strong> </strong></p>
<p><strong>1.</strong> Make sure you know the drive letter of your USB stick (and DVD drive if using a Windows 7 DVD). For the purpose of this explanation I will use drive letter E: as USB stick and D: as DVD Drive.</p>
<p><strong>2a.</strong> For Digital Download in Command Prompt enter the following</p>
<p><code>c:<br />
cd expandedsetup<br />
cd boot</code></p>
<p><strong>2b.</strong> For DVD in Command Prompt enter the following<strong> </strong></p>
<p><code>d:<br />
cd boot </code></p>
<p><strong>3.</strong> Your Command Prompt should display <code>c:\expandedSetup\boot</code> OR <code>d:\boot</code></p>
<p><strong>5.</strong> Type <code>BOOTSECT.EXE /NT60 E:</code></p>
<p>Where &#8220;E&#8221; is the letter of your USB stick.</p>
<p>This will update the NTFS file system bootcode and should display<br />
<code>Successfully update NTFS filesystem bootcode. Bootcode was successfully updated on all targeted volumes</code>.</p>
<p><strong>6.</strong> Close <strong>Command Prompt</strong>.</p>
<p><strong>7a.</strong> For Digital Download copy the contents of the <strong>expandedSetup</strong> folder to the root of the USB stick.</p>
<p><strong>7b.</strong> For DVD copy the contents of the DVD to the root of the USB stick.</p>
<p><strong>8.</strong> You now have a bootable Windows 7 Installation on a USB stick. Configure the BIOS to boot from USB.</p>
<p style="text-align: center;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>Windows 7 USB Installation &#8211; The Microsoft Press Way</strong></p>
<p>Microsoft says the USB device should use the FAT32 file system. Here are Microsoft steps taken from <strong>MCTS Exam 70-680 Configuring Windows 7 Self-Paced Training Kit</strong>.</p>
<blockquote><p><strong>1.</strong> Connect the USB storage device to a computer running Windows 7 or  Windows Vista.</p>
<p><strong>2.</strong> Open an elevated command prompt and type <strong>diskpart</strong>.</p>
<p><strong>3.</strong> At the DISKPART&gt; Prompt, type <strong>list disk</strong>. Identify which disk connected to the computer represents the USB storage device.</p>
<p><strong>4.</strong> At the DISKPART&gt; prompt, type <strong>select disk X</strong> where X is the number of the disk that you have identified as the USB storage device.</p>
<p><strong>5.</strong> At the DISKPART&gt; prompt, type <strong>clean</strong>. When the disk is clean, type <strong>create partition primary</strong>.</p>
<p><strong>6.</strong> At the DISKPART&gt; prompt, type <strong>format fs=fat32 quick</strong>. When the format is completed type <strong>active</strong> and then <strong>exit</strong>.</p>
<p><strong>7.</strong> After you have completed these steps, copy all the files located on the Windows 7 installation DVD to the USB storage device.</p>
<p><strong>8.</strong> Configure the BIOS computer on which you want to install Windows 7 to boot from the USB storage device.</p>
<p>Copyright  © 2010 Microsoft Press</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://philipwilmot.co.uk/blog/2009/12/install-windows-7-from-usb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

