tag:blogger.com,1999:blog-23199021919367308282008-07-06T23:16:01.499+05:30Uday's Tech HomeUdaynoreply@blogger.comBlogger96125tag:blogger.com,1999:blog-2319902191936730828.post-45001192607600372662008-06-22T21:58:00.004+05:302008-06-22T22:08:08.168+05:30How to Debug Feature Receiver Assemblies in Visual Studio - MOSS 2007If you try to activate the feature using stsadm command you will not be able to debug the feature receiver assemblies.<br /><br /><br /><br />Open the Site collection features in<br /><br />Site Actions -><br /><br />Site Settings -><br /><br />Modify All Site Settings -><br /><br />Site Collection Administration -> Site Collection features<br /><br /><br /><p></p><p><a href="http://bp3.blogger.com/_7KK9DO20RjU/SF5-2C8ryEI/AAAAAAAAAXg/OkuZ845W-yk/s1600-h/SiteCollFeatures.JPG"><img id="BLOGGER_PHOTO_ID_5214744885511047234" style="CURSOR: hand" alt="" src="http://bp3.blogger.com/_7KK9DO20RjU/SF5-2C8ryEI/AAAAAAAAAXg/OkuZ845W-yk/s400/SiteCollFeatures.JPG" border="0" /></a></p><ul><li>Attach the w3wp.exe process in visual studio.</li><li>Place breakpoints.</li><li>Then Activate the feature in site collection features</li></ul>Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-70510714005410621732008-06-20T23:53:00.002+05:302008-06-20T23:58:43.942+05:30Set Default Text for RichHtmlField in MOSS 2007In WCM most of you guys may use RichHtmlField in publishing Layout.<br />To set default text property to RichHtmlField using HTML property to pass your default text.<br /><br />Example:<br />[PublishingWebControls:RichHtmlField FieldName="CountrySectionTitle3" runat="server" id="RichHtmlField5" AllowExternalUrls="true" AllowFonts="true" AllowHeadings="false" AllowHtmlSourceEditing="false" AllowHyperlinks="true" AllowImages="false" AllowLists="false" AllowReusableContent="false" AllowTables="false" AllowTextMarkup="false" Html="[html][body][p]--Default Text--[/p][/body][/html]"] [/PublishingWebControls:RichHtmlField]<br /><br />Note:<br />Sorry Guyz, Still i am not able to post the tags pls replace '[' with '<' and ']' with '>'Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-710851990894897432008-06-07T01:41:00.004+05:302008-06-21T00:04:35.396+05:30MOSS 2007 Patches after SP1Some of the Patches released by microsoft for MOSS 2007 after SP1<br /><a href="http://support.microsoft.com/kb/941422">http://support.microsoft.com/kb/941422</a><br /><a href="http://support.microsoft.com/kb/941274">http://support.microsoft.com/kb/941274</a><br /><a href="http://support.microsoft.com/kb/942819">http://support.microsoft.com/kb/942819</a><br /><a href="http://support.microsoft.com/kb/948945">http://support.microsoft.com/kb/948945</a><br /><a href="http://support.microsoft.com/kb/948947">http://support.microsoft.com/kb/948947</a><br /><a href="http://support.microsoft.com/kb/948957">http://support.microsoft.com/kb/948957</a><br /><a href="http://support.microsoft.com/kb/949402/en-us">http://support.microsoft.com/kb/949402/en-us</a><br /><a href="http://support.microsoft.com/kb/949955/en-us">http://support.microsoft.com/kb/949955/en-us</a><br /><a href="http://support.microsoft.com/kb/950280/en-us">http://support.microsoft.com/kb/950280/en-us</a><br /><a href="http://support.microsoft.com/kb/950292/en-us">http://support.microsoft.com/kb/950292/en-us</a><br /><a href="http://support.microsoft.com/kb/950487/en-us">http://support.microsoft.com/kb/950487/en-us</a>Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-82621238229064732342008-05-17T02:14:00.003+05:302008-05-17T02:26:48.384+05:30How to Change the Background Color of WebPart TitleHey Guys,<br />I got a requirement from the business to change the Background color of the webpart title for Out of Box webparts. Then i started looking on CSS I found the following CSS class which overrides the style of WebPart Title.<br /><br />.ms-WPHeader TD<br />{<br />border-bottom:0px solid #4e7cb7;<br />border-collapse:collapse;<br />}<br /><br />Change this class as per your requirement then you are done....<br /><br />.ms-WPHeader TD{<br />height:40px;<br />background-color: #0174DF;<br />font-size: larger;<br />font-weight: bold;<br />border-bottom:0px solid #4e7cb7;<br />border-collapse:collapse;<br />}Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-44118629277452510682008-03-10T15:02:00.002+05:302008-03-10T15:05:57.866+05:30MOSS 2007 Pricing & Costing InfoI have consolidated few links from Microsoft for MOSS 2007 Product Costing.<br /><br /><a href="http://office.microsoft.com/en-us/sharepointserver/FX102176831033.aspx">Microsoft Office SharePoint Server 2007 and Related Technologies pricing </a><br /><br /><a href="http://office.microsoft.com/en-us/sharepointserver/HA101978031033.aspx">Microsoft Office SharePoint Server 2007 products comparison download </a><br /><br /><a href="http://office.microsoft.com/en-us/products/FX101754511033.aspx?ofcresset=1">2007 Microsoft Office system pricing and upgrade information</a>Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-90651089488719381362008-03-10T01:03:00.002+05:302008-03-10T01:09:50.332+05:30How to Hide Quick Launch in MOSS 2007Do you want to hide your quick launch Bar in MOSS 2007<br />There are two ways to hide the quick launch bar<br />1. You can edit directly in CSS<br />2. Adding Hidden content editor webpart<br /><br />Add new content editor webpart<br />Click Source Editor in ToolPane<br />paste the below code in content editor webpart<br />[style]<br />.ms-quicklaunch<br />{ <br /> display:none;<br />}<br />.ms-navframe<br />{ <br />display: none;<br />}<br />[/style]<br />Use "<" &amp; ">" instead of "[" &amp; "]"<br />Set the Hidden Property to True under layout section in ToolPane.<br />Now Refresh the Page......You Quick Launch Bar is Gone :-)Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-25042978076320500212008-02-25T14:32:00.001+05:302008-06-01T01:54:48.745+05:30Presenter in the Shaping the Future Workshop<a href="http://bp1.blogger.com/_7KK9DO20RjU/SEGzY2O7TAI/AAAAAAAAAWs/IBjxSBZrp8I/s1600-h/ShapingTheFuture.jpg"></a>I presented the Demo on Architecting distributed applications using Grid Architecture in <a href="http://www.shapingthefuture.in/archives_MS_chennai_08.html">Accenture Shaping the Future workshop</a>. This is my second presentation in Accenture's Shaping the Future.<br /><a href="http://bp3.blogger.com/_7KK9DO20RjU/SEGz2WO7TBI/AAAAAAAAAW0/qe-yokDDdfQ/s1600-h/ShapingTheFuture.jpg"><img id="BLOGGER_PHOTO_ID_5206640390479498258" style="CURSOR: hand" alt="" src="http://bp3.blogger.com/_7KK9DO20RjU/SEGz2WO7TBI/AAAAAAAAAW0/qe-yokDDdfQ/s400/ShapingTheFuture.jpg" border="0" /></a>Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-29498254397345122222008-01-31T22:20:00.000+05:302008-02-01T01:49:16.207+05:30MOSS 2007 Rename the Web Application NameI want to share how to rename the web application name in command line administration of MOSS 2007 using STSADM Command.<br /><br />Syntax:<br /> stsadm -o renameweb -url -newname<br /><br />Example:<br /> Stsadm -o renameweb -url http://localhost/oldname -newname newname<br /><br />The above command will rename the web application from oldname to the newname.Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-59850030372408692022008-01-31T21:50:00.000+05:302008-02-01T01:34:03.258+05:30Commerce Server 2007 Integration with MOSS 2007MOSS has many inbuilt features. The scope of this POC is to integrate Commerce Server 2007 with MOSS 2007 to provide Portal Integrated e-Commerce Application<br /><br /><strong>Configuring MOSS 2007 to Use the Commerce Server Membership Provider As The Basis For User Authentication<br /></strong><br /><p>The primary tasks are to make the Central Administration and Portal sites hand-shake with Commerce Server. This needs to be done by modifying the appropriate Web.config files for these sites. By adding the Commerce Server and httpModules sections, the SharePoint Central Administration site and the Portal site will be able to create the necessary CommerceContext object. The CommerceContext object enables the Commerce Server Membership Provider to be initialized correctly, and also enables Web parts and pages in the portal to use the CommerceContext object to access Commerce Server resources such as the Product Catalog.<br />The UpmMembership Provider extends the Membership framework offered by ASP.Net to accommodate the use of the ASP.Net Login Controls and authenticate against Commerce Server Profiles.<br /><br />Update the Web.config for MOSS Central Administration and in Portal site with below sections to avail Commerce Server data and services in MOSS</p><ul><li>Commerce Server Section Group</li><li>Commerce Server Group</li><li>Http Modules</li><li>Assemblies</li><li>Membership Provider</li><li>Profile Section<br /></li></ul><p>o Determine which Web.config file is used for the SharePoint Central Administration site and which is used for the Portal site. Use the Home Directory tab in IIS Manager to determine the appropriate path of the Web.config file for each site.<br /></p><p>o Use the Web.config file that was previously created for the Commerce Server C SharpSite as the source for the text to copy in the following instructions:<br /><br /><br />Please follow the below steps to modify the web.config file of SharePoint administration site.<br /></p><p>Step 1: Adding Commerce Server Section Group<br />Copy the Commerce [sectionGroup] in [configSections] and paste it after the [System.Workflow.ComponentModel.WorkflowCompiler] section group.<br />[sectionGroup name="CommerceServer"]<br />[section name="application" type="Microsoft.CommerceServer.Runtime.Configuration.CommerceApplicationSectionHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[section name="authentication" type="Microsoft.CommerceServer.Runtime.Configuration.CommerceAuthenticationSectionHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[section name="pipelines" type="Microsoft.CommerceServer.Runtime.Configuration.CommercePipelineSectionHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[section name="caches" type="Microsoft.CommerceServer.Runtime.Configuration.CommerceCacheSectionHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[section name="messageManager" type="Microsoft.CommerceServer.Runtime.Configuration.CommerceMessageManagerSectionHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[section name="catalog" type="Microsoft.CommerceServer.Runtime.Configuration.CommerceCatalogSectionHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[section name="orders" type="Microsoft.CommerceServer.Runtime.Configuration.CommerceOrdersSectionHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[section name="profiles" type="Microsoft.CommerceServer.Runtime.Configuration.CommerceProfilesSectionHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[section name="contentSelection" type="Microsoft.CommerceServer.Runtime.Configuration.CommerceContentSelectionSectionHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[section name="commerceEvent" type="Microsoft.CommerceServer.Runtime.Configuration.EventLoggerConfigurationHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[section name="expressions" type="Microsoft.CommerceServer.Runtime.Configuration.CommerceExpressionSectionHandler, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[/sectionGroup]<br />Step 2: Adding Commerce Server Group<br />§ Copy the [CommerceServer] section and paste it after the [SharePoint] section, just before the [system.web] section.<br /><br />[CommerceServer]<br />[application siteName="CDevSite" debugLevel="Production"/]<br />[pipelines][/pipelines]<br />[expressions schema="Auto"/]<br />[caches]<br />[cache name="Advertising" type="Advertising" refreshInterval="900" retryInterval="30"/]<br />[cache name="Discounts" type="Discounts" refreshInterval="0" retryInterval="30"/]<br />[cache name="ShippingManagerCache" type="Shipping" loaderProgId="Commerce.ShippingMethodCache" refreshInterval="0" retryInterval="30"/]<br />[cache name="PaymentMethodCache" type="Payment"/]<br />[cache name="OrdersConfigurationCache" type="OrdersConfiguration"/]<br />[/caches]<br />[messageManager]<br />[cultures default="en-US" baseName="CommerceMessageManager" assembly="CommerceMessageManager"]<br />[culture id="en-US"/]<br />[culture id="fr-fr"/]<br />[culture id="ja-JP"/]<br />[culture id="de-DE"/]<br />[/cultures]<br />[resources]<br />[resource id="pur_badsku"/]<br />[resource id="pur_badplacedprice"/]<br />[resource id="pur_discount_changed"/]<br />[resource id="pur_discount_removed"/]<br />[resource id="pur_noitems"/]<br />[resource id="pur_badshipping"/]<br />[resource id="pur_badhandling"/]<br />[resource id="pur_badtax"/]<br />[resource id="pur_badcc"/]<br />[resource id="pur_badpayment"/]<br />[resource id="pur_badverify"/]<br />[resource id="pur_out_of_stock"/]<br />[resource id="unknown_shipping_method"/]<br />[/resources]<br />[/messageManager]<br />[orders honorStatus="true" newOrderStatus="NewOrder" sqlCommandTimeoutSeconds="60" sqlLongRunningCommandTimeoutSeconds="28800"]<br />[addressMap]<br />[profileDefinition name="Address"/]<br />[property from="GeneralInfo.address_id" to="OrderAddressId"/]<br />[property from="GeneralInfo.first_name" to="FirstName"/]<br />[property from="GeneralInfo.last_name" to="LastName"/]<br />[property from="GeneralInfo.address_line1" to="Line1"/]<br />[property from="GeneralInfo.address_line2" to="Line2"/]<br />[property from="GeneralInfo.city" to="City"/]<br />[property from="GeneralInfo.region_code" to="RegionCode"/]<br />[property from="GeneralInfo.postal_code" to="PostalCode"/]<br />[property from="GeneralInfo.country_name" to="CountryName"/]<br />[property from="GeneralInfo.region_name" to="State"/]<br />[property from="GeneralInfo.tel_number" to="DaytimePhoneNumber"/]<br />[/addressMap]<br />[Types]<br />[Type Key="Basket" UserTypeName="Basket" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="PurchaseOrder" UserTypeName="PurchaseOrder" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="OrderTemplate" UserTypeName="OrderTemplate" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="OrderForm" UserTypeName="OrderForm" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="LineItem" UserTypeName="LineItem" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="Shipment" UserTypeName="Shipment" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="Payment" UserTypeName="Payment" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="CreditCardPayment" UserTypeName="CreditCardPayment" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="GiftCertificatePayment" UserTypeName="GiftCertificatePayment" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="PurchaseOrderPayment" UserTypeName="PurchaseOrderPayment" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="CashCardPayment" UserTypeName="CashCardPayment" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="OrderAddress" UserTypeName="OrderAddress" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="DiscountApplicationRecord" UserTypeName="DiscountApplicationRecord" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="ShippingDiscountRecord" UserTypeName="ShippingDiscountRecord" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[Type Key="PromoCodeRecord" UserTypeName="PromoCodeRecord" AssemblyType="GAC" NameSpace="Microsoft.CommerceServer.Runtime.Orders" Assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[/Types]<br />[Limits OrderFormsPerOrderGroup="5" PromoCodeRecordsPerOrderForm="10" PromoCodesPerOrderForm="10" LineItemsPerOrderForm="40" OrderTemplatesPerUser="10" PaymentsPerOrderForm="10" ShipmentsPerOrderForm="40" BasketsPerUser="15" OrderAddressesPerOrderGroup="10"/]<br />[MappingFiles PipelineMappingFilename="OrderPipelineMappings.xml" StorageMappingFilename="OrderObjectMappings.xml"/]<br />[SerializationBindings]<br />[SerializationBinding OldType="Microsoft.CommerceServer.Runtime.Orders.LineItem , Microsoft.CommerceServer.Runtime ,Version=6.0.1.0,Culture=neutral, PublicKeyToken=31bf3856ad364e35" NewType="Microsoft.CommerceServer.Runtime.Orders.LineItem, Microsoft.CommerceServer.Runtime,Version=6.0.1.0,Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[/SerializationBindings]<br />[/orders]<br />[commerceEvent]<br />[add className="Microsoft.CommerceServer.Runtime.AddItemToBasketEvent" id="AddItemToBasket"/]<br />[add className="Microsoft.CommerceServer.Runtime.RemoveItemFromBasketEvent" id="RemoveItemFromBasket"/]<br />[add className="Microsoft.CommerceServer.Runtime.SubmitOrderEvent" id="SubmitOrder" loggingEnabled="true"/]<br />[/commerceEvent]<br />[/CommerceServer]<br />Step 3: Adding "CommerceApplication" in "httpModules" Section<br />§ Copy the Commerce HTTP Modules to the end of the [httpModules] section.<br />[add name="CommerceApplication" type="Microsoft.CommerceServer.Runtime.CommerceApplicationModule, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[add name="CommerceAuthentication" type="Microsoft.CommerceServer.Runtime.CommerceAuthenticationModule, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[add name="CommerceOrder" type="Microsoft.CommerceServer.Runtime.Orders.CommerceOrderModule, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[add name="CommerceCatalog" type="Microsoft.CommerceServer.Runtime.Catalog.CommerceCatalogModule, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[add name="CommerceProfile" type="Microsoft.CommerceServer.Runtime.Profiles.CommerceProfileModule, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[add name="CommerceExpressionEvaluator" type="Microsoft.CommerceServer.Runtime.Targeting.CommerceExpressionModule, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[add name="CommerceCache" type="Microsoft.CommerceServer.Runtime.Caching.CommerceCacheModule, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]<br />[add name="CommerceContentSelection" type="Microsoft.CommerceServer.Runtime.Targeting.CommerceContentSelectionModule, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/][add name="CommerceDataWarehouseAuthenticationModule" type="Microsoft.CommerceServer.Runtime.CommerceDataWarehouseAuthenticationModule, Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/]Remove or comment out the Commerce Server Authentication Module. This module is not required because ASP.NET Forms Authentication will be used for all authentications.<br />Step 4: Adding "Commerce Server" AssembliesCopy the commerce server assembly information from CSharpSite web.config and paste it in the [assemblies] tag in the Central Administration site’s web.config as below:<br />[assemblies]<br />[add assembly="Microsoft.CommerceServer.Runtime, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /]<br />[add assembly="Microsoft.CommerceServer.Catalog, Version=6.0.1.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /][/assemblies]<br /><br />Step 5: Configure Central Administration to recognize Commerce Server Membership<br />Copy the below code snippet to [system.web] section of the Web.config file for the Central Administration. Note: Paste it before the closing [/system.web].<br />[membership defaultProvider="UpmMembershipProvider"]<br />[providers]<br />[clear /]<br />[add applicationName="CSharpSite "<br />enablePasswordRetrieval="false"<br />enablePasswordReset="true"<br />requiresQuestionAndAnswer="true"<br />requiresUniqueEmail="true"<br />enableCreateDate="true"<br />enableEmailAddress="true"<br />enableLastLoginDate="true"<br />profileDefinition="UserObject"<br />passwordFormat="Hashed"<br />name="UpmMembershipProvider"<br />type="Microsoft.CommerceServer.Runtime.Profiles.UpmMembershipProvider"/]<br />[/providers]<br />[/membership]<br /><br />Step 6: Configuring the Commerce Server Profiles section<br /><br />This section contains settings which configure the functionality of profiles and catalog sets. The [userProfile] node resides in the [CommerceServer][profiles] node in the web.config.<br />Uncomment the profiles section in [commerceserver] node.<br /><br />[userProfile<br />profileDefinition="UserObject"<br />userIdProperty="GeneralInfo.email_address"<br />organizationIdProperty="AccountInfo.org_id"<br />catalogSetIdProperty="AccountInfo.user_catalog_set"<br />userIdSource = "ASP.NET"<br />userIdKey = "GeneralInfo.email_address"<br />userIdTarget = "GeneralInfo.user_id"<br />/]<br />[organizationProfile<br />profileDefintion="Organization"<br />organizationIdProperty="GeneralInfo.org_id"<br />catalogSetIdProperty="GeneralInfo.org_catalog_set"<br />/]<br /><br /><br />Step 7: Adding Users in the Central AdministrationLocate Central Administration, Application Management, Authentication Providers, Default zone entry. Make sure that you have the PortalSite Web Application selected in the drop-down list.<br /><br />o Click Forms.<br /><br />o Change the Membership Provider Name to UpmMembershipProvider. This should match the name that is in the membership section of the Web.config file.Locate Central Administration, Application Management, and Policy for Web Application. Make sure that you have selected the Portal Web Application.<br /><br />o Click Add Users.<br /><br />o Select Default zone, and then click Next.<br /><br />o Type the e-mail address of the user that you added previously by using the Commerce Server Customer and Orders Manager, and then click Check User.<br /><br />o If the user name is successfully recognized, it will be underlined. Select Full control, and then select Finish.<br /><br />o If the user name is not recognized, run a SQL Server trace on the Commerce Server Profiles database to make sure that the queries are running against the database. Additionally, make sure that the entry for the provider is in the Web.config file for Central Administration, and look for errors in the event log.<br /><br />Step 8: Copy the following XML files from the CSharpSite (IIS Virtual Directory) to the root folder of the Central Administration site:<br /><br />o OrderObjectMappings.xml<br />o OrderPipelineMappings.xml</p><p>Run Central Administration to make sure that these changes were made correctly. If errors occur, check the Web.config file for syntax issues.Even if the page displays correctly, check the event log. Some permissions errors may be hidden.<br /><br />Configure the MOSS portal to use the Commerce Server Membership provider:<br />Step 1: Follow the above 6 steps to configure Portal site for Commerce Server.<br /><br />Step 2: Comment out the existing [authentication], [identity], and [authorization] sections. This will disable the default Windows authentication and authorization.<br /><br />Step 3: Copy the below configuration settings contents to the Web.config file for the Portal site. Paste this after the previous sections that you just commented out. This sets up the site for Forms Authentication and denies anonymous access.<br /><br />[authentication mode="Forms"]<br />[forms loginUrl="/_layouts/login.aspx" name=".ASPXFORMSAUTH" /]<br />[/authentication]<br />[authorization]<br />[deny users="?" /][/authorization] View the Portal site in a Web browser. You should be redirected to the logon page. Log on and use the user credentials that you added by using the Customer and Orders Manager.<br /></p><p>Step 4: Copy the following XML files from the CSharpSite (IIS Virtual Directory) to the root folder of the Portal site:<br /><br />o OrderObjectMappings.xml<br />o OrderPipelineMappings.xml<br /></p><p>Step 5: Restart the IIS<br /></p><p>Step 6: Run the Portal site and look for errors.<br /></p><p><strong>[Note : I am not able to Post scripts tag in here replace all "[" &amp; "]" with "<" &amp; ">"</strong></p>Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-5559376509511881372008-01-23T01:05:00.000+05:302008-01-23T01:11:43.451+05:30Free Microsoft Press E-Books Offer for LINQ,ASP.Net,SilverlightThe Following E-Books can be downloaded from Microsoft Press Site.<br /><br /><ul><li><strong>Introducing Microsoft LINQ<br /> </strong>by Paolo Pialorsi and Marco Russo </li><li><strong>Introducing Microsoft ASP.NET AJAX<br /> </strong>by Dino Esposito</li><li><strong>Introducing Microsoft Silverlight 1.0<br /> </strong>by Laurence Moroney<br /><br /><br /><a href="http://csna01.libredigital.com/">http://csna01.libredigital.com</a><br /><br />Login to the site using your passport/hotmail id and Download e-Books for free.<br /></li></ul>Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-83602638321587219962008-01-08T15:28:00.000+05:302008-01-16T18:51:47.319+05:30Bill Gates Last Day at MicrosoftBill Gates gave his final keynote in CES(Consumer Electronic Show) in last vegas.<br /><br /><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/HEWMC4usElM&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/HEWMC4usElM&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object><br /><br />you can find his full keynote in <a href="http://www.microsoft.com/ces/">Microsoft CES</a>Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-85830595297857528952008-01-06T21:31:00.000+05:302008-01-06T21:46:33.255+05:30Content Approval Workflow in MOSS 2007In MOSS 2007 Approval workflow is available in out of the box itself. Just we need to configure only few steps then we are ready with the approval process.<br /><br /><br />If the approval workflow is configured the document will be visible only to the contributor and to the approver.<br /><br /><br />Steps to Configure Content approval workflow<br /><br /><br />Open the Document Library<br />Click Settings -> Document Library Settings<br /><br /><img style="CURSOR: hand" alt="" src="http://udayakumarethirajulu.googlepages.com/ApprovalWF1.JPG" border="0" /><br />In Document Library Settings under Permissions and Management Click Workflow Settings<br /><br />Document Library Settings -> [Permission and Management] Workflow Managements<br /><br /><img style="CURSOR: hand" alt="" src="http://udayakumarethirajulu.googlepages.com/ApprovalWF2.JPG" border="0" /><br /><br /><img style="CURSOR: hand" alt="" src="http://udayakumarethirajulu.googlepages.com/ApprovalWF3.JPG" border="0" /><br /><br /><p>In MOSS 2007 it has some prebuilt workflow templates for the following workflows</p><ul><li>Approval </li><li>Collect Feedback </li><li>Collect Signatures </li><li>Disposition Approval </li><li>Three State<br /></li></ul><p>Now Select the Approval Workflow and give the unique name for the workflow instance.<br />Select the Existing Task List Name or create new Task List for this approval workflow.<br />Select the Existing History or create new workflow history to maintain this workflow history.<br />Under Start options you can specify how this workflow can be started.<br /></p><p>· Allow this workflow to be manually started by an authenticated user with Edit Items Permissions<br />· Start this workflow when an item is created<br />· Start this workflow when an item is changed<br /></p><p>If you choose “start this workflow when an item is created” it will automatically starts workflow when new item is added to the document library.<br /><br />If you choose “start this workflow when an item is changed” it will automatically restarts the workflow when the items in the document library is modified.<br /><img style="CURSOR: hand" alt="" src="http://udayakumarethirajulu.googlepages.com/ApprovalWF4.JPG" border="0" /> </p><p>Under workflow task<br />If you choose Assign Task to “All Participant Simultaneously” It will create the task for all participants at the same time. The workflow will be completed only after the approval of all approvers.<br /><br />If you choose Assign Task to “One Participant at a time” It will follow the sequence of activity first the workflow task will be created to the first user and once its approved then only it will move on to the next approver.<br /><br />If it’s required you can set the due date for the workflow.<br />The workflow status also can be notified other than the participants of the workflow by giving the name on notify others column.<br /><br />We are creating the workflow for Content Approval. So don’t forget the check the option “Update the approval status (use this workflow to control content approval)”<br /><img style="CURSOR: hand" alt="" src="http://udayakumarethirajulu.googlepages.com/ApprovalWF5.JPG" border="0" /><br /></p><p>Now you successfully created approval workflow.<br /><img style="CURSOR: hand" alt="" src="http://udayakumarethirajulu.googlepages.com/ApprovalWF6.JPG" border="0" /><br /></p><p>You have to enable the content approval in the document library then only it will restrict other users to access it.<br /><br />When you enable content approval the document will be visible only to contributor/author and approver, it will not be visible to other users in document library.<br /><br />Open Settings -> Document Library Settings<br />Under General Settings -> Versioning Settings<br />Require Content Approval for Submitted Items? Choose Yes<br />And Click OK to Save the Settings.<br /><br /><img style="CURSOR: hand" alt="" src="http://udayakumarethirajulu.googlepages.com/ApprovalWF7.JPG" border="0" /><br /><br />Now Open the Document Library and upload the Document<br /><br /><img style="CURSOR: hand" alt="" src="http://udayakumarethirajulu.googlepages.com/ApprovalWF8.JPG" border="0" /><br /><br />Now the document is uploaded the Document Library<br /><br /><img style="CURSOR: hand" alt="" src="http://udayakumarethirajulu.googlepages.com/ApprovalWF9.JPG" border="0" /><br /><br />If you login using some other user credential (not an approver/contributor). The document will be displayed in the document library.<br /><img style="CURSOR: hand" alt="" src="http://udayakumarethirajulu.googlepages.com/ApprovalWF10.JPG" border="0" /><br />If you feel this post helps you to create workflow for content approval. Please leave your valuable comments. </p>Udaynoreply@blogger.comtag:blogger.com,1999:blog-2319902191936730828.post-73004635751790572212008-01-03T23:49:00.000+05:302008-01-03T23:54:58.487+05:30Microsoft Technical Roll Up - January 2008Quick Links <a href="http://by107w.bay107.mail.live.com/mail/ApplicationMain_12.1.0069.1213.aspx?culture=en-US&amp;hash=2958709834#Security">Security</a> - <a href="http://by107w.bay107.mail.live.com/mail/ApplicationMain_12.1.0069.1213.aspx?culture=en-US&amp;hash=2958709834#Windows_Platform_">Platforms</a> - <a href="http://by107w.bay107.mail.live.com/mail/ApplicationMain_12.1.0069.1213.aspx?culture=en-US&amp;hash=2958709834#Internet">Internet</a> – <a href="http://by107w.bay107.mail.live.com/mail/ApplicationMain_12.1.0069.1213.aspx?culture=en-US&amp;hash=2958709834#SQL">SQL Server</a> - <a href="http://by107w.bay107.mail.live.com/mail/ApplicationMain_12.1.0069.1213.aspx?culture=en-US&amp;hash=2958709834#Unified_Communications">Unified Comms</a> - <a href="http://by107w.bay107.mail.live.com/mail/ApplicationMain_12.1.0069.1213.aspx?culture=en-US&amp;hash=2958709834#Manageability">Manageability</a><br />The TRM blog can be found here <a href="http://blogs.technet.com/trm/" target="_blank">http://blogs.technet.com/trm/</a><br /><a target="_blank" name="Security">Security</a><br /><br />News<br /><br />Effective Security <a href="http://go.microsoft.com/?linkid=8014764" target="_blank">http://go.microsoft.com/?linkid=8014764</a><br />From Stephen Lamb. Effective security is all about risk. Measure it. Decide which risks you are uncomfortable with and take steps to mitigate them. It's also about People AND Processes - technological controls alone will not give you Effective Security.<br /><br />Server Security: Less is More <a href="http://go.microsoft.com/?linkid=7938703" target="_blank">http://go.microsoft.com/?linkid=7938703</a><br />By Shawn Travers, IT Pro Evangelist, Microsoft Corporation Anyone who has spent more than a few days working in information security has probably heard the three core tenets of security: availability, confidentiality, and integrity. This article discusses another well-known, but often overlooked concept--simplicity--and explores some of the ways that we can achieve simpler, more secure server systems.<br /><br />Now Available: The 2007 Microsoft Office Security Guide <a href="http://go.microsoft.com/?linkid=7938705" target="_blank">http://go.microsoft.com/?linkid=7938705</a><br />Save time with best practices and automated tools in the 2007 Microsoft Office Security Guide. Tested guidance, customizable and prebuilt security configurations, and powerful tools let you deploy 2007 Microsoft Office system security settings across your organization--in minutes, instead of hours or days.<br /><br />Now Available: The Microsoft Security Intelligence Report, Volume III <a href="http://go.microsoft.com/?linkid=8014773" target="_blank">http://go.microsoft.com/?linkid=8014773</a><br />Designing and writing software that is free of exploitable bugs and that can deflect modern attacks is a highly coveted skill set. The Microsoft Security Intelligence Report (SIR) can help with this quest by providing developers with trends and insights for understanding the current threat landscape.<br /><br />MSDN Magazine: The Annual Security Issue <a href="http://go.microsoft.com/?linkid=8014775" target="_blank">http://go.microsoft.com/?linkid=8014775</a><br />This year's issue takes a "pragmatic approach to creating an effective, measurable security strategy." Check it out.<br /><br />A Guide to Basic Computer Forensics <a href="http://go.microsoft.com/?linkid=7938706" target="_blank">http://go.microsoft.com/?linkid=7938706</a><br />While some investigations rely on highly trained professionals using expensive tools and complex techniques, there are easier, cheaper methods that you can use for basic investigation and analysis. This article focuses on computer forensic techniques that are readily accessible to you as a mainstream administrator.<br /><br />Security Watch: Windows Domain Password Policies <a href="http://go.microsoft.com/?linkid=7938707" target="_blank">http://go.microsoft.com/?linkid=7938707</a><br />If you are an administrator of a Windows domain, you are probably all too aware of the constraints that are related to password policies for domain user accounts. However, with the advent of Windows Server 2008, some of those limitations will vanish. This article takes a look at how the new operating system resolves one issue: the inability to implement multiple password policies.<br /><br />Microsoft Security Bulletin Summary for December, 2007<br /><a href="http://www.microsoft.com/technet/security/bulletin/ms07-dec.mspx" target="_blank">http://www.microsoft.com/technet/security/bulletin/ms07-dec.mspx</a> <br /><br />Search for previous security bulletins <a href="http://go.microsoft.com/?linkid=3992478" target="_blank">http://go.microsoft.com/?linkid=3992478</a> <br /><br />Security Bulletin Feed <a href="http://go.microsoft.com/?linkid=3992479" target="_blank">http://go.microsoft.com/?linkid=3992479</a> RSS <a href="http://go.microsoft.com/?linkid=3992480" target="_blank">http://go.microsoft.com/?linkid=3992480</a><br /><br />Documents<br /><br />Windows Server 2003 Security Guide <a href="http://go.microsoft.com/?linkid=7938708" target="_blank">http://go.microsoft.com/?linkid=7938708</a><br />The Windows Server 2003 Security Guide focuses on providing easy-to-understand guidance along with a set of tools and templates to help make Windows Server 2003 more secure in many environments.<br /><br />Windows Server 2008 Security Guide <a href="http://go.microsoft.com/?linkid=7938709" target="_blank">http://go.microsoft.com/?linkid=7938709</a><br />The Windows Server 2008 Security Guide is designed to further enhance the security of the server computers in your organization by helping you to taking full advantage of the new and improved security technologies and features in Windows Server 2008. Use the guidance to deploy your security baseline quickly and reliably, to harden your server workloads, and to evaluate security setting recommendations to meet the requirements of your environment.<br /><br />Changes in Functionality from Windows Server 2003 with SP1 to Windows Server 2008 <a href="http://go.microsoft.com/?linkid=7938710" target="_blank">http://go.microsoft.com/?linkid=7938710</a><br />In Windows Server 2008, Microsoft introduces many new features and technologies that were not available in Windows Server 2003 with Service Pack 1 (SP1). These features will help to increase productivity, reduce administrative overhead, and increase the security of computers that are running this new operating system. The technical library offered here covers such topics as BitLocker Drive Encryption, using Identity Federation with Active Directory Rights Management Services, and Active Directory Certificate Services.<br /><br />Best Practices for Implementing a Microsoft Windows Server 2003 Public Key Infrastructure <a href="http://go.microsoft.com/?linkid=7938711" target="_blank">http://go.microsoft.com/?linkid=7938711</a><br />This Microsoft TechNet article describes configuration and deployment best practices for a public key infrastructure based on Windows Server 2003.<br /><br />Default Access Control Settings in Windows Server 2003 <a href="http://go.microsoft.com/?linkid=7938712" target="_blank">http://go.microsoft.com/?linkid=7938712</a><br />This white paper describes the default security settings for components of the Windows Server 2003 operating system. Read about the implications of these settings for developers and system administrators, and get answers to frequently asked questions.<br /><br />How To: Use the Microsoft Baseline Security Analyzer <a href="http://go.microsoft.com/?linkid=7938713" target="_blank">http://go.microsoft.com/?linkid=7938713</a><br />Microsoft Baseline Security Analyzer (MBSA) is an easy-to-use tool, designed for IT professionals, that helps small-sized and medium-sized businesses to determine their security state in accordance with Microsoft security recommendations, and offers specific remediation guidance. This article describes how to use MBSA to perform a security updates scan, and how to use MBSA to check for current settings that are not secure.<br /><br />Scenarios and Procedures for Microsoft Systems Management Server 2003: Security <a href="http://go.microsoft.com/?linkid=7938714" target="_blank">http://go.microsoft.com/?linkid=7938714</a><br />Securing your Microsoft Systems Management Server (SMS) environment is not a task that you can complete once and then forget about. Whether you have already deployed SMS or are in the planning stages, follow these established best practices to create the most secure SMS environment possible, and then follow the guidance to maintain that environment.<br /><br />ISA Server 2006 Security Guide <a href="http://go.microsoft.com/?linkid=7938715" target="_blank">http://go.microsoft.com/?linkid=7938715</a><br />This guide focuses explicitly on the operations that are required to create and maintain a secure Internet Security and Acceleration (ISA) Server 2006 environment. Use this guide as part of your overall security strategy for ISA Server 2006.<br /><br />Securing Your Application Server <a href="http://go.microsoft.com/?linkid=7938716" target="_blank">http://go.microsoft.com/?linkid=7938716</a><br />This chapter of Improving Web Application Security describes how to secure middle-tier application server computers that host business logic and data access services. The chapter focuses on the application server configuration and the associated communication channels that connect the Web server computer to the application server computer, and that connect the application server computer to the database server computer. Technologies covered include Enterprise Services, Web services, and .NET remoting.<br /><br />Downloads<br /><br />Microsoft Antigen SP1 Documentation<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7d00160e-4d15-4459-98a3-89f393ac008e&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=7d00160e-4d15-4459-98a3-89f393ac008e&amp;DisplayLang=en</a><br /><br />Microsoft Forefront Security for SharePoint with SP1 Documentation<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=125efb1e-7ff8-4cc8-934a-28fc7c7e59f0&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=125efb1e-7ff8-4cc8-934a-28fc7c7e59f0&amp;DisplayLang=en</a><br /><br />IT Showcase: Enabling Information Security through HBI Information Classification<br />Ever wondered how a large enterprise plans and implements design and architecture of its next generation of messaging system? The HBI Information Classification Solution was developed to enable users to classify and protect their sites and shares.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=22ed9b2b-06b7-4932-b216-a5cab4999a77&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=22ed9b2b-06b7-4932-b216-a5cab4999a77&amp;DisplayLang=en</a><br /><br />Server and Domain Isolation Demo<br />Get hands-on experience with Server and Domain Isolation, and learn how this cost-effective end-point authentication solution can help you reduce the risk of network-based threats and safeguard sensitive data.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=13a0ab69-2113-482e-a6d1-911aff9e9e2d&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=13a0ab69-2113-482e-a6d1-911aff9e9e2d&amp;DisplayLang=en</a><br /><br />Microsoft Forefront Security for Exchange Server with Service Pack 1 Readme<br />Help protect your Exchange server from viruses and other malware.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8ee79d42-63a6-4927-83f0-035d6a4a23b9&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=8ee79d42-63a6-4927-83f0-035d6a4a23b9&amp;DisplayLang=en</a><br /><br />Microsoft Forefront Security for Exchange Server with Service Pack 1<br />Help protect your Exchange server from viruses and other malware.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=2ceb14d4-404b-4d8f-8a21-ebfc71b2e82b&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=2ceb14d4-404b-4d8f-8a21-ebfc71b2e82b&amp;DisplayLang=en</a><br /><br />Forefront Security for Exchange Server 10.1 Management Pack for MOM 2005<br />The Microsoft Forefront Security for Exchange Management Pack monitors Exchange Servers for virus and worm activity.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1b4e7d52-c550-4dd7-a11f-2c4029b93451&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=1b4e7d52-c550-4dd7-a11f-2c4029b93451&amp;DisplayLang=en</a><br /><br />The risks of obtaining and using pirated software<br />This is a 12 pages White paper that covers the risks of obtaining and using pirated software<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=442cc4d2-21a1-4e1c-83f9-27dbe0fae9ce&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=442cc4d2-21a1-4e1c-83f9-27dbe0fae9ce&amp;DisplayLang=en</a><br /><br />Get Genuine Windows Agreement for SME - Resellers<br />This is a 2 pages document containing information on the Get GenuineWindows Agreement (WWGA) for Small and Medium Organizations.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a074a955-c802-4598-a372-571a3bb4a073&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=a074a955-c802-4598-a372-571a3bb4a073&amp;DisplayLang=en</a><br /><br />Get Genuine Solutions FAQ - Customers<br />This is a 2 page document containing frequently asked questions (FAQ) on the Get Genuine program.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=817533f4-7ae3-4d4f-b837-fb1c380f4788&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=817533f4-7ae3-4d4f-b837-fb1c380f4788&amp;DisplayLang=en</a><br /><br />Microsoft Forefront and System Center Demonstration Toolkit<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c6d3339d-c07f-4a68-a188-1485baaf7964&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=c6d3339d-c07f-4a68-a188-1485baaf7964&amp;DisplayLang=en</a><br /><br />Server and Domain Isolation (SDI) for Security Datasheet<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1394144e-4d80-4bbe-8ca5-ccbd2e6c328c&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=1394144e-4d80-4bbe-8ca5-ccbd2e6c328c&amp;DisplayLang=en</a><br /><br />Public Key Infrastructure (PKI) for Security Solutions Datasheet<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4832cf1f-7dfa-4ca3-b92a-7fd121b22703&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=4832cf1f-7dfa-4ca3-b92a-7fd121b22703&amp;DisplayLang=en</a><br /><br />Microsoft Services Baseline Security Compliance (MSBC) Datasheet<br />This offering helps assess and improve organization’s baseline security compliance program.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9d0ddd15-1976-45a2-9ddf-419c87e30dfb&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=9d0ddd15-1976-45a2-9ddf-419c87e30dfb&amp;DisplayLang=en</a><br /><br />Identity Lifecycle Management (ILM) Datasheet<br />This offering uses Microsoft Identity Integration Server (MIIS) 2003 and best practices to simplify digital identity management and maintain data integrity.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=712704a6-82a9-4bd1-96c6-83b2c9522dfd&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=712704a6-82a9-4bd1-96c6-83b2c9522dfd&amp;DisplayLang=en</a><br /><br />Forefront Security for Exchange Server 10.1 MP for OpsMgr 2007<br />The Microsoft Forefront Security for Exchange Management Pack monitors Exchange Servers for virus and worm activity.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ec2a6c3a-6d75-44df-87d7-9dbb3dbfce37&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=ec2a6c3a-6d75-44df-87d7-9dbb3dbfce37&amp;DisplayLang=en</a><br /><br />Microsoft Forefront Security for Exchange Server with SP1 Documentation<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=5cd4e36e-2dab-44d6-990e-3b8184b1cb1b&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=5cd4e36e-2dab-44d6-990e-3b8184b1cb1b&amp;DisplayLang=en</a><br /><br />Deployment for Microsoft Forefront Client Security Datasheet<br />Deployment for Microsoft Forefront Client Security easily deploys an advanced, centralized solution to help protect your enterprise.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=f3dce10f-b007-4188-a836-5e2cd7d94496&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=f3dce10f-b007-4188-a836-5e2cd7d94496&amp;DisplayLang=en</a><br /><br />Security Health Check Datasheet<br />The Security Health Check evaluates your current processes and the configurations of selected host computers against published Microsoft security guidance.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9767cd2b-c089-403f-acb0-cb4a80218bfa&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=9767cd2b-c089-403f-acb0-cb4a80218bfa&amp;DisplayLang=en</a><br /><br />Public Key Infrastructure Server Health Check Datasheet<br />The PKI Health Check consists of analyzing the PKI configuration against published Microsoft PKI best practices by using a checklist of elements that are essential to help you properly configure and secure<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3d6c5196-a45d-4f7e-9416-6ee857985294&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=3d6c5196-a45d-4f7e-9416-6ee857985294&amp;DisplayLang=en</a><br /><br />Forefront Security and Networking<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=67847df6-9750-4bb5-bce5-1c8308af8954&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=67847df6-9750-4bb5-bce5-1c8308af8954&amp;DisplayLang=en</a><br /><br />Microsoft Security Assessment Tool 3.5 (International)<br />The Microsoft Security Assessment Tool (MSAT) is a risk-assessment application designed to provide information and recommendations about best practices for security within an information technology (IT) infrastructure.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6d79df9c-c6d1-4e8f-8000-0be72b430212&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=6d79df9c-c6d1-4e8f-8000-0be72b430212&amp;DisplayLang=en</a><br /><br />Microsoft Antigen SP1 Documentation<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7d00160e-4d15-4459-98a3-89f393ac008e&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=7d00160e-4d15-4459-98a3-89f393ac008e&amp;DisplayLang=en</a><br /><br />Extended Security Update Inventory Tool<br />The Extended Security Update Inventory Tool is used to detect security bulletins not covered by MBSA including MS04-028, February 2005 bulletins, and future security bulletins that are exceptions to MBSA.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=2c93da1d-48a0-4e5c-991f-87e08954f61b&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=2c93da1d-48a0-4e5c-991f-87e08954f61b&amp;DisplayLang=en</a><br /><br />Microsoft® Windows® Malicious Software Removal Tool (KB890830) x64<br />This tool checks your computer for infection by specific, prevalent malicious software (including Blaster, Sasser, and Mydoom) and helps to remove the infection if it is found. Microsoft will release an updated version of this tool on the second Tuesday of each month.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=585d2bde-367f-495e-94e7-6349f4effc74&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=585d2bde-367f-495e-94e7-6349f4effc74&amp;DisplayLang=en</a><br /><br />Microsoft® Windows® Malicious Software Removal Tool (KB890830)<br />This tool checks your computer for infection by specific, prevalent malicious software (including Blaster, Sasser, and Mydoom) and helps to remove the infection if it is found. Microsoft will release an updated version of this tool on the second Tuesday of each month.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ad724ae0-e72d-4f54-9ab3-75b8eb148356&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=ad724ae0-e72d-4f54-9ab3-75b8eb148356&amp;DisplayLang=en</a><br /><br />December 2007 Security Releases ISO Image<br />This DVD5 ISO image file contains the security updates for Windows released on Windows Update on December 11th, 2007.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=450fffce-9b87-411c-8147-c17f33590f96&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=450fffce-9b87-411c-8147-c17f33590f96&amp;DisplayLang=en</a><br /><br />Update for Windows Mail Junk E-mail Filter [December 2007] (KB905866)<br />Install this update for Windows Mail to revise the definition files used to detect e-mail messages that should be considered junk e-mail or that may contain phishing content.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=aa029fde-f341-44fc-8b85-0c6f3d3c2d69&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=aa029fde-f341-44fc-8b85-0c6f3d3c2d69&amp;DisplayLang=en</a><br /><br />Update for Windows Mail Junk E-mail Filter for x64-based Systems [December 2007] (KB905866)<br />Install this update for Windows Mail to revise the definition files used to detect e-mail messages that should be considered junk e-mail or that may contain phishing content.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=749e10cd-f40c-4f94-8e38-d4221ded7652&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=749e10cd-f40c-4f94-8e38-d4221ded7652&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 7 for Windows XP Service Pack 2 (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=48ba80a0-697f-480a-a188-95c576d8a8bb&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=48ba80a0-697f-480a-a188-95c576d8a8bb&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 7 for Windows XP x64 Edition (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=2bedf591-79a8-40f9-a0bb-064ac1ef4d3f&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=2bedf591-79a8-40f9-a0bb-064ac1ef4d3f&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 7 in Windows Vista (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab35581a-3ecb-46a1-93f2-f6313e34468a&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=ab35581a-3ecb-46a1-93f2-f6313e34468a&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 7 in Windows Vista x64 Edition (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=f86a4312-9bb5-4114-836a-c2c56caa75d1&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=f86a4312-9bb5-4114-836a-c2c56caa75d1&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 7 for Windows Server 2003 (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=f5e3fcac-c16d-4c94-b74d-3fda50b16f67&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=f5e3fcac-c16d-4c94-b74d-3fda50b16f67&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 7 for Windows Server 2003 64-bit Itanium Edition (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=00159de3-79aa-49d5-9228-d2b3af47a592&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=00159de3-79aa-49d5-9228-d2b3af47a592&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 7 for Windows Server 2003 x64 Edition (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=d09a880e-8ca0-45bb-ac49-9000b4cf1b22&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=d09a880e-8ca0-45bb-ac49-9000b4cf1b22&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 6 for Windows XP x64 Edition (KB945007) - English<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=acc5efe4-0dbc-4c38-a695-aee1e263ddc2&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=acc5efe4-0dbc-4c38-a695-aee1e263ddc2&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 6 for Windows Server 2003 64-bit Itanium Edition (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=48b8f5bb-f479-467d-8324-36c4292c32d8&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=48b8f5bb-f479-467d-8324-36c4292c32d8&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 6 for Windows XP Service Pack 2 (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3f8ba2aa-ed73-4764-a56d-9515a9c500de&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=3f8ba2aa-ed73-4764-a56d-9515a9c500de&amp;DisplayLang=en</a><br /><br />Update for Internet Explorer 6 for Windows Server 2003 (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=b4ac1e4c-407f-4f86-a5f6-b5a88449e80d&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=b4ac1e4c-407f-4f86-a5f6-b5a88449e80d&amp;DisplayLang=en</a><br /><br />IE Automatic Component Activation Preview for Internet Explorer 6 for Windows Server 2003 x64 Edition (KB945007)<br />This update disables the “Click to activate” behavior of the Internet Explorer ActiveX update that is contained in update KB942615.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0d4a241a-22da-45f1-bd19-36e19d70e4e4&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=0d4a241a-22da-45f1-bd19-36e19d70e4e4&amp;DisplayLang=en</a><br /><br />Update for Outlook Junk Email Filter 2007 (KB943597)<br />This update provides the Junk E-mail Filter in Microsoft Office Outlook 2007 with a more current definition of which e-mail messages should be considered junk e-mail. This update was released in December 2007.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=13b89a50-1d13-402e-8243-627e68c5e7f2&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=13b89a50-1d13-402e-8243-627e68c5e7f2&amp;DisplayLang=en</a><br /><br />Update for Outlook Junk Email Filter 2003 (KB943591)<br />This update provides the Junk E-mail Filter in Microsoft Office Outlook 2003 with a more current definition of which e-mail messages should be considered junk e-mail. This update was released in December 2007.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a216dd08-4cc0-4adc-b741-a9a0cbc2d0c4&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=a216dd08-4cc0-4adc-b741-a9a0cbc2d0c4&amp;DisplayLang=en</a><br /><br />Microsoft Security Assessment Tool 3.5 (International)<br />The Microsoft Security Assessment Tool (MSAT) is a risk-assessment application designed to provide information and recommendations about best practices for security within an information technology (IT) infrastructure.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6d79df9c-c6d1-4e8f-8000-0be72b430212&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=6d79df9c-c6d1-4e8f-8000-0be72b430212&amp;DisplayLang=en</a><br /><br />Deployment for Microsoft Forefront Client Security Datasheet<br />Deployment for Microsoft Forefront Client Security easily deploys an advanced, centralized solution to help protect your enterprise.<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=f3dce10f-b007-4188-a836-5e2cd7d94496&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=f3dce10f-b007-4188-a836-5e2cd7d94496&amp;DisplayLang=en</a><br /><br />TechNet Security Series Seminar (13th Dec 2007) - Session 2: System Center Configuration Manager – Software Update Management<br />Presentation Materials for TechNet Security Series Seminar (13th Dec 2007)<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ae4c74d6-d558-4e0b-8c34-689abe49b318&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=ae4c74d6-d558-4e0b-8c34-689abe49b318&amp;DisplayLang=en</a><br /><br />TechNet Security Series Seminar (13th Dec 2007)<br />Presentation Materials for TechNet Security Series Seminar (13th Dec 2007)<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=18b07f6d-5ded-4562-9eba-ca8b8c12a512&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=18b07f6d-5ded-4562-9eba-ca8b8c12a512&amp;DisplayLang=en</a><br /><br />TechNet Security Series Seminar (13th Dec 2007) - Session 3: Think your network is safe using the default protocols? Think again.<br />Presentation Materials for TechNet Security Series Seminar (13th Dec 2007)<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=dbc62833-08f5-469a-89e4-fac6ca0b6907&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=dbc62833-08f5-469a-89e4-fac6ca0b6907&amp;DisplayLang=en</a><br /><br />Microsoft Forefront Security for Exchange Server with SP1 Documentation<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=5cd4e36e-2dab-44d6-990e-3b8184b1cb1b&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=5cd4e36e-2dab-44d6-990e-3b8184b1cb1b&amp;DisplayLang=en</a><br /><br />Microsoft Forefront Security for SharePoint with SP1 Documentation<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=125efb1e-7ff8-4cc8-934a-28fc7c7e59f0&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=125efb1e-7ff8-4cc8-934a-28fc7c7e59f0&amp;DisplayLang=en</a><br /><br />Events/WebCasts<br /><br />Microsoft Security Webcast Series: Upcoming and On-Demand<br /><br />Security Webcast Calendar <a href="http://go.microsoft.com/fwlink/?LinkId=37910" target="_blank">http://go.microsoft.com/fwlink/?LinkId=37910</a> <br />Find security webcasts listed in an easy-to-use calendar format.<br /><br />Upcoming Security Webcasts<br /><a href="http://www.microsoft.com/events/security/upcoming.mspx" target="_blank">http://www.microsoft.com/events/security/upcoming.mspx</a> <br /><br />Register for the following Webcasts on the link above<br /><br />TechNet Webcast: 2008 Defense in Depth Security Series (Part 1 of 8): Why Does Security Matter? (Level 200)<br />Monday, January 07, 2008 11:30 A.M.-12:30 P.M. Pacific Time<br /><br />TechNet Webcast: 2008 Defense in Depth Security Series (Part 2 of 8): All Bark and No Bite (Level 200)<br />Tuesday, January 08, 2008 11:30 A.M.-12:30 P.M. Pacific Time<br /><br />TechNet Webcast: 2008 Defense in Depth Security Series (Part 3 of 8): Gates, Guards, and Guns (Level 200)<br />Wednesday, January 09, 2008 9:30 A.M.-10:30 A.M. Pacific Time<br /><br />TechNet Webcast: Information About Microsoft January Security Bulletins (Level 200)<br />Wednesday, January 09, 2008 11:00 A.M.-12:00 P.M. Pacific Time<br /><br />TechNet Webcast: 2008 Defense in Depth Security Series (Part 4 of 8): Living on the Edge (Level 200)<br />Thursday, January 10, 2008 11:30 A.M.-12:30 P.M. Pacific Time<br /><br />TechNet Webcast: 2008 Defense in Depth Security Series (Part 5 of 8): Keeping Your House in Order (Level 200)<br />Monday, January 14, 2008 11:30 A.M.-12:30 P.M. Pacific Time<br /><br />TechNet Webcast: 2008 Defense in Depth Security Series (Part 6 of 8): Save the Box, Save the Network (Level 200)<br />Thursday, January 15, 2008 11:30 A.M.-12:30 P.M. Pacific Time<br /><br />TechNet Webcast: 2008 Defense in Depth Security Series (Part 7 of 8): If You Build It (Securely), They Won't Come (Level 200)<br />Wednesday, January 16, 2008 11:30 A.M.-12:30 P.M. Pacific Time<br /><br />TechNet Webcast: 2008 Defense in Depth Security Series (Part 8 of 8): If a Terabyte Falls in the Middle of the (Active Directory) Forest (Level 200)<br />Thursday, January 17, 2008 11:30 A.M.-12:30 P.M. Pacific Time<br /><br />On-Demand Security Webcasts<br /><a href="http://www.microsoft.com/events/security/ondemand.mspx" target="_blank">http://www.microsoft.com/events/security/ondemand.mspx</a><br /><br />A.O.B<br /><br />General Security issues/questions <a href="http://go.microsoft.com/?linkid=7938759" target="_blank">http://go.microsoft.com/?linkid=7938759</a><br />Open with newsreader <a href="news://msnews.microsoft.com/microsoft.public.security" target="_blank">news://msnews.microsoft.com/microsoft.public.security</a><br /><br />Virus issues/questions <a href="http://go.microsoft.com/?linkid=7938760" target="_blank">http://go.microsoft.com/?linkid=7938760</a><br />Open with newsreader <a href="news://msnews.microsoft.com/microsoft.public.security.virus" target="_blank">news://msnews.microsoft.com/microsoft.public.security.virus</a><br /><br />ISA Server <a href="http://go.microsoft.com/?linkid=7938761" target="_blank">http://go.microsoft.com/?linkid=7938761</a><br />Open with newsreader <a href="news://msnews.microsoft.com/microsoft.public.isa" target="_blank">news://msnews.microsoft.com/microsoft.public.isa</a><br /><br />Windows 2000: Security <a href="http://go.microsoft.com/?linkid=7938762" target="_blank">http://go.microsoft.com/?linkid=7938762</a><br />Open with newsreader <a href="news://msnews.microsoft.com/microsoft.public.win2000.security" target="_blank">news://msnews.microsoft.com/microsoft.public.win2000.security</a><br /><br />Windows XP: Security Administration <a href="http://go.microsoft.com/?linkid=7938763" target="_blank">http://go.microsoft.com/?linkid=7938763</a><br />Open with newsreader <a href="news://msnews.microsoft.com/microsoft.public.windowsxp.security_admin" target="_blank">news://msnews.microsoft.com/microsoft.public.windowsxp.security_admin</a><br /><br />SQL Server: Security <a href="http://go.microsoft.com/?linkid=7938764" target="_blank">http://go.microsoft.com/?linkid=7938764</a><br />Open with newsreader <a href="news://msnews.microsoft.com/microsoft.public.sqlserver.security" target="_blank">news://msnews.microsoft.com/microsoft.public.sqlserver.security</a><br /><br />Windows Server: Security <a href="http://go.microsoft.com/?linkid=7938765" target="_blank">http://go.microsoft.com/?linkid=7938765</a><br />Open with newsreader <a href="news://msnews.microsoft.com/microsoft.public.windows.server.security" target="_blank">news://msnews.microsoft.com/microsoft.public.windows.server.security</a> <br /><br />Other Security Newsgroups <a href="http://go.microsoft.com/?linkid=7938766" target="_blank">http://go.microsoft.com/?linkid=7938766</a> <br /> <br /><br /><a target="_blank" name="Windows_Platform_">Windows Platform</a><br /><br />News<br /><br />Windows Server 2008 RC1<br />Windows Server 2008, which is scheduled to release to manufacturing (RTM) by the Feb 27 launch event, has reached the RC1 milestone and is available for customers to download. With RC1, Microsoft is enhancing Group Policy with Group Policy Preferences, formerly known as PolicyMaker Standard Edition and Policy Share Manager. As the code approaches final signoff, RC1 is one of the last opportunities for customers and partners to evaluate it and provide feedback. So far, more than 1.8 million customers have obtained Windows Server 2008 evaluation code.<br /><a href="http://www.microsoft.com/presspass/press/2007/dec07/12-05WS08RC1PR.mspx" target="_blank">http://www.microsoft.com/presspass/press/2007/dec07/12-05WS08RC1PR.mspx</a><br /><br />Windows Server 2008 Hyper-V beta ships early to customers and partners.<br />Customers and partners today can download Windows Server 2008 RC1 Enterprise with the beta version of Hyper-V to evaluate the new technology, test applications and plan future consolidation, business continuity and high-availability projects.<br /><a href="http://www.microsoft.com/presspass/press/2007/dec07/12-13EarlyBetaPR.mspx" target="_blank">http://www.microsoft.com/presspass/press/2007/dec07/12-13EarlyBetaPR.mspx</a>New Beta: Introducing Microsoft Assessment and Planning for Windows Server 2008<br />The Microsoft Assessment and Planning (MAP) solution accelerator is the next release of Windows Vista Hardware Assessment. It offers agent-less inventory and assessment and actionable recommendations for Windows Server 2008, Windows Server Virtualization, Terminal Services, SoftGrid, System Center Virtual Machine Manager, Windows Vista, and the 2007 Microsoft Office system. Join the Beta and take a test drive today.<br /><a href="http://go.microsoft.com/?linkid=7949035" target="_blank">http://go.microsoft.com/?linkid=7949035</a> <br /><br />Microsoft Unveils Windows HPC Server 2008<br />Windows HPC Server 2008, the successor to Windows Computer Cluster Server 2003, is based on the Windows Server 2008 operating system and is designed to increase productivity, scalability, and manageability. For more on the increased performance, see Microsoft Rainier Cluster with Windows HPC Server 2008 Delivers 11.75 TFlops and Tops Previous Linpack Benchmark Using the Same Hardware.<br /><a href="http://go.microsoft.com/?linkid=7949036" target="_blank">http://go.microsoft.com/?linkid=7949036</a><br /><br />Documents<br /><br />Windows Vista SP1 Guides for IT Professionals<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e71f0083-1013-4f9c-a3f9-c56e7120a5e9&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=e71f0083-1013-4f9c-a3f9-c56e7120a5e9&amp;DisplayLang=en</a><br /><br />Release Notes for Windows Vista SP1<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=b5b681f5-f366-4ad2-ba10-6a7d209de7bd&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=b5b681f5-f366-4ad2-ba10-6a7d209de7bd&amp;DisplayLang=en</a><br /><br />Windows Server 2008 Developer Story<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=056bb5f7-65ff-4c42-bdae-65754d96b021&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=056bb5f7-65ff-4c42-bdae-65754d96b021&amp;DisplayLang=en</a><br /><br />Downloads<br /><br />Windows 2008 Release Candidate Evaluation Software<br /><a href="http://www.microsoft.com/windowsserver2008/audsel.mspx" target="_blank">http://www.microsoft.com/windowsserver2008/audsel.mspx</a><br /><br />Windows Vista Service Pack 1 RC Public availability Program<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9de6260e-4275-482d-9524-de850c4dd91c&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=9de6260e-4275-482d-9524-de850c4dd91c&amp;DisplayLang=en</a><br /><br />Windows Vista Service Pack 1 RC - 5 Language Standalone Package<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=2fa54665-7716-47d9-b9b7-5cfdf71198cb&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=2fa54665-7716-47d9-b9b7-5cfdf71198cb&amp;DisplayLang=en</a><br /><br />Windows Vista Service Pack 1 RC for x64 Based Editions - 5 Language Standalone package<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=88128a77-6107-46df-89d8-b93c248496e3&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=88128a77-6107-46df-89d8-b93c248496e3&amp;DisplayLang=en</a><br /><br />Windows Vista Service Pack 1 RC1 for x64 Based Editions - All language Standalone packages<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c21c3978-3b7d-4d64-873b-3c9d26982d7a&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=c21c3978-3b7d-4d64-873b-3c9d26982d7a&amp;DisplayLang=en</a><br /><br />Update for Windows Vista (KB943899)<br />This is a reliability update. This update resolves some performance and reliability issues in Windows Vista<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a23e4401-74b7-4987-96ab-86735f718a8e&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=a23e4401-74b7-4987-96ab-86735f718a8e&amp;DisplayLang=en</a> Free Download of System Center Virtual Machine Manager 2007<br />Download and test drive Microsoft System Center Virtual Machine Manager 2007 to maximize IT resources.<br /><a href="http://go.microsoft.com/?linkid=7949072" target="_blank">http://go.microsoft.com/?linkid=7949072</a><br /><br />Windows XP Service Pack 3 Release Candidate 1 is now available for download<br />Windows XP SP3 will be a rollup that includes all previously released updates for Windows XP, including security updates, out-of-band releases and hotfixes. It contains a small number of new updates, but should not significantly change the Windows XP experience.<br /><a href="http://go.microsoft.com/?linkid=7991617" target="_blank">http://go.microsoft.com/?linkid=7991617</a> <br /><br />Microsoft Security Assessment Tool (MSAT) Version 3.5<br />This tool is designed to help organisations discover areas of security risk in their IT infrastructure. Detailed assessment reports, guidance and best practice is provided to help companies prioritise and mitigate identified security risks.<br /><a href="http://go.microsoft.com/?linkid=7991614" target="_blank">http://go.microsoft.com/?linkid=7991614</a><br /><br />Service Pack 1 released for 2007 Microsoft Office system<br />The 2007 Microsoft Office system Service Pack 1 was released on 11 December 2007 and addresses the issues of most concern to customers across the whole Office system. SP1 fixes the leading causes of crashes in each Office application and deploys key fixes and enhancements to make the 2007 Office system even more stable, reliable and easy to use. There is a white paper that fully details the improvements and benefits in Service Pack 1 here and you can download it for yourself from here.<br /><a href="http://go.microsoft.com/?linkid=7991615" target="_blank">http://go.microsoft.com/?linkid=7991615</a><br /><br />Events/WebCasts<br /><br />MSDN: Windows Server 2008 for developers<br />Windows Server 2008 will be launched in Q1 2008. Come and learn what’s new in this release for developers<br />Date: 17/01/2008 13:30 - 16:15 GMT<br /><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032358000&amp;culture=en-GB" target="_blank">http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032358000&amp;culture=en-GB</a><br />Date: 23/01/2008 18:30 - 21:20 GMT<br /><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032357994&amp;culture=en-GB" target="_blank">http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032357994&amp;culture=en-GB</a><br />Date: 24/01/2008 09:30 - 12:15 GMT<br /><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032357996&amp;culture=en-GB" target="_blank">http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032357996&amp;culture=en-GB</a><br /><br />TechNet Webcast: Practical Active Directory Delegation (Level 300)<br />Friday, January 11, 2008 9:30 AM Pacific Time (US &amp; Canada)<br /><a href="http://go.microsoft.com/?linkid=7964887" target="_blank">http://go.microsoft.com/?linkid=7964887</a> <br /><br />Windows HPC Server 2008 - New and Advanced Features<br />Tuesday, January 15, 2008 8:30 AM Pacific Time (US &amp; Canada)<br /><a href="http://go.microsoft.com/?linkid=7964888" target="_blank">http://go.microsoft.com/?linkid=7964888</a><br /><br />Windows HPC Server 2008 - New and Advanced Features<br />Tuesday, January 15, 2008 5:00 PM Pacific Time (US &amp; Canada)<br /><a href="http://go.microsoft.com/?linkid=7964889" target="_blank">http://go.microsoft.com/?linkid=7964889</a><br /><br />IT Manager Webcast: Introduction to the Windows Server 2008 Server Core Installation Option (Level 200)<br />Wednesday, January 16, 2008 11:00 AM Pacific Time (US &amp; Canada)<br /><a href="http://go.microsoft.com/?linkid=7964890" target="_blank">http://go.microsoft.com/?linkid=7964890</a><br /><br />TechNet Webcast: Windows Compare (Part 1 of 6): Reliability in Windows and Linux(Level 200)<br />Wednesday, January 23, 2008 11:30 AM Pacific Time (US &amp; Canada)<br /><a href="http://go.microsoft.com/?linkid=7964891" target="_blank">http://go.microsoft.com/?linkid=7964891</a><br /><br />TechNet Webcast: Windows Compare (Part 2 of 6): Supporting Linux Users in a Windows Environment (Level 200)<br />Friday, January 25, 2008 11:30 AM Pacific Time (US &amp; Canada)<br /><a href="http://go.microsoft.com/?linkid=7964892" target="_blank">http://go.microsoft.com/?linkid=7964892</a><br /><br />TechNet Webcast: How Microsoft IT is Improving Network Performance with Windows Server 2008 and Windows Vista (Level 300)<br />Tuesday, January 29, 2008 9:30 AM Pacific Time (US &amp; Canada)<br /><a href="http://go.microsoft.com/?linkid=7964893" target="_blank">http://go.microsoft.com/?linkid=7964893</a><br /><br />TechNet Webcast: Windows Compare (Part 3 of 6): IIS 7.0 vs. Apache (Level 200)<br />Wednesday, January 30, 2008 11:30 AM Pacific Time (US &amp; Canada)<br /><a href="http://go.microsoft.com/?linkid=7964894" target="_blank">http://go.microsoft.com/?linkid=7964894</a><br /><br />On-Demand Microsoft IT Webcasts for IT Managers<br /><a href="http://go.microsoft.com/?linkid=7281008" target="_blank">http://go.microsoft.com/?linkid=7281008</a><br /><br />On-Demand Microsoft IT Webcasts for IT Pros<br /><a href="http://go.microsoft.com/?linkid=7281009" target="_blank">http://go.microsoft.com/?linkid=7281009</a>Live Webcasts:Full list can be found at: <a title="http://www.microsoft.com/events/default.mspx" href="http://www.microsoft.com/events/default.mspx" target="_blank">http://www.microsoft.com/events/default.mspx</a>Interactive Webcast CalendarThe interactive calendar will help you quickly find live webcasts that fit your schedule as well as on-demand webcasts to view at your convenience. You can choose your time zone and filter this list by audience, webcast series, product or topic, and presenter.<a href="http://www.microsoft.com/events/webcasts/calendar/monthview.aspx" target="_blank">http://www.microsoft.com/events/webcasts/calendar/monthview.aspx</a>Monthly Archived Webcasts:<a title="http://www.microsoft.com/events/webcasts/library/default.mspx" href="http://www.microsoft.com/events/webcasts/library/default.mspx" target="_blank">http://www.microsoft.com/events/webcasts/library/default.mspx</a><br />New KB's<br /><br /><a href="http://support.microsoft.com/?kbid=943509" target="_blank">http://support.microsoft.com/?kbid=943509</a><br />Description of the Jet 4.0 Database Engine hotfix package for Windows XP SP2, for Windows Server 2003 SP1, for Windows Server 2003 SP2, and for Windows Vista: October 23, 2007<br /><a href="http://support.microsoft.com/?kbid=944960" target="_blank">http://support.microsoft.com/?kbid=944960</a><br />Error message when you try to install a WSD printer on a Windows Vista-based computer after the first installation attempt fails: "Operation could not be completed (error 0x00000643)"<br /><a href="http://support.microsoft.com/?kbid=945713" target="_blank">http://support.microsoft.com/?kbid=945713</a><br />Microsoft Security Advisory: Vulnerability in Web Proxy Auto Discovery (WPAD) could allow information disclosure<br /><a href="http://support.microsoft.com/?kbid=944917" target="_blank">http://support.microsoft.com/?kbid=944917</a><br />Windows Vista uses the profile path that is defined on the Terminal Services Profile tab instead of on the Profile tab when a user logs on to a Windows Vista-based client computer by using a Remote Desktop session<br /><a href="http://support.microsoft.com/?kbid=944799" target="_blank">http://support.microsoft.com/?kbid=944799</a><br />The "wake on ring" feature still wakes a Windows Vista-based computer when you set an HD audio controller not to wake the computer<br /><a href="http://support.microsoft.com/?kbid=945360" target="_blank">http://support.microsoft.com/?kbid=945360</a><br />A USB 2.0 device that is attached to a USB 2.0 hub may stop working correctly in Windows Vista<br /><a href="http://support.microsoft.com/?kbid=945538" target="_blank">http://support.microsoft.com/?kbid=945538</a><br />Error message when you try to print an .xps document in Windows Vista or in Windows XP: "An error occurred in the application you were using"<br /><a href="http://support.microsoft.com/?kbid=945184" target="_blank">http://support.microsoft.com/?kbid=945184</a><br />The Rasdial API may free the same memory two times and the dial-up application stops responding on a multiprocessor computer that is running Windows Vista<br /><a href="http://support.microsoft.com/?kbid=945681" target="_blank">http://support.microsoft.com/?kbid=945681</a><br />System restore points and shadow copies of files are missing after you install Windows Vista Service Pack 1<br /><a href="http://support.microsoft.com/?kbid=945435" target="_blank">http://support.microsoft.com/?kbid=945435</a><br />You experience a long delay when you try to access to a WebDAV share for the first time on a Windows Vista-based computer<br /><a href="http://support.microsoft.com/?kbid=945125" target="_blank">http://support.microsoft.com/?kbid=945125</a><br />The preview function does not work correctly in Windows Movie Maker on a Windows Vista-based computer<br /><a href="http://support.microsoft.com/?kbid=944995" target="_blank">http://support.microsoft.com/?kbid=944995</a><br />Error message when you migrate user data to a new Windows Vista computer: “An error occurred in the Handwriting recognition personalization tool”<br /><a href="http://support.microsoft.com/?kbid=944997" target="_blank">http://support.microsoft.com/?kbid=944997</a><br />Recognizer training is not triggered in the Windows Vista handwriting recognition personalization tool after you enter 50 sentences<br /><a href="http://support.microsoft.com/?kbid=943253" target="_blank">http://support.microsoft.com/?kbid=943253</a><br />You notice timing jitter and clock drift when you perform an editing operation or a playback operation on a MIDI audio device in Windows Vista<br /><a href="http://support.microsoft.com/?kbid=943242" target="_blank">http://support.microsoft.com/?kbid=943242</a><br />MIDI notes are played in the wrong order when you perform a capture operation on a MIDI audio device in Windows Vista<br /><a href="http://support.microsoft.com/?kbid=944240" target="_blank">http://support.microsoft.com/?kbid=944240</a><br />An application that sends an IOCTL_SFFDISK_DEVICE_COMMAND request to a Secure Digital (SD) card receives an error message on a 64-bit version of Windows Vista: "ERROR_ACCESS_DENIED"<br /><a href="http://support.microsoft.com/?kbid=943974" target="_blank">http://support.microsoft.com/?kbid=943974</a><br />The "chkdsk /r" command and the "chkdsk /f" command take a long time to run on a Windows Vista-based computer<br /><a href="http://support.microsoft.com/?kbid=936332" target="_blank">http://support.microsoft.com/?kbid=936332</a><br />How to obtain information about hotfixes and security updates that are included in Windows Vista Service Pack 1<br /><a href="http://support.microsoft.com/?kbid=944515" target="_blank">http://support.microsoft.com/?kbid=944515</a><br />An application returns incorrect values for the conversion mode and for the sentence mode of an Input Method Editor (IME) on a Windows Vista-based computer<br /><a href="http://support.microsoft.com/?kbid=942392" target="_blank">http://support.microsoft.com/?kbid=942392</a><br />On a Windows Vista-based computer, you cannot access certain directories on a Web Distributed Authoring and Versioning (WebDAV) server<br /><a href="http://support.microsoft.com/?kbid=943504" target="_blank">http://support.microsoft.com/?kbid=943504</a><br />FIX: Internet Explorer in Windows CE .NET 4.2 deletes cached content if program memory is low<br /><a href="http://support.microsoft.com/?kbid=943505" target="_blank">http://support.microsoft.com/?kbid=943505</a><br />FIX: Internet Explorer in Windows CE 5.0 may delete cached content if program memory is low<br /><a href="http://support.microsoft.com/?kbid=944046" target="_blank">http://support.microsoft.com/?kbid=944046</a><br />FIX: The memory load increases, and the operating system runs out of memory after you execute an application that uses an EDB database on a Windows Embedded CE 6.0-based device<br /><a href="http://support.microsoft.com/?kbid=945852" target="_blank">http://support.microsoft.com/?kbid=945852</a><br />Buttons are missing after you upgrade from MSN Toolbar to Windows Live Toolbar<br /><a href="http://support.microsoft.com/?kbid=942423" target="_blank">http://support.microsoft.com/?kbid=942423</a><br />FIX: You cannot play Windows Media content that is encoded by using the VC1 codec in Windows XP, in Windows Server 2003, or in Windows 2000<br /><a href="http://support.microsoft.com/?kbid=943663" target="_blank">http://support.microsoft.com/?kbid=943663</a><br />How to manually update the time zone definition in Windows SharePoint Services for the Venezuela time zone change<br /><a href="http://support.microsoft.com/?kbid=945463" target="_blank">http://support.microsoft.com/?kbid=945463</a><br />Windows Server 2003 does not issue security event 523 even though the WarningLevel registry entry is configured<br /><a href="http://support.microsoft.com/?kbid=945410" target="_blank">http://support.microsoft.com/?kbid=945410</a><br />A Windows Server 2003-based computer may stop responding when many connections are created and then disconnected if IPsec is configured<br /><a href="http://support.microsoft.com/?kbid=942909" target="_blank">http://support.microsoft.com/?kbid=942909</a><br />On a Windows Server 2003 R2-based computer, a POSIX application that calls the Sleep function does not work correctly if the system clock is changed during the sleep interval<br /><a href="http://support.microsoft.com/?kbid=943443" target="_blank">http://support.microsoft.com/?kbid=943443</a><br />FIX: An access violation may occur when you use the 64-bit version of the DV Video Encoder filter in a 64-bit version of Windows Server 2003 or of Windows XP<br /><a href="http://support.microsoft.com/?kbid=944904" target="_blank">http://support.microsoft.com/?kbid=944904</a><br />Error message on a Windows XP-based computer when you work with a network share: "STOP: 0x000000C2 BAD_POOL_CALLER"<br /><a href="http://support.microsoft.com/?kbid=945454" target="_blank">http://support.microsoft.com/?kbid=945454</a><br />USB devices may not work after your computer resumes from standby in Windows XP on Lenovo portable computers<br /><a href="http://support.microsoft.com/?kbid=944781" target="_blank">http://support.microsoft.com/?kbid=944781</a><br />When you use a drag-and-drop operation to move or to copy an Outlook e-mail message on a Windows XP SP2-based computer, the operation fails without any notification<br /><a href="http://support.microsoft.com/?kbid=943991" target="_blank">http://support.microsoft.com/?kbid=943991</a><br />After you update a storage driver, you may be prompted to reactivate Windows Vista<br /><a href="http://support.microsoft.com/?kbid=945145" target="_blank">http://support.microsoft.com/?kbid=945145</a><br />On a Windows Vista-based computer, you may be prompted for your passport credentials every time that you try to access documents on a WebDAV site from a new workspace<br /><a href="http://support.microsoft.com/?kbid=942763" target="_blank">http://support.microsoft.com/?kbid=942763</a><br />December 2007 cumulative time zone update for Microsoft Windows operating systems<br /><a href="http://support.microsoft.com/?kbid=938716" target="_blank">http://support.microsoft.com/?kbid=938716</a><br />You may be unable to save a file in a Microsoft Office program on a Windows Vista-based computer<br /><a href="http://support.microsoft.com/?kbid=943719" target="_blank">http://support.microsoft.com/?kbid=943719</a><br />IP networking over the IEEE 1394 bus is not supported in Windows Vista and in all later versions of Windows<br /><a href="http://support.microsoft.com/?kbid=944996" target="_blank">http://support.microsoft.com/?kbid=944996</a><br />A word still has an "Add" option after you add the word to the dictionary by using the Windows Vista Tablet PC Input Panel<br /><a href="http://support.microsoft.com/?kbid=944998" target="_blank">http://support.microsoft.com/?kbid=944998</a><br />When you change the theme on a Windows Vista Tablet PC, the "Handwriting recognition personalization" tool becomes distorted<br /><a href="http://support.microsoft.com/?kbid=945149" target="_blank">http://support.microsoft.com/?kbid=945149</a><br />Graphics performance can be improved in certain multiple-GPU scenarios on a Windows Vista-based computer<br /><a href="http://support.microsoft.com/?kbid=945011" target="_blank">http://support.microsoft.com/?kbid=945011</a><br />System icons may not appear in the notification area on a Windows Vista-based computer until you restart the computer<br /><a href="http://support.microsoft.com/?kbid=945122" target="_blank">http://support.microsoft.com/?kbid=945122</a><br />User profiles are unexpectedly deleted after you configure the "Delete user profiles older than a specified number of days on system restart" Group Policy setting on a Windows Vista-based computer<br /><a href="http://support.microsoft.com/?kbid=943243" target="_blank">http://support.microsoft.com/?kbid=943243</a><br />FIX: Kerberos authentication may fail on a Windows CE 5.0-based device<br /><a href="http://support.microsoft.com/?kbid=945741" target="_blank">http://support.microsoft.com/?kbid=945741</a><br />You may receive a "Cannot connect to the Windows Live ID service" error message when you sign-in to Windows Live Family Safety<br /><a href="http://support.microsoft.com/?kbid=945359" target="_blank">http://support.microsoft.com/?kbid=945359</a><br />Metadata that is assigned to a photo in Windows Live Photo Gallery is not visible in the Windows Explorer Properties dialog box in Windows XP<br /><a href="http://support.microsoft.com/?kbid=945396" target="_blank">http://support.microsoft.com/?kbid=945396</a><br />Windows SharePoint Services 3.0 services that were previously removed are restored after you restore the system state on a Windows Server 2008-based computer<br /><a href="http://support.microsoft.com/?kbid=945330" target="_blank">http://support.microsoft.com/?kbid=945330</a><br />An application that uses the CDOSYS library or the System.Web.Mail namespace in a non-English version of Windows Server 2003 Service Pack 2 may receive a corrupted error message<br /><a href="http://support.microsoft.com/?kbid=940569" target="_blank">http://support.microsoft.com/?kbid=940569</a><br />On a computer that has Microsoft Data Access Components 2.8 installed, an application receives an incorrect value for the identity column from a SQL Server 2005 database<br /><a href="http://support.microsoft.com/?kbid=944971" target="_blank">http://support.microsoft.com/?kbid=944971</a><br />A Cluster node may lose an MNS quorum, and the Cluster service may stop on a Windows Server 2003, Enterprise Edition-based computer<br /><a href="http://support.microsoft.com/?kbid=943809" target="_blank">http://support.microsoft.com/?kbid=943809</a><br />Event 1164 is logged when a disk or a mount point is mounted in a Windows Server 2003 cluster that uses a Majority Node Set (MNS) quorum<br /><a href="http://support.microsoft.com/?kbid=943875" target="_blank">http://support.microsoft.com/?kbid=943875</a><br />Authorization Manager in Windows Server 2003 cannot add roles from other domains in the forest after security update 926122 or Windows Server 2003 Service Pack 2 is installed<br /><a href="http://support.microsoft.com/?kbid=944195" target="_blank">http://support.microsoft.com/?kbid=944195</a><br />Error message when you use a mobile device to access an ASP.NET Web site that is hosted in IIS 6.0: "HTTP 400 - Bad Request"<br /><a href="http://support.microsoft.com/?kbid=938863" target="_blank">http://support.microsoft.com/?kbid=938863</a><br />Name resolution may fail on a Windows Server 2003 DNS server if conditional forwarding is configured and if records have different TTL values<br /><a href="http://support.microsoft.com/?kbid=944762" target="_blank">http://support.microsoft.com/?kbid=944762</a><br />Event ID 14079 is logged every 49.7 days on a Windows Server 2003-based computer that is running ISA Server 2004<br /><a href="http://support.microsoft.com/?kbid=942004" target="_blank">http://support.microsoft.com/?kbid=942004</a><br />A Windows Server 2003 x64 Edition-based computer does not automatically restart as expected after the .crash command is executed to generate a dump file<br /><a href="http://support.microsoft.com/?kbid=942840" target="_blank">http://support.microsoft.com/?kbid=942840</a><br />You may experience slow Web browser performance when you iew a Web page that uses JScript in Internet Explorer on a Windows Server 2003-based computer or on a Windows XP-based computer<br /><a href="http://support.microsoft.com/?kbid=945222" target="_blank">http://support.microsoft.com/?kbid=945222</a><br />On a Windows XP Service Pack 2-based computer, you cannot access the correct DFS share after information about the link target is updated<br /><a href="http://support.microsoft.com/?kbid=939850" target="_blank">http://support.microsoft.com/?kbid=939850</a><br />After you use a smart card to unlock a Windows XP-based computer, you are prompted for authentication when you access resources that require NTLM authentication<br /><a href="http://support.microsoft.com/?kbid=944939" target="_blank">http://support.microsoft.com/?kbid=944939</a><br />The first logon to a Windows XP-based computer through terminal services is not denied even though the user is not a member of the Remote Desktop Users group<br /><a href="http://support.microsoft.com/?kbid=931618" target="_blank">http://support.microsoft.com/?kbid=931618</a><br />The two sides of an audio call may not hear one another on a Windows XP-based computer that has Communicator installed<br /><a href="http://support.microsoft.com/?kbid=944507" target="_blank">http://support.microsoft.com/?kbid=944507</a><br />Error code when you try to update end-user-defined character (EUDC) TrueType fonts on a Windows XP Service Pack 2 -based computer: "1224:ERROR_USER_MAPPED_FILE"<br /><a href="http://support.microsoft.com/?kbid=945551" target="_blank">http://support.microsoft.com/?kbid=945551</a><br />Video series information is lost when you update your Zune 30GB device to the v2 software<br /><br /><a target="_blank" name="Internet">Internet</a><br /><br />News<br /><br />Microsoft Internet Security and Acceleration Server<br /><br />Internet Security and Acceleration (ISA) Server TechCenter<br /><a href="http://www.microsoft.com/technet/isa/default.mspx" target="_blank">http://www.microsoft.com/technet/isa/default.mspx</a><br /><br />Please note that if you have feedback on documentation or wish to request new documents - email <a href="mailto:isadocs@microsoft.com">isadocs@microsoft.com</a><br /><br />ForeFront Edge Security Forums at <a href="http://forums.microsoft.com/ForeFront/default.aspx?ForumGroupID=384&amp;SiteID=41" target="_blank">http://forums.microsoft.com/ForeFront/default.aspx?ForumGroupID=384&amp;SiteID=41</a><br />Discuss ISA Server at the new Microsoft Forefront™ Edge Security forums, available at TechCenter<br /><br />Internet Security and Acceleration Server Blog<br />The ISA Server Product Team Blog (<a href="http://blogs.technet.com/isablog/" target="_blank">http://blogs.technet.com/isablog/</a>) is updated on a regular basis. Latest entries include:<br /><br />Publishing Exchange 2007 may fail after installing the update "Update for Publishing Microsoft Exchange Server 2007 for ISA Server 2006"<br /><a href="http://blogs.technet.com/isablog/archive/2007/12/12/publishing-exchange-2007-may-fail-after-installing-the-update-update-for-publishing-microsoft-exchange-server-2007-for-isa-server-2006.aspx" target="_blank">http://blogs.technet.com/isablog/archive/2007/12/12/publishing-exchange-2007-may-fail-after-installing-the-update-update-for-publishing-microsoft-exchange-server-2007-for-isa-server-2006.aspx</a><br /><br />Microsoft Internet information Server<br /><br />List of registry keys affecting IIS7 behavior<br />Few months ago, I fired procmon and collected all the registry keys IIS7 processes read. I then gathered the information about these registry keys from different people in the team and also collected available information on the internet. I have been sitting on this information for quite a while hoping...<br />by <a href="http://blogs.iis.net/members/ksingla.aspx" target="_blank">ksingla</a> on 12-30-2007, 4:16 PM<br /><a href="http://blogs.iis.net/ksingla/archive/2007/12/30/list-of-registry-keys-affecting-iis7-behavior.aspx" target="_blank">http://blogs.iis.net/ksingla/archive/2007/12/30/list-of-registry-keys-affecting-iis7-behavior.aspx</a><br /><br />WebDAV Module for Windows Server 2008 GoLive Beta is released<br />Earlier today the IIS product team released the GoLive beta version of the new WebDAV extension module for IIS 7. This version is currently available for Windows Server 2008 only, but it will be supported on Windows Vista when Service Pack 1 for Vista is released. Listed below are the links for the download...<br />by <a href="http://blogs.msdn.com/robert_mcmurray/archive/2007/12/22/webdav-module-for-windows-server-2008-golive-beta-is-released.aspx" target="_blank">Robert McMurray's Blog [MSFT]</a> on 12-22-2007, 7:55 PM<br /><a href="http://blogs.iis.net/robert_mcmurray/archive/2007/12/22/webdav-module-for-windows-server-2008-golive-beta-is-released.aspx" target="_blank">http://blogs.iis.net/robert_mcmurray/archive/2007/12/22/webdav-module-for-windows-server-2008-golive-beta-is-released.aspx</a><br /><br />MSDN Mag: Enhance Your Apps with the ASP.NET Integrated Pipeline!<br />At last, my MSDN article about using the ASP.NET Integrated Pipeline is out in MSDN Magazine. This article is all about using existing ASP.NET features and building new ASP.NET modules to improve existing applications. What's more, I do this without touching a single line of the application itself, which...<br />by <a href="http://blogs.iis.net/members/mvolo.aspx" target="_blank">mvolo</a> on 12-20-2007, 3:53 PM<br /><a href="http://blogs.iis.net/mvolo/archive/2007/12/20/msdn-mag-enhance-your-apps-with-the-asp-net-integrated-pipeline.aspx" target="_blank">http://blogs.iis.net/mvolo/archive/2007/12/20/msdn-mag-enhance-your-apps-with-the-asp-net-integrated-pipeline.aspx</a><br /><br />Ins &amp; Outs of hostable web core<br />I started writing an application which uses hostable web core (HWC) functionality of IIS7 and before making it available for download I thought it will be useful to write about HWC in detail. Hostable web core enables processes other than w3wp.exe to load IIS core and do almost everything that a worker...<br />by <a href="http://blogs.iis.net/members/ksingla.aspx" target="_blank">ksingla</a> on 12-20-2007, 3:05 AM<br /><a href="http://blogs.iis.net/ksingla/archive/2007/12/20/ins-amp-outs-of-hostable-web-core.aspx" target="_blank">http://blogs.iis.net/ksingla/archive/2007/12/20/ins-amp-outs-of-hostable-web-core.aspx</a><br /><br />Go Live (and save money) with Bit Rate Throttling!<br />I am happy to announce that the latest version of Bit Rate Throttling, an Internet Information Services 7.0 (IIS7) Media Pack feature, is now available for download! This updated version adds additional controls to help an administrator ensure a reliable and consistent end-user experience, particularly...<br />by <a href="http://blogs.iis.net/members/chriskno.aspx" target="_blank">chriskno</a> on 12-19-2007, 12:18 PM<br /><a href="http://blogs.iis.net/chriskno/archive/2007/12/19/go-live-and-save-money-on-video-downloads-with-bit-rate-throttling.aspx" target="_blank">http://blogs.iis.net/chriskno/archive/2007/12/19/go-live-and-save-money-on-video-downloads-with-bit-rate-throttling.aspx</a><br /><br />Breaking Changes for ASP.NET 2.0 applications running in Integrated mode on IIS 7.0<br />ASP.NET 2.0 applications on IIS 7.0 are hosted using the ASP.NET Integrated mode by default. This new mode enables a myriad of exciting scenarios including using super-valuable ASP.NET features like Forms Authentication for your entire Web site, and developing new ASP.NET modules to do things like URL...<br />by <a href="http://blogs.iis.net/members/mvolo.aspx" target="_blank">mvolo</a> on 12-08-2007, 9:12 PM<br /><a href="http://blogs.iis.net/mvolo/archive/2007/12/08/Breaking-Changes-ASP.NET-2.0-Integrated-mode-IIS-7.0.aspx" target="_blank">http://blogs.iis.net/mvolo/archive/2007/12/08/Breaking-Changes-ASP.NET-2.0-Integrated-mode-IIS-7.0.aspx</a><br /><br />Windows Server 2008 RC1 available for download!<br />Windows Server 2008 RC1 is available for download! We are feature and quality complete with this release. In this build, we address feedback that we have gotten from customers in beta and our RC0 release. There is nothing quite like deploying IIS7 in a diverse set of production environments worldwide...<br />by <a href="http://blogs.iis.net/members/mailant.aspx" target="_blank">mailant</a> on 12-07-2007, 2:38 AM<br /><a href="http://blogs.iis.net/mailant/archive/2007/12/07/windows-server-2008-rc1-available-for-download.aspx" target="_blank">http://blogs.iis.net/mailant/archive/2007/12/07/windows-server-2008-rc1-available-for-download.aspx</a><br /><br />FastCGI Extension for IIS6 – GoLive to RTM release upgrade<br />As it has been already mentioned in download instructions for FastCGI Extension RTM for IIS 6, we do not support in-place upgra