<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://msmvps.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>My Notes to Myself and Others... : General Computing</title><link>http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx</link><description>Tags: General Computing</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP2 (Build: 40407.4157)</generator><item><title>Mandatory Integrity Control (What,how and why do we care?)</title><link>http://msmvps.com/blogs/erikr/archive/2008/01/19/mandatory-integrity-control-what-how-and-why-do-we-care.aspx</link><pubDate>Sat, 19 Jan 2008 15:10:03 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1470557</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1470557</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2008/01/19/mandatory-integrity-control-what-how-and-why-do-we-care.aspx#comments</comments><description>&lt;p&gt;&lt;strong&gt;&lt;u&gt;The theory&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Mandatory Integrity Control (MIC) is an additional layer of security built into Vista and&lt;br /&gt;Windows 2008. This particular layer helps Windows protect itself from harmful intentional and unintentional&lt;br /&gt;changes to important objects. Among the objects protected we can find files, directories, registry&lt;br /&gt;key, printers, and actually any object that has a security descriptor.&lt;/p&gt; &lt;p&gt;The beauty of MIC is that it has been there in the background all along protecting you, yet you never knew&lt;br /&gt;it existed. You might have actually encountered it by trying to change a file that is protected by it, and even&lt;br /&gt;though you had the permission you couldn&amp;#39;t...&lt;/p&gt; &lt;p&gt;The MIC layer is a barrier placed before your permissions are checked. Essentially this new road block checks&lt;br /&gt;your privilege level against the object that you are trying to change. If your privilege level is equal or higher you are&lt;br /&gt;allowed to make the change. On the other hand if your privilege is lower you cannot change the object even&lt;br /&gt;though you may have the permission to.&lt;/p&gt; &lt;p&gt;Vista defines four integrity levels in order of precedence from low to high (the Untrusted and Trusted Installer are out&lt;br /&gt;of scope here):&lt;/p&gt; &lt;ol&gt; &lt;li&gt;Low - Used by Internet Explorer 7 to enforce Protected Mode:&lt;br /&gt;&lt;a href="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_8.png"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="157" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_thumb_3.png" width="244" border="0" /&gt;&lt;/a&gt; &lt;br /&gt; &lt;li&gt;Medium - Used for standard users (assumed if no other level is set):&lt;br /&gt;&lt;a href="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_6.png"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="154" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_thumb_2.png" width="244" border="0" /&gt;&lt;/a&gt; &lt;br /&gt; &lt;li&gt;High - Used for administrative actions (CMD with Run as administrator):&lt;br /&gt;&lt;a href="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_10.png"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="154" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_thumb_4.png" width="244" border="0" /&gt;&lt;/a&gt; &lt;br /&gt; &lt;li&gt;System - Used by the system&lt;br /&gt;&lt;a href="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_12.png"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="155" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_thumb_5.png" width="244" border="0" /&gt;&lt;/a&gt; &lt;/li&gt;&lt;/ol&gt; &lt;p&gt;Note that what happens is that each privilege level is represented by a different group SID.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;Privilege levels are inherited, meaning that the privilege level of the creator is inherited by the object&lt;br /&gt;that is created. If a user opens Notepad the users privilege level is attached to the process and the&lt;br /&gt;file created by the process and so on...&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;u&gt;A quick example&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Ok, lets try something practical.&lt;br /&gt;In the following example I will create a new file using an elevated CMD.exe ,view the integrity level by using ICACLS and then&lt;br /&gt;I will try to delete the same file using a standard CMD.EXE...lets see what happens:&lt;/p&gt; &lt;p&gt;&lt;a href="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_16.png"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="125" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_thumb_7.png" width="244" border="0" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Note that CMD was started as an administrator and the file has been created with a privilege level of high (last line&lt;br /&gt;of ICACLS output. The users privilege level is also high (see the WOAMI output and he belong to the Administrators&lt;br /&gt;group).&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;a href="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_18.png"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="164" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_thumb_8.png" width="244" border="0" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Note that the second instance of CMD is not run as and administrator. The file is still there, still with a high level of privilege,&lt;br /&gt;the user has permissions (ICACLS and WHOAMI output) yet he can not delete the file.&lt;br /&gt;The reason is that the current privilege of the user is medium (note the output of WHOAMI).&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;Now to top it off-something odd(or actually normal,depends on how you look at it...). If you attempt to delete the file&lt;br /&gt;from an Explorer window you will receive the following message:&lt;/p&gt; &lt;p&gt;&lt;a href="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_20.png"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;" height="99" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/MandatoryIntegrityControlWhathowandwhydo_D18A/image_thumb_9.png" width="244" border="0" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Once acknowledged (by pressing Continue) the file will be deleted-what happened here?&lt;/p&gt; &lt;p&gt;Well by choosing to continue you elevated the Explorer processes level to High- thus you can delete the file...&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;u&gt;Conclusion&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Based on the above example you can see that MIC is an additional layer of security implanted into Vista. Vista&lt;br /&gt;assigns the level of integrity a specific object belongs too, it&amp;#39;s not configurable and the only way that a user&lt;br /&gt;can elevate his own level of integrity is by interacting with the system an explicitly acknowledging an action(such as&lt;br /&gt;the deletion of the file in our example). A very important point to understand about MIC is that it protects files&lt;br /&gt;from being tampered with,not their privacy. In other words only ACLS will protect the file from being read.&lt;/p&gt; &lt;p&gt;Now I really love to contradict myself (at least I do it in different paragraphs...),there is a way to manipulate&lt;br /&gt;files and even protect it&amp;#39;s contents by using MIC but it&amp;#39;s not a way I would recommend. On the other hand it&amp;#39;s&lt;br /&gt;still good to know and as Mark Minasi mentions what happens if a malware actually creates a file with the privilege&lt;br /&gt;level of System -no one will be able to delete it?!?&lt;/p&gt; &lt;p&gt;Mark has created a tool called CHML.EXE that is a bit more versatile then ICACLS and it allows you to set privilege&lt;br /&gt;levels.&lt;br /&gt;For additional information on CHML look at:&lt;br /&gt;&lt;a title="http://www.minasi.com/vista/chml.htm" href="http://www.minasi.com/vista/chml.htm"&gt;http://www.minasi.com/vista/chml.htm&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1470557" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Security/default.aspx">Security</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Vista/default.aspx">Vista</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/windows/default.aspx">windows</category></item><item><title>Citrix to acquire XenSource</title><link>http://msmvps.com/blogs/erikr/archive/2007/08/19/citrix-to-acquire-xensource.aspx</link><pubDate>Sun, 19 Aug 2007 07:42:28 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1123167</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1123167</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/08/19/citrix-to-acquire-xensource.aspx#comments</comments><description>&lt;p&gt;Somewhat surprising but understandable. The question is how will Citrix size up against Microsoft&lt;br /&gt;if Microsoft will see them as a competition and not a partner.&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.citrix.com/lang/English/lp/lp_680809.asp?ntref=hp_promo1_US" target="_blank"&gt;Official announcement by Citrix&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.brianmadden.com/content/article/The-industry-pulse-after-the-Citrix--XenSource-acquisition" target="_blank"&gt;Brian Maddens comments&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1123167" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/Server/default.aspx">Server</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Microsoft/default.aspx">Microsoft</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Technology/default.aspx">Technology</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Citrix/default.aspx">Citrix</category></item><item><title>Windows 2008 Technical Library</title><link>http://msmvps.com/blogs/erikr/archive/2007/08/10/windows-2008-technical-library.aspx</link><pubDate>Fri, 10 Aug 2007 08:27:03 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1100016</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1100016</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/08/10/windows-2008-technical-library.aspx#comments</comments><description>&lt;p&gt;With the advent of Windows 2008 (Beta),and basically everyone getting their hands on a copy and&lt;br /&gt;trying to learn how to use it, the Windows 2008 Technical Library can be a great resource.&lt;br /&gt;The library describes what&amp;#39;s new and provides step by step guides to explore the features:&lt;/p&gt; &lt;p&gt;&lt;a title="http://technet2.microsoft.com/windowsserver2008/en/library/bab0f1a1-54aa-4cef-9164-139e8bcc44751033.mspx?mfr=true" href="http://technet2.microsoft.com/windowsserver2008/en/library/bab0f1a1-54aa-4cef-9164-139e8bcc44751033.mspx?mfr=true"&gt;http://technet2.microsoft.com/windowsserver2008/en/library/bab0f1a1-54aa-4cef-9164-139e8bcc44751033.mspx?mfr=true&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1100016" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/Server/default.aspx">Server</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Active+Directory/default.aspx">Active Directory</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Windows+2008/default.aspx">Windows 2008</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Server+Core/default.aspx">Server Core</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Microsoft/default.aspx">Microsoft</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/beta/default.aspx">beta</category></item><item><title>Windows Live OneCare 2.0 to feature Online Photo Backup</title><link>http://msmvps.com/blogs/erikr/archive/2007/08/04/windows-live-onecare-2-0-to-feature-online-photo-backup.aspx</link><pubDate>Sat, 04 Aug 2007 13:21:01 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1085013</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1085013</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/08/04/windows-live-onecare-2-0-to-feature-online-photo-backup.aspx#comments</comments><description>&lt;p&gt;A &lt;a href="http://windowsvistablog.com/blogs/windowsexperience/archive/2007/08/03/online-photo-backup-with-windows-live-onecare-2-0.aspx" target="_blank"&gt;post&lt;/a&gt; on the Windows Vista team blog promises that the new OneCare will come with 10GB of &lt;br /&gt;online storage to be used as a backup location for digital photographs(at a cost). The post provides&lt;br /&gt;a short demonstration of the feature.&lt;/p&gt; &lt;p&gt;Wow,10GB. Online backup,kind of blows you away and makes you think about how everything&lt;br /&gt;is going online. If network connections speed keeps growing you will no longer need local storage&lt;br /&gt;and your data will follow you...Ok,I can&amp;#39;t be that positive, think of the ramifications though,your&lt;br /&gt;personal files will be stored on a location that you do not control...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1085013" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Rants/default.aspx">Rants</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Microsoft/default.aspx">Microsoft</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/beta/default.aspx">beta</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/OneCare/default.aspx">OneCare</category></item><item><title>A look at User Account Control (UAC)</title><link>http://msmvps.com/blogs/erikr/archive/2007/08/03/a-deeper-look-at-user-account-control-uac.aspx</link><pubDate>Thu, 02 Aug 2007 23:00:31 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1083445</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1083445</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/08/03/a-deeper-look-at-user-account-control-uac.aspx#comments</comments><description>&lt;p&gt;&lt;b&gt;&lt;u&gt;Overview&lt;/u&gt;&lt;/b&gt; &lt;p&gt;UAC (also called Admin Approval Mode)&amp;nbsp;is a new feature introduced with Windows Vista. The main goal of this&lt;br /&gt;feature is to protect the operating system from malicious or accidental damage. This goal&amp;nbsp;is achieved by &lt;br /&gt;requesting consent from the user when an&amp;nbsp;administrative action is attempted (installing an application, opening&lt;br /&gt;computer management,etc.) &lt;p&gt;UAC has been introduced as the eternal battle between security and functionality&amp;nbsp;rages on.&amp;nbsp;While on&amp;nbsp;one hand we&lt;br /&gt;would like to allow our users to have full access to their systems (which essentially are their tools of trade),&amp;nbsp;on the&lt;br /&gt;other hand we are well aware that allowing unlimited access will without any doubt lead to unintentional/intentional&lt;br /&gt;damage to the local system and far worse to the whole network(virus/worm/adaware&amp;nbsp;infection). &lt;p&gt;On the same note, an additional issue we must deal with are administrative users.&amp;nbsp;The majority&amp;nbsp;of system admins will use&lt;br /&gt;their privileged accounts for daily tasks. If&amp;nbsp;such an account is compromised by malicious software it is literally unstoppable.&lt;br /&gt;Several options were introduced to limit the access of administrative accounts without hampering their ability to manage a&lt;br /&gt;system. One such example is &amp;#39;Run as&amp;#39;. A system administrator can use a standard account for standard tasks, and use a &lt;br /&gt;privileged account to invoke administrative tools (by using &amp;#39;Run as&amp;#39;). Note that when using this feature a different account&lt;br /&gt;is used to invoke a process and a different token (more about these later)&amp;nbsp;is attached to that process (until the process&lt;br /&gt;is stopped). &lt;p&gt;In my opinion, unless enforced by company policy, most system administrators kept on using privileged accounts as&lt;br /&gt;they saw the need of using &amp;#39;Run as&amp;#39; as a nuisance(invoking a different account,entering the user name again and then&lt;br /&gt;the password, too much finger travel). Most system administrators, found the benefit in using &amp;#39;Run as&amp;#39; when&lt;br /&gt;standard users had to be awarded elevated permissions to perform a task (in other words when it didn&amp;#39;t affect them...). &lt;p&gt;Enter UAC. UAC&amp;nbsp;steps in and attempts to provide a type of a compromise between functionality and security&amp;nbsp;by providing an&lt;br /&gt;environment in which using an&amp;nbsp;&amp;quot;elevated account&amp;quot; is less of a nuisance and not much of a choice...&lt;br /&gt;Every time a standard user or an administrative user attempts to&amp;nbsp;execute a command that requires elevated&lt;br /&gt;privileges(not to be confused with permissions) he or she are queried if they are sure that they want to proceed (the exact&lt;br /&gt;form of the query will be discussed later in this article). &lt;p&gt;&lt;b&gt;&lt;u&gt;So, how does(did) it work?&lt;/u&gt;&lt;/b&gt; &lt;p&gt;Privileges and permissions are different things: &lt;ul&gt; &lt;li&gt;&lt;b&gt;Privileges/User rights&lt;/b&gt; -can be defined as broad abilities that apply to a system as a whole. Changing&lt;br /&gt;the time on a system is a privilege/user right,backing up a system is a privilege/user right.  &lt;li&gt;&lt;b&gt;Permissions&lt;/b&gt; -what a user(process by proxy) can do to a specific object (be it a file or a printer, or an object in&lt;br /&gt;Active Directory).&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;When a user logs on to the system he is authenticated(user/password), then a token is built for him by the system. The token,&lt;br /&gt;will include the users privileges and Security Identifiers (SIDs). A&amp;nbsp;token is very similar to a security pass.&lt;br /&gt;[A SID is a&amp;nbsp;unique string that uniquely (obviously) identifies&amp;nbsp;security principals (user accounts,groups)]&lt;br /&gt;A users token is attached to every process that the user initiates. The first process the user initiates in Vista is explorer.exe&lt;br /&gt;which in turn initiates all process, which inherit the token from it.&lt;br /&gt;When a user attempts to&amp;nbsp;perform an administrative task,such as change the time, his token is examined-if he&amp;nbsp;&amp;quot;owns&amp;quot; the privilege,&lt;br /&gt;he will succeed- otherwise he will fail.&amp;nbsp;&lt;br /&gt;A similar process is undertaken when trying to access an object-each object has an Access Control List(ACL) that has Access Control&lt;br /&gt;Entries (ACE). Each ACE defines a specific SID and wether this SID is allowed or denied a specific action. When the user attempts&lt;br /&gt;to take a specific action on an object his token is examined and his SIDs are compared to the ones on the ACL,if there is a match&lt;br /&gt;then the action defined is examined and according to it the user will either succeed or fail. If no match is found,the user will fail.&lt;br /&gt;[the process is very similar to a private club,each member has a card(token) and the bouncer has the list(ACL) of who is allowed to enter]&lt;br /&gt;A users token is created during the log-on process,thus if he is added to a new group&amp;nbsp;for it to be reflected in his token,&amp;nbsp;he has&lt;br /&gt;to logoff and on again so a new token can be created for him. &lt;p&gt;&lt;b&gt;&lt;u&gt;How does(now) it work&lt;/u&gt;&lt;/b&gt; &lt;p&gt;In Windows Vista there are two types of users, standard users and administrator accounts. Every user that is created and logs on&lt;br /&gt;to a Vista system is classified as one or the other. The distinction is important due to the fact that the token creation process has&lt;br /&gt;changed. Each user still gets a token,yet: &lt;ul&gt; &lt;li&gt;&lt;b&gt;Standard user&lt;/b&gt; -Receives one token that identifies the user to the system  &lt;li&gt;&lt;b&gt;Administrator accounts&lt;/b&gt; -Receives two tokens,one that represents the user as a standard user and one that holds all of the elevated&lt;br /&gt;privileges that the user has.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;To facilitate the usage of two tokens a new service called &amp;#39;Application Information&amp;#39; has been added to Vista. This service is responsible&lt;br /&gt;to identify the attempted usage of an administrative privilege and to&amp;nbsp;act upon&amp;nbsp;it based on the policies configured.&amp;nbsp; &lt;p&gt;&lt;b&gt;&lt;u&gt;Implementation and Experience&lt;/u&gt;&lt;/b&gt; &lt;p&gt;UAC is enabled by default.&lt;br /&gt;When Vista is installed, the first user that is created is defined as an administrator account (with UAC enabled). The built-in Administrator&lt;br /&gt;account is disabled (by default). If the Vista installation is an upgrade from XP, and the installation determines that the only administrative&lt;br /&gt;account is the built-in administrator it will leave it enabled with UAC enabled.&lt;br /&gt;You should also note, that the local built-in administrator account can not be used to log on to the system in Safe Mode. Only exception&lt;br /&gt;is in the case of a non-domain joined system that has no other administrative accounts configured on it. If the system is joined to a domain&lt;br /&gt;there are no exceptions(local built-in administrator can not be used to log-on),if there is no other administrative account to be used, and&lt;br /&gt;no cached credentials, Safe Mode with Networking has to be used to enable logon. &lt;p&gt;When an administrator account attempts an administrative task the system will ask for consent. It does so by taking a &amp;quot;dark screenshot&amp;quot;&lt;br /&gt;and imposing above it a window that asks for consent. Now this &amp;quot;dark screenshot&amp;quot;,except being very dramatic is actually a safe environment&lt;br /&gt;that only Windows processes can access. It is possible for malware to imitate the visual appearance of this environment, yet it has to be&lt;br /&gt;already installed on the system(in other words you are already in a bad place). &lt;p&gt;&lt;b&gt;&lt;img height="241" alt="http://technet2.microsoft.com/QueryWS/GetOpenContent.aspx?assetID=80cb9e40-8d3b-48e5-88a5-234967bb4023&amp;amp;DocumentSet=en-US&amp;amp;RenderKey=XML" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/AdeeperlookatUserAccountControlUAC_1E9/clip_image001.jpg" width="439" /&gt;&lt;/b&gt;&lt;b&gt;&lt;u&gt;&lt;br /&gt;&lt;/u&gt;&lt;/b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fig.1 Consent Window &lt;p&gt;By the way, the visual structure of the prompt will vary:&lt;br /&gt;Red background and red shield icon: The application is from a blocked publisher or is blocked by Group Policy. &lt;p&gt;Blue/green background: The application is a Windows Vista administrative application, such as a control panel.  &lt;p&gt;Gray background and gold shield icon: The application is Authenticode signed and trusted by the local computer.  &lt;p&gt;Yellow background and red shield icon: The application is unsigned or signed but not yet trusted by the local computer. &lt;br /&gt;In addition to that the details button will provide the exact name of the executable trying to run. Personally,I would also&lt;br /&gt;like&amp;nbsp;to see the name of the process that invoked the command.&amp;nbsp;  &lt;p&gt;When a standard user attempts to run a task that is of administrative nature he will be prompted to enter the credentials&lt;br /&gt;of an administrator account.  &lt;p&gt;&lt;a&gt;&lt;img height="360" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/AdeeperlookatUserAccountControlUAC_1E9/clip_image003.gif" width="441" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;fig.2 Credentials Window  &lt;p&gt;The third visual cue is a small shield being placed next to menu options that warrant for administrative privileges. &lt;p&gt;&lt;a&gt;&lt;img height="120" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/AdeeperlookatUserAccountControlUAC_1E9/clip_image005.gif" width="240" border="0" /&gt;&lt;/a&gt; &lt;p&gt;&lt;b&gt;&lt;u&gt;Configuring UAC&lt;/u&gt;&lt;/b&gt; &lt;p&gt;UAC can be configured by using the Local Security Policy or by using GPO(Group Policy Object). There are nine settings: &lt;p&gt;&lt;a&gt;&lt;img height="177" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/AdeeperlookatUserAccountControlUAC_1E9/clip_image007.gif" width="777" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;fig.3 UAC settings (local Security Policy) &lt;p&gt;In my opinion the two major settings that control the behavior of this feature are: &lt;ul&gt; &lt;li&gt;Behavior of the elevation prompt for administrators in Admin Approval Mode:  &lt;ul&gt; &lt;li&gt;Elevate without prompting  &lt;li&gt;Prompt for credentials  &lt;li&gt;Prompt for consent (Default)&lt;/li&gt;&lt;/ul&gt; &lt;li&gt;Behavior of the elevation prompt for standard users:  &lt;ul&gt; &lt;li&gt;Automatically deny elevation request for users  &lt;li&gt;Prompt for credentials (Default)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;An additional location that can be used to turn off UAC can be found on the &amp;#39;User Accounts&amp;#39; applet in &amp;#39;Control Panel&amp;#39;. As you can see&lt;br /&gt;in figure 4 the option is &amp;quot;prefixed&amp;quot; by a shield meaning that is a protected action.&lt;br /&gt;&lt;a&gt;&lt;img height="212" alt="image" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/AdeeperlookatUserAccountControlUAC_1E9/clip_image009.gif" width="240" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Fig. 4 Turn UAC off &lt;p&gt;&lt;b&gt;&lt;u&gt;Conclusion&lt;/u&gt;&lt;/b&gt; &lt;p&gt;Considering UAC and past attempts to do something similar, leads me to the conclusion that UAC is a an upgraded &amp;#39;Run as&amp;#39;. What&lt;br /&gt;I mean to say is that when analyzing how this works we can see that UAC saves the hassle of having to enter credentials for system&lt;br /&gt;administrators by allowing them to use one account with two tokens.&lt;br /&gt;UAC provides safety,it might prevent mistakes done by system administrators and it&amp;nbsp;might prevent the installation/execution&lt;br /&gt;of unwanted software by&amp;nbsp;providing the user with a &amp;quot;second chance&amp;quot;.&amp;nbsp; &lt;p&gt;A subject I have not&amp;nbsp;mentioned here is the issue of application compatibility this is an important subject&lt;br /&gt;since it enable us to use applications that have not been built with UAC in mind.&lt;br /&gt;For that and more on UAC you can visit: &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/windowsvista/aa905113.aspx"&gt;http://technet.microsoft.com/en-us/windowsvista/aa905113.aspx&lt;/a&gt; &lt;p&gt;&lt;a title="http://technet.microsoft.com/en-us/windowsvista/aa905113.aspx" href="http://technet.microsoft.com/en-us/windowsvista/aa905113.aspx"&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1083445" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Security/default.aspx">Security</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Vista/default.aspx">Vista</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/windows/default.aspx">windows</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Microsoft/default.aspx">Microsoft</category></item><item><title>Phishing Sites and IE7</title><link>http://msmvps.com/blogs/erikr/archive/2007/08/01/phishing-sites-and-ie7.aspx</link><pubDate>Wed, 01 Aug 2007 20:05:44 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1079915</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1079915</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/08/01/phishing-sites-and-ie7.aspx#comments</comments><description>&lt;div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:c4e7ee87-0da3-4733-a8a5-8847e171c651" style="padding-right:0px;display:inline;padding-left:0px;padding-bottom:0px;margin:0px;padding-top:0px;"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/IE7" rel="tag"&gt;IE7&lt;/a&gt;, &lt;a href="http://technorati.com/tags/rants" rel="tag"&gt;rants&lt;/a&gt;, &lt;a href="http://technorati.com/tags/general%20computing" rel="tag"&gt;general computing&lt;/a&gt;&lt;/div&gt; &lt;p&gt;I am an Ebay user. As an Ebay user I am a target for phishng attacks. About a week ago I have made a purchase&lt;br /&gt;and I forogt to leave feedback for the seller. A few minutes ago,I received an e-mail saying that I have received&lt;br /&gt;a message from a seller(nothing special for someone who uses Ebay). I was a bit distracted so I pressed the&lt;br /&gt;hyperlink found in the e-mail.&lt;/p&gt; &lt;p&gt;In a second I was transported to a message from IE7 saying that I am trying to reach a site that is reported as &lt;br /&gt;a known site that is used for phishing:&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;img height="38" alt="Capture" src="http://msmvps.com/blogs/erikr/WindowsLiveWriter/PhishingSitesandIE7_143F5/Capture_1.jpg" width="1024" /&gt; &lt;/p&gt; &lt;p&gt;Moral of the story,watch what you click on and good work IE7!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1079915" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Rants/default.aspx">Rants</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/IE7/default.aspx">IE7</category></item><item><title>A memory leak occurs if the DNS dynamic update protocol is enabled on a DHCP server that is running Windows Server 2003</title><link>http://msmvps.com/blogs/erikr/archive/2007/07/27/a-memory-leak-occurs-if-the-dns-dynamic-update-protocol-is-enabled-on-a-dhcp-server-that-is-running-windows-server-2003.aspx</link><pubDate>Fri, 27 Jul 2007 06:18:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1060809</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1060809</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/07/27/a-memory-leak-occurs-if-the-dns-dynamic-update-protocol-is-enabled-on-a-dhcp-server-that-is-running-windows-server-2003.aspx#comments</comments><description>&lt;p&gt;&lt;a href="http://support.microsoft.com/kb/939928"&gt;http://support.microsoft.com/kb/939928&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1060809" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/Server/default.aspx">Server</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category></item><item><title>Windows Server 2008 Component Posters</title><link>http://msmvps.com/blogs/erikr/archive/2007/07/24/windows-server-2008-component-posters.aspx</link><pubDate>Tue, 24 Jul 2007 20:21:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1053762</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1053762</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/07/24/windows-server-2008-component-posters.aspx#comments</comments><description>&lt;div class="downloadInfo"&gt;&lt;a class="" title="Description" name="Description"&gt;&lt;/a&gt;&lt;span&gt;These two posters, originally published in the July 2007 issue of TechNet Magazine, provide a&lt;br /&gt;strong visual tool to aide in the understanding of various features and components of Windows&lt;br /&gt;Server 2008. One poster focuses exclusively on powerful new Active Directory technologies,&lt;br /&gt;while the other provides a technical look at a variety of new features available in Windows Server&lt;br /&gt;2008 (such as Server Core, Network Access Protection, and more).&lt;/span&gt;&lt;/div&gt;
&lt;div class="downloadInfo"&gt;&lt;span&gt;&lt;/span&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class="downloadInfo"&gt;&lt;span&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c2b9e44e-0bbd-47cb-bc09-b3d48be7f867&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=c2b9e44e-0bbd-47cb-bc09-b3d48be7f867&amp;amp;displaylang=en&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1053762" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/Server/default.aspx">Server</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Active+Directory/default.aspx">Active Directory</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Windows+2008/default.aspx">Windows 2008</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Server+Core/default.aspx">Server Core</category></item><item><title>Events and Errors Message Center</title><link>http://msmvps.com/blogs/erikr/archive/2007/07/24/events-and-errors-message-center.aspx</link><pubDate>Tue, 24 Jul 2007 19:25:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1053542</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1053542</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/07/24/events-and-errors-message-center.aspx#comments</comments><description>&lt;p&gt;When one of the systems that you manage fails one the best ideas for troubleshooting is&lt;br /&gt;looking at the logs. If the OS you are using is from Microsoft the&amp;nbsp;main location&amp;nbsp;for logs is &lt;br /&gt;the event viewer.&lt;/p&gt;
&lt;p&gt;The only problem with logs is that at times they provide very cryptic messages. In order to figure&lt;br /&gt;out what the entry in the log means or what remedies can be used I personally use the following&lt;br /&gt;website:&lt;br /&gt;&lt;a href="http://www.eventid.net/"&gt;http://www.eventid.net&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;A couple of day ago I have noticed a KB article announcing that an &amp;quot;&lt;span id="lblPageHeader"&gt;Events and Errors Message Center&amp;quot;&lt;br /&gt;has been opened. This center will enable you to search for specific events (using the filters provided)&lt;br /&gt;and once you do find the event you can also browse potential solutions/explanations.&lt;br /&gt;The URL is:&lt;br /&gt;&lt;a href="http://www.microsoft.com/technet/support/ee/ee_advanced.aspx"&gt;http://www.microsoft.com/technet/support/ee/ee_advanced.aspx&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1053542" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Rants/default.aspx">Rants</category></item><item><title>Windows 2008 Impressions: Attended Installation</title><link>http://msmvps.com/blogs/erikr/archive/2007/07/14/windows-2008-impressions-attended-installation.aspx</link><pubDate>Sat, 14 Jul 2007 18:36:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1022665</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1022665</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/07/14/windows-2008-impressions-attended-installation.aspx#comments</comments><description>&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;The attended installation process of Windows 2008 has been simplified.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;Until Windows 2008, the process of&amp;nbsp;installing a Windows system included the basic configuration of the system.&lt;br /&gt;In other words the installer was asked a bunch of question he had to answer and once he was done he had a running&lt;br /&gt;system. The system still needed to be configured but a basic system was up and running.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;Windows 2008 changes this, (the installation no longer provides a running system) in order to simplify the installation &lt;br /&gt;process almost all configurative questions have been removed and we are left with the bare necessities. The installation&lt;br /&gt;process (very similar to Vista’s installation process) is comprised of the following questions:&lt;/font&gt;&lt;/p&gt;
&lt;p style="MARGIN-LEFT:38.25pt;TEXT-INDENT:-18pt;mso-list:l0 level1 lfo1;"&gt;&lt;font face="Times New Roman"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;font size="3"&gt;1.&lt;/font&gt;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;strong&gt; &lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;strong&gt;Location (locale and time zone)&lt;/strong&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style="MARGIN-LEFT:38.25pt;TEXT-INDENT:-18pt;mso-list:l0 level1 lfo1;"&gt;&lt;font face="Times New Roman"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;font size="3"&gt;2.&lt;/font&gt;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;strong&gt;Disk partitioning&lt;/strong&gt;-note that you do not have to create a partition, you can simply choose empty space and the&lt;br /&gt;installation procedure will configure it for you&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style="MARGIN-LEFT:38.25pt;TEXT-INDENT:-18pt;mso-list:l0 level1 lfo1;"&gt;&lt;font face="Times New Roman"&gt;&lt;span style="mso-list:Ignore;"&gt;&lt;font size="3"&gt;3.&lt;/font&gt;&lt;span style="FONT:7pt &amp;#39;Times New Roman&amp;#39;;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;strong&gt;Product Key&lt;/strong&gt;-by entering the correct key the correct version of the OS is chosen, if no key is entered the installer is&lt;br /&gt;warned yet he is allowed to choose the version of the installation and he has to provide the key later on.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;That’s it.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;To Windows veterans this may seem a bit strange, you may be asking yourself, where is the part in which we configure&lt;br /&gt;networking, you may also be asking yourself where do I chose the components I want installed…the answer is that they&lt;br /&gt;have been removed from the installation process for the sake of simplicity. &lt;/font&gt;&lt;/p&gt;&lt;font face="Times New Roman" size="3"&gt;When you are done with the installation all you get is a system with a very basic installation of Windows 2008 Server. System&lt;br /&gt;configuration has been moved from the installation further down the line. Do not fear though, it has not been moved too far down&lt;br /&gt;the line, you actually configure your server just after you have installed it with two new tools provided by the system (I will write&lt;br /&gt;about them in my next post on the subject).&lt;/font&gt;&lt;font face="Times New Roman" size="3"&gt;&amp;nbsp;&lt;/font&gt; 
&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;I am not sure how to treat this change or how I feel about it. On one hand there is no doubt that this change simplifies the installation&lt;br /&gt;process of the OS which in turn allows quicker installations due to it’s “fire and forget” style, yet on the other hand it provides less&lt;br /&gt;flexibility during the installation phase and it makes it seem a lot simpler to deploy a server. In addition to that it also makes it seem simpler&lt;br /&gt;to deploy the OS. You may be asking why does that seem problematic?&lt;/font&gt;&lt;/p&gt;&lt;font face="Times New Roman" size="3"&gt;Begin rant: The field of IT is being treated with less respect due to the fact that everyone feels that they can get involved with IT,&lt;br /&gt;they understand IT and they can do IT&amp;nbsp;since IT is simple. When all you need to deploy and OS is to click a mouse things&lt;br /&gt;will get a lot worse…&lt;br /&gt;Obviously this isn&amp;#39;t the root of all evil yet deploying a server correctly isn&amp;#39;t as simple as clicking on a button and in my opinion&lt;br /&gt;the impression that it is as simple as clicking on a button shouldn&amp;#39;t be created...after all perception is everything.&lt;/font&gt;&lt;font face="Times New Roman" size="3"&gt;&amp;nbsp;&lt;/font&gt; 
&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;Disclaimer- The experiences and the ideas expressed in this post are my personal experiences. If you feel that they are inaccurate&lt;br /&gt;or incorrect feel free to contact me about them. &lt;/font&gt;&lt;/p&gt;&lt;font face="Calibri" size="3"&gt;&amp;nbsp;&lt;/font&gt; 
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1022665" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/Server/default.aspx">Server</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Rants/default.aspx">Rants</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Windows+2008/default.aspx">Windows 2008</category></item><item><title>TCP Header Checksums Displayed as Corrupted (using Network Monitor)</title><link>http://msmvps.com/blogs/erikr/archive/2007/07/11/tcp-header-checksums-displayed-as-corrupted-using-network-monitor.aspx</link><pubDate>Wed, 11 Jul 2007 16:12:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1015179</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1015179</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/07/11/tcp-header-checksums-displayed-as-corrupted-using-network-monitor.aspx#comments</comments><description>&lt;p&gt;OK,so I was troubleshooting and odd issue with an FTP server and one of the things&lt;br /&gt;that caught my attention while using Network Monitor (on a Windows 2000 server)&lt;br /&gt;was that some(actually almost all)&amp;nbsp;of the TCP checksums (originating from the server)&lt;br /&gt;were found to be incorrect.&lt;/p&gt;
&lt;p&gt;At first I thought I was having a networking problem,yet someone pointed out the fact &lt;br /&gt;that since the calculation was being offloaded to the NIC Network Monitor may be &lt;br /&gt;calculating the checksums incorrectly.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://support.microsoft.com/kb/243294"&gt;http://support.microsoft.com/kb/243294&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1015179" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/Server/default.aspx">Server</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Security/default.aspx">Security</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Networking/default.aspx">Networking</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Rants/default.aspx">Rants</category></item><item><title>TechNet Webcast: The New Server Core Installation Option in Windows Server 2008 (Level 300)</title><link>http://msmvps.com/blogs/erikr/archive/2007/07/08/technet-webcast-the-new-server-core-installation-option-in-windows-server-2008-level-300.aspx</link><pubDate>Sun, 08 Jul 2007 19:27:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:1010005</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=1010005</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/07/08/technet-webcast-the-new-server-core-installation-option-in-windows-server-2008-level-300.aspx#comments</comments><description>&lt;p&gt;The description from the website:&lt;br /&gt;&lt;/p&gt;
&lt;h5&gt;Summary&lt;/h5&gt;
&lt;hr class="details" /&gt;

&lt;p&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;font face="Verdana"&gt;&lt;font face="Verdana"&gt;In this session, we explore Server Core, a new minimal installation option included in Windows Server 2008. A Server Core installation provides a minimal environment for running a subset of the server roles, the Active Directory directory service, Active Directory Lightweight Directory Services, Domain Name System (DNS), Dynamic Host Configuration Protocol (DHCP), and file, print, and media services. Server Core also can reduce the servicing and management requirements and the attack surface for those server roles. In this webcast, we discuss the architecture of Server Core, in addition to installation, configuration, and administration of Server Core.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Presenter: &lt;/b&gt;Andrew Mason, Principal Program Manager Lead, Microsoft Corporation&lt;br /&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Verdana"&gt;&lt;font face="Verdana"&gt;&lt;a class="" href="http://www.microsoft.com/events/EventDetails.aspx?CMTYSvcSource=MSCOMMedia&amp;amp;Params=%7eCMTYDataSvcParams%5e%7earg+Name%3d%22ID%22+Value%3d%221032341828%22%2f%5e%7earg+Name%3d%22ProviderID%22+Value%3d%22A6B43178-497C-4225-BA42-DF595171F04C%22%2f%5e%7earg+Name%3d%22lang%22+Value%3d%22en%22%2f%5e%7earg+Name%3d%22cr%22+Value%3d%22US%22%2f%5e%7esParams%5e%7e%2fsParams%5e%7e%2fCMTYDataSvcParams%5e" target="_blank"&gt;Follow the link to view the webcast.&lt;/a&gt;&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=1010005" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/Server/default.aspx">Server</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Windows+2008/default.aspx">Windows 2008</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Server+Core/default.aspx">Server Core</category></item><item><title>Funny article about iPhone...</title><link>http://msmvps.com/blogs/erikr/archive/2007/06/30/funny-article-about-iphone.aspx</link><pubDate>Sat, 30 Jun 2007 18:56:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:995044</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=995044</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/06/30/funny-article-about-iphone.aspx#comments</comments><description>&lt;p&gt;I have no opinion or clue about the accuracy of the article titled &amp;quot;&lt;span class="headline"&gt;Ten Reasons Why You Shouldn&amp;#39;t Buy an iPhone&amp;quot;by Jim Lynch&lt;br /&gt;published&amp;nbsp;at extremtech.com, yet it managed to make me laugh(read through it,until the end-and I hope you will understand&lt;br /&gt;what I found amusing):&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="headline"&gt;&lt;a href="http://www.extremetech.com/article2/0,1697,2151961,00.asp"&gt;http://www.extremetech.com/article2/0,1697,2151961,00.asp&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="headline"&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span class="headline"&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span class="headline"&gt;-- Erik Rozman&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=995044" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Rants/default.aspx">Rants</category></item><item><title>Exchange 2003 OWA and Vista</title><link>http://msmvps.com/blogs/erikr/archive/2007/04/07/exchange-2003-owa-and-vista.aspx</link><pubDate>Sat, 07 Apr 2007 11:28:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:764419</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=764419</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/04/07/exchange-2003-owa-and-vista.aspx#comments</comments><description>&lt;P&gt;An oldie but I see it coming up in the newsgroups...my guess is that some sysadmins forgot to &lt;BR&gt;fix the problem and the users (specifically home users) trying to access their mailboxes are &lt;BR&gt;surprised and convinced that something is wrong with their own system(which to some extent is&lt;BR&gt;true...):&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/kb/911829"&gt;http://support.microsoft.com/kb/911829&lt;/A&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=764419" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/Exchange/default.aspx">Exchange</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Rants/default.aspx">Rants</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Vista/default.aspx">Vista</category></item><item><title>Vista Tip-Administrative CMD</title><link>http://msmvps.com/blogs/erikr/archive/2007/01/27/vista-tip-administrative-cmd.aspx</link><pubDate>Sat, 27 Jan 2007 13:47:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:523701</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=523701</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/01/27/vista-tip-administrative-cmd.aspx#comments</comments><description>&lt;P&gt;Most administrators use the command prompt to run administrative tasks. &lt;BR&gt;The problem is that if you are using Vista, opening the CMD will not allow you to run&lt;BR&gt;commands as an administrator(unclear to me as to why couldn't they simply let the UAC&lt;BR&gt;take care of it).&lt;/P&gt;
&lt;P&gt;To solve this you could start the CMD using a shortcut with RUNAS, a better solution&lt;BR&gt;though is creating a shortcut for CMD and setting the check box by the 'Run as administrator'&lt;BR&gt;(Properties&amp;gt;Advanced).&lt;BR&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=523701" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Security/default.aspx">Security</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Vista/default.aspx">Vista</category></item><item><title>Which process uses a specific port (TCP/UDP)</title><link>http://msmvps.com/blogs/erikr/archive/2007/01/05/which-process-uses-a-specific-port-tcp-udp.aspx</link><pubDate>Fri, 05 Jan 2007 13:34:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:471267</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=471267</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/01/05/which-process-uses-a-specific-port-tcp-udp.aspx#comments</comments><description>&lt;P&gt;The most common reason for such a question to come up is security.&lt;BR&gt;TCP/UDP ports are virtual windows on the walls that represent your computer.&lt;BR&gt;If a perpetrator would like to gain access to your system he would do such using one&lt;BR&gt;such window. &lt;BR&gt;&lt;BR&gt;We might close all those windows (and it is advisable to do so when accessing the&lt;BR&gt;Internet, by using a&amp;nbsp;firewall that blocks direct access to the ports on your system),&lt;BR&gt;yet due to their nature there may be times when you would like to allow access to your&lt;BR&gt;system (hosting a website on your system or simply sharing files among systems).&lt;/P&gt;
&lt;P&gt;Another important facet of the issue is that once a system is penetrated by a perpetrator&lt;BR&gt;he might want to call his friends and have a party or in other words a malicious software&lt;BR&gt;might open a port and allow access to others(publish your IP and port on an IRC channel).&lt;BR&gt;&lt;BR&gt;Better yet,if you are infected by a virus, it might be using your system to scan for other&lt;BR&gt;systems that might be vulnerable while striving to infect them.&lt;BR&gt;&lt;BR&gt;How can we check who exactly is opening windows on our systems?&lt;BR&gt;&lt;BR&gt;The best way to do this is to verify which process has opened a specific port.&lt;BR&gt;If the process is familiar you are OK yet if you identify a process which you can not&lt;BR&gt;account for you may be in trouble. &lt;BR&gt;&lt;BR&gt;The following methods can be used to match open ports to processes:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Windows XP and higher- use the NETSTAT -O command&lt;/LI&gt;
&lt;LI&gt;Pre&amp;nbsp;XP- &lt;A class="" title=FPORT href="http://www.foundstone.com/index.htm?subnav=resources/navigation.htm&amp;amp;subcontent=/resources/proddesc/fport.htm" target=_blank&gt;Download&lt;/A&gt; a neat tool called FPORT from Foundstone (McAffe)&lt;BR&gt;&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;Once you have the output you can simply Google the process names to determine their roles.&lt;BR&gt;If you do this from time to time it possible to track behavioral changes and easily track down&lt;BR&gt;unknown open ports on a system.&lt;BR&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=471267" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Security/default.aspx">Security</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Networking/default.aspx">Networking</category></item><item><title>Still playing with RAM</title><link>http://msmvps.com/blogs/erikr/archive/2007/01/02/still-playing-with-ram.aspx</link><pubDate>Tue, 02 Jan 2007 09:38:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:464582</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=464582</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2007/01/02/still-playing-with-ram.aspx#comments</comments><description>&lt;P&gt;I can't really say what happened since I don't understand it yet it works,so I guess that is important.&lt;/P&gt;
&lt;P&gt;After losing one memory bank on my system(one of two 1GB sticks) and forgetting about it&lt;BR&gt;I was awakened when my virtual machines would not start...Now looking for 133 memory sticks&lt;BR&gt;is quite a challenge but I found a few that might be good.&lt;/P&gt;
&lt;P&gt;So I tried to install it, two new sticks...system counts the memory and verifies it and then simply&lt;BR&gt;freezes...I replace the old stick,it works...&lt;/P&gt;
&lt;P&gt;I put the old one and then new one together-doesn't work(which is logical).&lt;/P&gt;
&lt;P&gt;Switched between the slots and presto...two memory sticks from different manufacturers&lt;BR&gt;with different speeds and it works...&lt;BR&gt;Why ask questions...&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=464582" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Rants/default.aspx">Rants</category></item><item><title>Testing Memory (RAM)</title><link>http://msmvps.com/blogs/erikr/archive/2006/12/31/testing-memory-ram.aspx</link><pubDate>Sun, 31 Dec 2006 19:39:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:461889</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=461889</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2006/12/31/testing-memory-ram.aspx#comments</comments><description>&lt;P&gt;OK,&lt;BR&gt;So why I remembered this is a long and odd story which includes myself forgetting&lt;BR&gt;that I have&amp;nbsp;faulty memory installed on my laptop, wanting to install Fedora Core 6 inside&lt;BR&gt;VMware on the same laptop and ending up recompiling the kernel in order to be able to&lt;BR&gt;install VMware tools and failing...&lt;/P&gt;
&lt;P&gt;Anyways Microsoft have a nifty tool that allows you to test your memory modules&lt;BR&gt;by burning a CD:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://oca.microsoft.com/en/windiag.asp"&gt;http://oca.microsoft.com/en/windiag.asp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Yes I know,it has been there for long and might have even mentioned it in the past but&lt;BR&gt;but it's still useful (and I am getting old...).&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=461889" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Rants/default.aspx">Rants</category></item><item><title>TombstoneLifetime 2003 SP1</title><link>http://msmvps.com/blogs/erikr/archive/2006/03/04/85442.aspx</link><pubDate>Sat, 04 Mar 2006 18:53:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:85442</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=85442</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2006/03/04/85442.aspx#comments</comments><description>&lt;P&gt;A major yet not so known change. From 60 days we are going to 180 days&lt;BR&gt;on new Active Directory(SP1) implementations and upgrades that have slipstreamed copy.&lt;/P&gt;
&lt;P&gt;In other words your backups should be valid for 180 days and&amp;nbsp;deleted objects&lt;BR&gt;are saved for&amp;nbsp;180 days...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/kb/q216993/"&gt;http://support.microsoft.com/kb/q216993/&lt;/A&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=85442" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Active+Directory/default.aspx">Active Directory</category></item><item><title>Why sandboxes are important...or in other words don't shoot yourself in the leg</title><link>http://msmvps.com/blogs/erikr/archive/2005/09/19/66906.aspx</link><pubDate>Mon, 19 Sep 2005 20:23:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:66906</guid><dc:creator>Erik Rozman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/erikr/rsscomments.aspx?PostID=66906</wfw:commentRss><comments>http://msmvps.com/blogs/erikr/archive/2005/09/19/66906.aspx#comments</comments><description>&lt;P&gt;Why not you ask?&lt;BR&gt;Well since it may be painfull...&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;Microsoft released a patch for Exchange 2003(888619). I read the documentation and it seemed to be relatively harmless...so I decided to apply it to my environment.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/?kbid=888619"&gt;http://support.microsoft.com/?kbid=888619&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;[Yes,I know that it is extremely important to test patches before they are applied to production servers&lt;BR&gt;but I guess I like living on the edge...yea,right!]&lt;/P&gt;
&lt;P&gt;My environment has a front-end/back-end configuration-after the patch was applied to one of my servers OWA&lt;BR&gt;stopped working for the users homed on it.&lt;BR&gt;&lt;BR&gt;To make it even worse when I tried applying the patch(before understanding that I have an issue) to my other servers,&lt;BR&gt;I got an error message stating that my server does not have SP1 for Exchange 2003 installed so I can't install the patch.&lt;BR&gt;I have SP1 installed as far as I can tell.&lt;BR&gt;[I start to get that sinking feeling...]&lt;/P&gt;
&lt;P&gt;After removing the patch from the problematic server the service was resumed.&lt;BR&gt;&lt;BR&gt;I don't really know what happened since I didn't have time to investigate it. I don't blame anyone for this(nor do I imply that there is a problem with the patch)&amp;nbsp;but myself for not testing the patch and in addition to that it is possible that I have a problem in my environment that caused this.&lt;/P&gt;
&lt;P&gt;Be sure to test the effects of a patch to your environment...&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=66906" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/erikr/archive/tags/Exchange/default.aspx">Exchange</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/General+Computing/default.aspx">General Computing</category><category domain="http://msmvps.com/blogs/erikr/archive/tags/Rants/default.aspx">Rants</category></item></channel></rss>