<?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>Przemysław Łukawski&#039;s blog</title>
	<atom:link href="http://p-lider.lideve.eu/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://p-lider.lideve.eu/wordpress</link>
	<description>Solutions for IT technical problems admins and developers may face with.</description>
	<lastBuildDate>Tue, 23 Sep 2014 18:29:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.22</generator>
	<item>
		<title>Controller action methods and new parameters</title>
		<link>http://p-lider.lideve.eu/wordpress/?p=209</link>
		<comments>http://p-lider.lideve.eu/wordpress/?p=209#comments</comments>
		<pubDate>Sun, 11 May 2014 08:13:38 +0000</pubDate>
		<dc:creator><![CDATA[p_lider]]></dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>

		<guid isPermaLink="false">http://p-lider.lideve.eu/wordpress/?p=209</guid>
		<description><![CDATA[When you change a controller&#8217;s action method by adding a new parameter make sure that the parameter has a default value specified or is of Nullable type. Not doing so will render the action method unusable if called without the newly added parameter &#8211; the IIS will be returning 404 HTTP error code without throwing any [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>When you change a controller&#8217;s action method by adding a new parameter make sure that the parameter has a default value specified or is of Nullable type. Not doing so will render the action method unusable if called without the newly added parameter &#8211; the IIS will be returning 404 HTTP error code without throwing any other exception or error message rendering the debugging of this situation very hard.</p>
]]></content:encoded>
			<wfw:commentRss>http://p-lider.lideve.eu/wordpress/?feed=rss2&#038;p=209</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloning Windows 8 or Windows 8.1 on UEFI/GPT disk configuration</title>
		<link>http://p-lider.lideve.eu/wordpress/?p=183</link>
		<comments>http://p-lider.lideve.eu/wordpress/?p=183#comments</comments>
		<pubDate>Mon, 06 Jan 2014 16:12:02 +0000</pubDate>
		<dc:creator><![CDATA[p_lider]]></dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Boot]]></category>
		<category><![CDATA[Clone]]></category>
		<category><![CDATA[Partition]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://p-lider.lideve.eu/wordpress/?p=183</guid>
		<description><![CDATA[Recently I bought a new SSD disk for my new laptop. I didn’t want to install the whole operating system from scratch so I decided to just clone an existing operating system to this new disk. In the past I never worked with GPT formatted disk, so I thought that the process of cloning disk [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Recently I bought a new SSD disk for my new laptop. I didn’t want to install the whole operating system from scratch so I decided to just clone an existing operating system to this new disk. In the past I never worked with GPT formatted disk, so I thought that the process of cloning disk will be similar – and that was a bad assumption.</p>
<p>When I looked how the existing original disk was partitioned to my surprise I saw 5 (that’s right &#8211; five) partitions. They were marked as follows:</p>
<ol>
<li><strong>OEM Partition</strong> (1023 MB in size) – now I know that such partition contains Windows Recovery Environment</li>
<li><strong>EFI System Partition called ESP</strong> (360MB in size) – it is similar to “Active Partition” known in MBR formatted disks, the UEFI looks for boot manager only on partitions of this type</li>
<li><strong>Boot, Primary partition</strong> – the first partition which is actually seen in My Computer as C: drive and it contains Windows system files</li>
<li><strong>Primary Partition</strong> – the second and biggest partition which contains my other data (seen as drive D: in My Computer)</li>
<li><strong>OEM Partition</strong> (labeled “Recovery Image”) – contains recovery image which was created by laptop manufacturer</li>
</ol>
<p>&nbsp;</p>
<p>So the biggest question was – which of those partitions should I clone to the new disk and how to do this? In the past, when working with Windows XP and MBR formatted disks the only partition I had to clone was the partition, that contained the Windows system files (in the above scenario it would be number 3). But here it was not the case. The files that are required for the system to boot lie on the partition number 2. So after checking what these all 5 partitions contain I went to conclusion, that I need to clone at least 2 partitions:</p>
<ul>
<li>EFI System Partition (partition number 2 in my case)</li>
<li>Boot, Primary Partition (partition number 3 in my case)</li>
</ul>
<p>&nbsp;</p>
<p>When I finally identified which partitions I should clone, I then needed to chose a tool to actually clone them. In the past I was using <strong><em><span style="color: #4f81bd;">SelfImage</span></em></strong> to do such work, however for some reason this program has problems with GPT disks. So then I used a good old tool, known from UNIX like systems, called DD. There is a port of this wonderful tool for Windows called “<a href="http://www.chrysocome.net/dd">DD for Windows</a>“.</p>
<p>Having all my questions answered I started to work with cloning the partitions. This is the procedure I followed to successfully clone my current system to a new SSD disk:</p>
<ol>
<li>Create 2 partitions on new disk (EFI System partition and Windows Primary partition)
<div>
<pre>		
select disk &lt;destination_disk_number&gt;
clean
convert gpt
create partition efi size=SOURCE_EFI_PARTITION_SIZE
format quick fs=fat32 label="SYSTEM"
create partition primary
format quick fs=ntfs label="Windows"
exit</pre>
</div>
</li>
<li>Using DD program (or any other partition cloning program) copy all contents of source EFI System partition and Windows Primary partition to the new, just created, partitions.
<p>WARNING: cloning of the partition which contains Windows system files must be done when the system contained on it is not running – I did that using Win7PE DVD, but you could do this using for example any live Linux distribution.</li>
<li>After cloning is complete you have to assign a letter to both cloned partitions (assume that ESP will be mounted to S, and Windows partition will be mounted to W). Although assigning a letter to cloned Windows partition is not a big deal (you can do this from Disk Management), then assigning the letter to the cloned ESP is not so easy – you cannot do this from Disk Management snap-in. To assign a drive letter to ESP partition you have to do this using DISKPART utility:
<div>
<pre>		
select disk &lt;destination_disk_number&gt;
select partition &lt;index_of_cloned_esp_partition&gt;
assign letter=s
exit</pre>
</div>
</li>
<li>Process of cloning the ESP partition makes one nasty thing to boot manager contained on it – it invalidates the “device” and “osdevice” variables stored within its configuration. So to make the cloned system bootable without BSOD, after the letter to cloned partitions are assigned, you have to edit boot manager configuration contained on ESP partition and properly set the “device” and “osdevice” variables so they point to cloned Windows partition. To do so use the BCDEDIT utility (I assumed below that you mounted cloned ESP partition under S letter and cloned Windows partition was mounted under letter W):
<div>
<pre>		
bcdedit /store s:\boot\bcd /set {default} device partition=W:
bcdedit /store s:\boot\bcd /set {default} osdevice partition=W:</pre>
</div>
<p>WARNING: It is very important to use here a cloned ESP and Windows partitions (mounted under letter S and W), not the original ones.</li>
<li>Done – you should now have a working, cloned Windows 8 system on a new disk.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://p-lider.lideve.eu/wordpress/?feed=rss2&#038;p=183</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows registry autorun locations</title>
		<link>http://p-lider.lideve.eu/wordpress/?p=159</link>
		<comments>http://p-lider.lideve.eu/wordpress/?p=159#comments</comments>
		<pubDate>Sun, 17 Nov 2013 12:14:46 +0000</pubDate>
		<dc:creator><![CDATA[p_lider]]></dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Explorer]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows Server 2008 and 2008 R2]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://p-lider.lideve.eu/wordpress/?p=159</guid>
		<description><![CDATA[Many times people ask me to check their computers for malware or for the reason it is working slow. The first thing I do is to check all programs that automatically start with windows. Normally I remember 4 or 5 locations in registry where to look for such programs and almost all the time I [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Many times people ask me to check their computers for malware or for the reason it is working slow. The first thing I do is to check all programs that automatically start with windows. Normally I remember 4 or 5 locations in registry where to look for such programs and almost all the time I must search the internet for another ones. That made me to write this post, which will allow me to always have the full (or almost full) list about the registry locations for auto startup purpose in one place.</p>
<p>In the below table I described all of the registry locations I know which programs are using to start automatically with Windows:</p>
<style>
.descrcell {
	border: 1px solid #000000; 
	padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0.1cm;
}
.tablecell {
	border: 1px solid #000000;
	padding-top: 0cm;
	padding-bottom: 0.1cm;
	padding-left: 0.1cm;
	padding-right: 0cm;
}
</style>
<div style="overflow: auto; height:500px;">
<table width="707" cellspacing="0" cellpadding="4">
<colgroup>
<col width="15" />
<col width="360" />
<col width="200" /></colgroup>
<tbody>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><b>No.</b></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><b>Registry Location (<span style="color: #0047ff;">blue </span>ones are present in 64bit OS only)</b></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><b>Description</b></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">1</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKML\Software\Microsoft\Windows\CurrentVersion\Run\</span></p>
<p lang="en-US"><span style="color: #0047ff;"><span style="">HKML\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Run\</span></span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">All values<br />
under this key are executed when any user logs in.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">2</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKML\Software\Microsoft\Windows\CurrentVersion\RunOnce\</span></p>
<p lang="en-US"><span style="color: #0047ff;"><span style="">HKML\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\RunOnce\</span></span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">All values<br />
under this key are executed when any user logs in. After execution<br />
the values are being deleted.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">3</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKML\Software\Microsoft\Windows\CurrentVersion\RunServices\</span></p>
<p lang="en-US"><span style="color: #0047ff;"><span style="">HKML\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\RunServices\</span></span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">All values<br />
under this key are executed as services when any user logs in.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">4</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKML\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce\</span></p>
<p lang="en-US"><span style="color: #0047ff;"><span style="">HKML\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\RunServicesOnce\</span></span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">All values<br />
under this key are executed as services when any user logs in.<br />
After execution the values are being deleted.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">5</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKCU\Software\Microsoft\Windows\CurrentVersion\Run\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">All values<br />
under this key are executed when current user logs in.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">6</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKCU\Software\Microsoft\Windows\CurrentVersion\RunOnce\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">All values<br />
under this key are executed when current user logs in. After<br />
execution the values are being deleted.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">7</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKCU\Software\Microsoft\Windows\CurrentVersion\RunOnce\Setup\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">Used only by<br />
setup. A progress bar is being displayed.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">8</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKU\.Default\Software\Microsoft\Windows\CurrentVersion\Run\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">Same as 5 but<br />
applies to LOCAL SYSTEM user only.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">9</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKU\.Default\Software\Microsoft\Windows\CurrentVersion\RunOnce\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">Same as 6 but<br />
applies to LOCAL SYSTEM user only.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">10</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKLM\Software\Microsoft\Windows<br />
NT\CurrentVersion\Winlogon\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US">„<span style="">Shell”<br />
and „Userinit” values contain file names separated<br />
with comma which are executed when any user logs in.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">11</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKCU\Software\Microsoft\Windows<br />
NT\CurrentVersion\Winlogon\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US">„<span style="">Shell”<br />
and „Userinit” values contain file names separated<br />
with comma which are executed when current user logs in.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">12</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKLM\Software\Microsoft\Active<br />
Setup\Installed Components\</span></p>
<p lang="en-US"><span style="color: #0047ff;"><span style="">HKLM\Software\Wow6432Node\Microsoft\Active<br />
Setup\Installed Components\</span></span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">All subkeys<br />
are evaluated for execution when any user logs in. The “StubPath”<br />
value under each subkey describes the program being run.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">13</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKCU\Control<br />
Panel\Desktop</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US">„<span style="">SCRNSAVE.EXE”<br />
value is executed when screen saver is being displayed for current<br />
user.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">14</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKLM\System\CurrentControlSet\Control\Session<br />
Manager\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">The<br />
„BootExecute” value is being executed at boot time.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">15</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKLM\System\Control\WOW\cmdline</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">Value is<br />
executed when 16 bit application is being run for all users.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">16</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKLM\System\Control\WOW\wowcmdline</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">Value is<br />
executed when 16 bit DOS application is being run for all users.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">17</span></p>
</td>
<td sclass="tablecell" width="360">
<p lang="en-US"><span style="">HKLM\Software\Microsoft\Windows\CurrentVersion\ShellServiceObjectDelayLoad\</span></p>
<p lang="en-US"><span style="color: #0047ff;"><span style="">HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\ ShellServiceObjectDelayLoad\</span></span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">Values<br />
contains GUID for COM library which is being run after explorer<br />
finished loading.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">18</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKCU\Software\Microsoft\Windows<br />
NT\CurrentVersion\Windows\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">The „run”<br />
and „load” values are executed when current user logs<br />
in. </span></p>
<p lang="en-US">
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">19</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKLM\Software\Microsoft\Windows<br />
NT\CurrentVersion\Windows\AppInit_DLLs</span></p>
<p lang="en-US"><span style="color: #0047ff;"><span style="">HKLM\Software\Wow6432Node\Microsoft\Windows<br />
NT\CurrentVersion\Windows\AppInit_DLLs</span></span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">AppInit_DLLs<br />
value contains dll file names separated with comma which are being<br />
loaded into every process being run in the system.</span></p>
<p lang="en-US"><span style=""><strong>IMPORTANT</strong>:<br />
Very dangerous entry used by many malware programs.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">20</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\run\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">Same as 5.<br />
Normally values are named here as numbers starting from „1”.</span></p>
</td>
</tr>
<tr valign="TOP">
<td class="tablecell" width="15">
<p lang="en-US"><span style="">21</span></p>
</td>
<td class="tablecell" width="360">
<p lang="en-US"><span style="">HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\run\</span></p>
</td>
<td class="descrcell" width="226">
<p lang="en-US"><span style="">Same as 1.<br />
Normally values are named here as numbers starting from „1”.</span></p>
</td>
</tr>
</tbody>
</table>
</div>
<p>Some information in the above table has been taken from this forum: <a href="https://forums.hak5.org/index.php?/topic/12112-registry-autostart-locations/">Registry AutoStart Locations</a></p>
]]></content:encoded>
			<wfw:commentRss>http://p-lider.lideve.eu/wordpress/?feed=rss2&#038;p=159</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Decommissioning first Exchange 2003 server together with first AG</title>
		<link>http://p-lider.lideve.eu/wordpress/?p=152</link>
		<comments>http://p-lider.lideve.eu/wordpress/?p=152#comments</comments>
		<pubDate>Sun, 24 Mar 2013 16:42:09 +0000</pubDate>
		<dc:creator><![CDATA[p_lider]]></dc:creator>
				<category><![CDATA[MS Exchange]]></category>

		<guid isPermaLink="false">http://p-lider.lideve.eu/wordpress/?p=152</guid>
		<description><![CDATA[Recently I had to decommission the first Exchange 2003 server in our company. Our exchange organization had 2 Exchange 2003 SP2 servers and 2 Administrative Groups (each server in a separate AG). When searching the internet for help in doing that I have found the following article &#8211; http://support.microsoft.com/kb/822931. This article describes almost everything what you [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Recently I had to decommission the first Exchange 2003 server in our company. Our exchange organization had 2 Exchange 2003 SP2 servers and 2 Administrative Groups (each server in a separate AG). When searching the internet for help in doing that I have found the following article &#8211; <a title="http://support.microsoft.com/kb/822931" href="http://support.microsoft.com/kb/822931" target="_blank">http://support.microsoft.com/kb/822931</a>.</p>
<p>This article describes almost everything what you should do except the following:</p>
<ol>
<li>What to do with &#8220;schema-root&#8221;, &#8220;OWAScratch{GUID}&#8221; and &#8220;StoreEvents{GUID}&#8221; system folders.</li>
<li>How to delete the first AG when removing the last server from it.</li>
</ol>
<p>&nbsp;</p>
<p>Ad. 1. It is best to rehome mentioned system folders to the other server as you did with the OAB folders and others, so their content is removed from the server being decommissioned but stays on the other one. This would be the best way to get rid of them from the &#8220;Public Folder store&#8221; of the retiring server.</p>
<p>This is in contrast to simply deleting the folders &#8211; I noticed that deleting these folders can lead to strange behavior: they structure is being regenerated by the Exchange after decommissioning the first server however they do not have a replica so they cannot be used. This is not preventing the public folders from working fine, however this causes errors when looking at them using &#8220;Exchange System Manager&#8221;. I do not know if this can lead to some other, serious problems but seeing an errors in ESM is not a good sign I think.</p>
<p>When there are no mailboxes and public folder instances left on the decommissioned server and other steps mentioned in Microsoft&#8217;s article are already done then you can remove the &#8220;Public Folder Store&#8221; and &#8220;Mailbox Store&#8221; from it.</p>
<p>&nbsp;</p>
<p>Ad. 2 If you want to remove whole Administrative Group which will be empty after decommissioning the server, then before uninstalling the Microsoft Exchange from the server follow these steps:</p>
<ol>
<li>Move the &#8220;Public Folders&#8221; tree to the other AG if it exists in the current AG being removed.</li>
<li>Remove all the connectors from the routing groups stored within this AG and all connectors from other routing groups in other AGs which were connected to the routing groups in the AG being removed.</li>
<li>Uninstall the Microsoft Exchange from the server being decommissioned in this group.</li>
<li>Remove all routing groups from the AG.</li>
<li>Remove all containers from the AG.</li>
<li>Remove the AG.</li>
</ol>
<p>Steps 1,2,4,5,6 are best to be performed using ESM on other Exchange server (anyone which is not being decommisioned).</p>
]]></content:encoded>
			<wfw:commentRss>http://p-lider.lideve.eu/wordpress/?feed=rss2&#038;p=152</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RAID lost after replacing a video card</title>
		<link>http://p-lider.lideve.eu/wordpress/?p=146</link>
		<comments>http://p-lider.lideve.eu/wordpress/?p=146#comments</comments>
		<pubDate>Thu, 10 Jan 2013 18:49:01 +0000</pubDate>
		<dc:creator><![CDATA[p_lider]]></dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://p-lider.rootnode.net/wordpress/?p=146</guid>
		<description><![CDATA[Recently I went into a very, very strange problem. I have a RAID5 disk array in my home PC based on SB8xx AMD controller. Recently I bought a brand new graphics card to my computer. After replacing my old one to my horror I noticed, that BIOS does not see any of my hard drives [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Recently I went into a very, very strange problem. I have a RAID5 disk array in my home PC based on SB8xx AMD controller. Recently I bought a brand new graphics card to my computer. After replacing my old one to my horror I noticed, that BIOS does not see any of my hard drives plugged into my built-in RAID controller on my ASUS motherboard. I was shocked, that replacing a video card can lead to such problems with my RAID (what the hell?). I would never suspect that I can lost my hard drives after replacing a video card&#8230;</p>
<p>Fortunately it was not as bad as I firstly thought. The raid was not seen by the BIOS itself, thats true, however the operating system did see my RAID array without any problems &#8211; like nothing happened. I only lost the boot availability from any hard drives which were connected to my RAID controller.</p>
<p>First thing I did was to change my system hard drive mode from RAID to IDE in system BIOS. That allowed me to boot my system and after that the system saw my RAID array without any problems. That was a relief, because I thought that I have lost my array together with the data contained within.</p>
<p>But that was no solution to me, because the system hard drive operating in IDE mode works noticeably slower and I did not buy an expensive video card to slow down my computer!</p>
<p>Then I started thinking what could have caused such strange behavior. I tried upgrading the BIOS but that did nothing. Then I recalled, that the system BIOS is mapping boot roms of hardware within a special memory, called a <strong><em>Conventional Memory</em></strong> which is always 640KB in size. So maybe the system BIOS has wrongly mapped the roms and not all of them fit into 640KB? And that was it! Disabling some built-in roms (in my case I disabled buil-in IDE BIOS ROM because I do not boot from IDE devices normally) did the trick &#8211; the system BIOS started to see my RAID array again. Uff.</p>
<p>So if anyone would ever go into similar problems after replacing a video card &#8211; to workaround the issue you will have to disable some unused built-in roms in BIOS setup to allow RAID BOOT ROM to fit into conventional memory and be seen by the system BIOS.</p>
]]></content:encoded>
			<wfw:commentRss>http://p-lider.lideve.eu/wordpress/?feed=rss2&#038;p=146</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AMD SB8XX RAID + Windows 8 = BSOD</title>
		<link>http://p-lider.lideve.eu/wordpress/?p=141</link>
		<comments>http://p-lider.lideve.eu/wordpress/?p=141#comments</comments>
		<pubDate>Tue, 18 Dec 2012 20:44:21 +0000</pubDate>
		<dc:creator><![CDATA[p_lider]]></dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://p-lider.rootnode.net/wordpress/?p=141</guid>
		<description><![CDATA[If you are using RAID feature of AMD SB8XX chipsets you can encounter a lot of BSODs when using Windows 8 even during system installation. This is caused by a buggy amdsbs.sys driver which is integrated into Windows 8 distribution media. To be able to successfully install Windows 8 in such situation you must set SATA [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If you are using RAID feature of AMD SB8XX chipsets you can encounter a lot of BSODs when using Windows 8 even during system installation. This is caused by a buggy <strong>amdsbs.sys</strong> driver which is integrated into Windows 8 distribution media.</p>
<p>To be able to successfully install Windows 8 in such situation you must set SATA controller mode of system hard disk to IDE for the time of system installation. After the system is installed first thing to do is to install the newest RAID driver from AMD site and disable the buggy <strong>amdsbs.sys</strong> driver in the registry (without disabling it you will still sporadically encounter BSODs even though the newer and bug free driver from AMD is installed). To completely disable the buggy driver you have to perform the following steps:</p>
<ol>
<li>Open Registry Editor</li>
<li>Navigate to the &#8220;<strong>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\amdsbs</strong>&#8221; key.</li>
<li>In the right pane find &#8220;Start&#8221; parameter, double click it and set its value to 4.</li>
<li>Close the Registry Editor and reboot the system.</li>
</ol>
<p>After installing the newest RAID driver and disabling the buggy one, you can set back the SATA mode of your disks to RAID and the Windows will be working stable now.</p>
]]></content:encoded>
			<wfw:commentRss>http://p-lider.lideve.eu/wordpress/?feed=rss2&#038;p=141</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP and IIS7 using FastCGI &#8211; HTTP 500 error</title>
		<link>http://p-lider.lideve.eu/wordpress/?p=137</link>
		<comments>http://p-lider.lideve.eu/wordpress/?p=137#comments</comments>
		<pubDate>Tue, 18 Dec 2012 20:20:52 +0000</pubDate>
		<dc:creator><![CDATA[p_lider]]></dc:creator>
				<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://p-lider.rootnode.net/wordpress/?p=137</guid>
		<description><![CDATA[When you install a php into IIS7 and try to execute phpinfo() script you can get an HTTP 500 Internal Server Error message. The most probably cause of this is that php-cgi.exe program is writing some text to stderr. By default IIS7 displays an HTTP 500 error message when it detects such behavior even, when [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>When you install a php into IIS7 and try to execute <strong>phpinfo()</strong> script you can get an HTTP 500 Internal Server Error message. The most probably cause of this is that php-cgi.exe program is writing some text to stderr. By default IIS7 displays an HTTP 500 error message when it detects such behavior even, when the CGI displayed only a warning message on stderr. To avoid this problem you have to change default error handling for FastCGI in IIS7.</p>
<p>To do this follow the following steps:</p>
<ol>
<li>Start IIS Manager</li>
<li>Click on &lt;server name&gt; and then in the right pane go to &#8220;FastCGI Settings&#8221;.</li>
<li>Right click on php-cgi.exe file and choose &#8220;Edit&#8230;&#8221;.</li>
<li>Set the &#8220;Standard error mode&#8221; option to &#8220;<strong>IgnoreAndReturn200</strong>&#8221; value.</li>
<li>Click OK and close IIS Manager.</li>
</ol>
<p>After performing mentioned steps you shall no longer see HTTP 500 error messages in the browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://p-lider.lideve.eu/wordpress/?feed=rss2&#038;p=137</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to prevent reinstalling Windows after changing motherboard, disk controller or processor.</title>
		<link>http://p-lider.lideve.eu/wordpress/?p=131</link>
		<comments>http://p-lider.lideve.eu/wordpress/?p=131#comments</comments>
		<pubDate>Fri, 28 Oct 2011 12:53:56 +0000</pubDate>
		<dc:creator><![CDATA[p_lider]]></dc:creator>
				<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://p-lider.rootnode.net/wordpress/?p=131</guid>
		<description><![CDATA[In most cases, when we replace the motherboard with or without a new processor in the computer the previously installed system will not boot &#8211; probably we will end with BSOD. After that most people will go and reinstall the previously installed operating system because they think there is no other option to resurrect the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>In most cases, when we replace the motherboard with or without a new processor in the computer the previously installed system will not boot &#8211; probably we will end with BSOD. After that most people will go and reinstall the previously installed operating system because they think there is no other option to resurrect the old one. Well, this is not true. Here I want to tell what steps (without getting to the very details) you must do to resurrect previously installed system.</p>
<p>But first let think why the old os cannot successfully boot on the new hardware. The problem lies in two places (or at least in one of them). First is the controller of the system disk &#8211; if the controller in the new motherboard comes from other vendor or is simply incompatible with the old controller (for examle the old one was Intel IDE and the new is VIA IDE), then the os does not have the right device driver for it and as the result it cannot access the hard drive during boot resulting in BSOD. The second lies in the processor architecture (but only if the new processor is from other vendor, for example the old one was from Intel and the new one comes from AMD).</p>
<p>To cope with the problem with device driver for disk controller you have to have a Live CD or bootable USB flash (with BartPE, VistaPE, etc.) in which you can access the system partition and the registry of the installed system. You will have then manually place the right driver for the new disk controller in the &#8220;%systemroot%\system32\drivers&#8221; folder and manually add or edit the registry to make the driver being loaded with the system (the drivers are being represented as services in the following registry key: HKLM\System\CurrentControlSet\Services).</p>
<p>When you will be fine with the driver for the hard disk controller, then you need to ensure that the <strong>IntelPPM</strong> service is disabled  (in the registry the <strong><em>start</em></strong> value must be set to <em><strong>4</strong></em>). Without disabling it, when the new processor comes not from Intel, you will end up with BSOD as well.</p>
<p>This is not a detailed explanation of what to do exactly but it shows the way you shall go if you don&#8217;t want to reinstall the whole operating system after changing your hardware like motherboard, disk controller or processor.</p>
]]></content:encoded>
			<wfw:commentRss>http://p-lider.lideve.eu/wordpress/?feed=rss2&#038;p=131</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reading exit code value when executing bat file from other bat file.</title>
		<link>http://p-lider.lideve.eu/wordpress/?p=124</link>
		<comments>http://p-lider.lideve.eu/wordpress/?p=124#comments</comments>
		<pubDate>Fri, 06 May 2011 16:01:30 +0000</pubDate>
		<dc:creator><![CDATA[p_lider]]></dc:creator>
				<category><![CDATA[Windows Batch Scripting]]></category>

		<guid isPermaLink="false">http://p-lider.rootnode.net/wordpress/?p=124</guid>
		<description><![CDATA[If you have to execute a bat file from other bat file, you normally use CALL command to achieve your goal. Everything works fine until you want to retrieve exit code of called bat file (the %ERRORLEVEL% environmental variable) when you executed the CALL command within IF clause.  The problem is that that the %ERRORLEVEL% variable [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If you have to execute a bat file from other bat file, you normally use CALL command to achieve your goal. Everything works fine until you want to retrieve exit code of called bat file (the <em>%ERRORLEVEL%</em> environmental variable) when you executed the CALL command within <strong>IF</strong> clause.  The problem is that that the <em>%ERRORLEVEL%</em> variable will not change its value after calling other bat file until we leave the <strong> IF</strong> clause!</p>
<p>So to sum up &#8211; always read <em>%ERRORLEVEL%</em> variable outside any <strong>IF</strong> clause. Not doing so will cause wrong exit code to be retrieved. This is very strange behavior which made me to spend all day searching what is wrong with my BAT files not working.</p>
]]></content:encoded>
			<wfw:commentRss>http://p-lider.lideve.eu/wordpress/?feed=rss2&#038;p=124</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Restoring URL autocomplete feature in IE.</title>
		<link>http://p-lider.lideve.eu/wordpress/?p=119</link>
		<comments>http://p-lider.lideve.eu/wordpress/?p=119#comments</comments>
		<pubDate>Wed, 29 Dec 2010 19:10:49 +0000</pubDate>
		<dc:creator><![CDATA[p_lider]]></dc:creator>
				<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://p-lider.rootnode.net/wordpress/?p=119</guid>
		<description><![CDATA[I recently faced strange problem with IE8 browser. The URL autocomplete feature suddenly stopped working. I searched the internet deeply to find the fix for this problem with completely no luck. Analyzing how the IE8 browser works I found, that it is looking for a COM object with class ID {80A3E9B0-A246-11D3-BB8C-0090272FA362} when trying to autocomplete URLs. I [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I recently faced strange problem with IE8 browser. The URL autocomplete feature suddenly stopped working. I searched the internet deeply to find the fix for this problem with completely no luck. Analyzing how the IE8 browser works I found, that it is looking for a COM object with class ID {80A3E9B0-A246-11D3-BB8C-0090272FA362} when trying to autocomplete URLs. I then googled for the library which contains the object with mentioned Class ID and found that it is &#8220;<em>langwrbk.dll</em>&#8220;. Having that in mind fixing the problem was as easy as executing one command:<br />
<span style="white-space: nowrap; color: #00aa66; font-size: 12px; font-weight: bold;"><br />
<strong><em>regsvr32 langwrbk.dll</em></strong><br />
</span></p>
<p>This worked in IE8 browser, however I am almost sure it will work in other versions of IE as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://p-lider.lideve.eu/wordpress/?feed=rss2&#038;p=119</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
