<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Stuff n Things : FCS</title><link>http://blogs.technet.com/kfalde/archive/tags/FCS/default.aspx</link><description>Tags: FCS</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Some Interesting FCS SQL Queries</title><link>http://blogs.technet.com/kfalde/archive/2009/05/08/some-interesting-fcs-sql-queries.aspx</link><pubDate>Sat, 09 May 2009 00:39:31 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3237900</guid><dc:creator>kfalde</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.technet.com/kfalde/comments/3237900.aspx</comments><wfw:commentRss>http://blogs.technet.com/kfalde/commentrss.aspx?PostID=3237900</wfw:commentRss><description>&lt;p&gt;With a recent case I have an issue where the client count of managed computers in MOM admin console was quite different then that in the FCS console so I was trying to find out exactly which computers were not in FCS so I could troubleshoot some of those more effectively.&amp;#160; The first thing I checked was looking at Agent-Managed Systems in MOM admin just to make sure these were not computers that had not been checking in for a while (they weren’t all had heartbeats within last day or two) as I know we drop off computers from our total count in the FCS console that have not checked in in 30 days.&amp;#160; Since this was not the case I was pointed out that it may be an issue with clients having the MOM agent but not actually having SSA or AM installed on them or corrupted in some way.&amp;#160; Unfortunately I didn’t know a good way to check on this in MOM so I had to do some digging around to create some queries to make this happen,&amp;#160; below are the results I have:&lt;/p&gt;  &lt;p&gt;This one is the easiest but just dumps a list of all computers in MOM, make sure you select to use the OnePoint db when you start a New Query in SQL Server Management Studio&lt;/p&gt;  &lt;p&gt;&lt;font color="#80ff00"&gt;Select Name from Computer&lt;/font&gt;&lt;/p&gt; &lt;style type="text/css"&gt;



.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }&lt;/style&gt;  &lt;p&gt;This next one selects all the computers that have FCS installed on them&lt;/p&gt;  &lt;p&gt;&lt;font color="#80ff00"&gt;select Computer as FCSCLIENTS from computertocomputerruleview where [Rule] like '%Microsoft Forefront Client Security Agents%' order by FCSCLIENTS&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;This one does a subquery of total computers against computers that have FCS on them to give us a list of computers that for some reason do not have FCS on them.&lt;/p&gt;  &lt;p&gt;&lt;font color="#80ff00"&gt;select distinct Name as MISSINGFCS from Computer where Name not in (Select Computer from computertocomputerruleview where [Rule] like '%Microsoft Forefront Client Security Agents%')&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;Hopefully this helps someone else as well.. I’ll hopefully add to this over time if I find anything more that’s useful.&lt;/p&gt;  &lt;p&gt;Update 7/10/09 Adding some more based on a request from a blog reader.&amp;#160; Customer looking for a way to list all detection events. You could actually play around with this some&amp;#160; as this &lt;a href="http://en.wikipedia.org/wiki/View_(database)"&gt;View&lt;/a&gt; does have events from other sources as well as FCSAM.&lt;/p&gt;  &lt;p&gt;&lt;font color="#80ff00"&gt;SELECT [LoggedOn]      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; ,[LoggedOnDomain]       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; ,[Source]       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; ,[Evtime]       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; ,[Eventno]       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; ,[Evttext]       &lt;br /&gt;&amp;#160; FROM [OnePoint].[dbo].[EventView] where source like '%FCSAM%'       &lt;br /&gt;and ([Eventno]='1006' or [Eventno]='1007' or [Eventno]='3004' or [Eventno]='3005') order by [Evtime]&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;You could also do some filtering by date by adding an extra “and ([Evtime]&amp;gt;='2009-06-10' and [Evtime]&amp;lt;='2009-06-13')” statement to this before the order by statement.&amp;#160; &lt;/p&gt;  &lt;p&gt;Just as an FYI tables/views/db schema of FCS/MOM are not documented/supported in any way so if any of these break with some update :) :) that’s life.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3237900" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/kfalde/archive/tags/FCS+Database/default.aspx">FCS Database</category><category domain="http://blogs.technet.com/kfalde/archive/tags/FCS/default.aspx">FCS</category></item><item><title>Changes to Microsoft Anti-Malware</title><link>http://blogs.technet.com/kfalde/archive/2008/11/19/changes-to-microsoft-anti-malware.aspx</link><pubDate>Wed, 19 Nov 2008 20:14:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3156458</guid><dc:creator>kfalde</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/kfalde/comments/3156458.aspx</comments><wfw:commentRss>http://blogs.technet.com/kfalde/commentrss.aspx?PostID=3156458</wfw:commentRss><description>&lt;P&gt;This doesn’t really affect the FCS world but it is an interesting development. &lt;A title=https://www.microsoft.com/presspass/features/2008/Nov08/11-18AmyBarzdukasQandA.mspx href="https://www.microsoft.com/presspass/features/2008/Nov08/11-18AmyBarzdukasQandA.mspx" mce_href="https://www.microsoft.com/presspass/features/2008/Nov08/11-18AmyBarzdukasQandA.mspx"&gt;https://www.microsoft.com/presspass/features/2008/Nov08/11-18AmyBarzdukasQandA.mspx&lt;/A&gt; apparently we are going to begin to offer a no-cost anti-malware solution in 2nd half of 2008.&amp;nbsp; This is going to be more targeted at the end-user market it appears from the look of it.&amp;nbsp; Check out the article for an interesting read.&lt;/P&gt;
&lt;SCRIPT type=text/javascript&gt;
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
&lt;/SCRIPT&gt;

&lt;SCRIPT type=text/javascript&gt;
try {
var pageTracker = _gat._getTracker("UA-6340849-1");
pageTracker._trackPageview();
} catch(err) {}&lt;/SCRIPT&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3156458" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/kfalde/archive/tags/FCS/default.aspx">FCS</category><category domain="http://blogs.technet.com/kfalde/archive/tags/Incident+Response/default.aspx">Incident Response</category></item><item><title>FCS .adm settings</title><link>http://blogs.technet.com/kfalde/archive/2008/11/14/fcs-adm-settings.aspx</link><pubDate>Fri, 14 Nov 2008 19:50:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3153302</guid><dc:creator>kfalde</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.technet.com/kfalde/comments/3153302.aspx</comments><wfw:commentRss>http://blogs.technet.com/kfalde/commentrss.aspx?PostID=3153302</wfw:commentRss><description>&lt;P&gt;I’m not really advocating using this and I can’t take credit for this as it was&amp;nbsp; posted on the FCS forums by a “&lt;A target=_blank href="http://social.technet.microsoft.com/Forums/en-US/Forefrontclientgeneral/thread/8574ed97-b84d-4b0a-ae9e-d4985ed7217f#page:2" mce_href="http://social.technet.microsoft.com/Forums/en-US/Forefrontclientgeneral/thread/8574ed97-b84d-4b0a-ae9e-d4985ed7217f#page:2"&gt;lofty10&lt;/A&gt;”.&amp;nbsp; However I do know that many people are looking for something like this to manage FCS clients that do not have an FCS server infrastructure for whatever reason.&amp;nbsp; Just remember that you get no reporting whatsoever doing this but you can at least control some scan/update intervals and exclusions.&amp;nbsp; I have the .adm located on my SkyDrive at the following link.&lt;/P&gt;&lt;IFRAME style="BORDER-BOTTOM: #dde5e9 1px solid; BORDER-LEFT: #dde5e9 1px solid; PADDING-BOTTOM: 0px; BACKGROUND-COLOR: #ffffff; MARGIN: 3px; PADDING-LEFT: 0px; WIDTH: 240px; PADDING-RIGHT: 0px; HEIGHT: 26px; BORDER-TOP: #dde5e9 1px solid; BORDER-RIGHT: #dde5e9 1px solid; PADDING-TOP: 0px" marginHeight=0 src="http://cid-14eec8ab42191b55.skydrive.live.com/embedrow.aspx/FCS/forefront.adm" frameBorder=0 marginWidth=0 scrolling=no mce_src="http://cid-14eec8ab42191b55.skydrive.live.com/embedrow.aspx/FCS/forefront.adm"&gt;&lt;/IFRAME&gt;
&lt;SCRIPT type=text/javascript&gt;
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
&lt;/SCRIPT&gt;

&lt;SCRIPT type=text/javascript&gt;
var pageTracker = _gat._getTracker("UA-6340849-1");
pageTracker._trackPageview();
&lt;/SCRIPT&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3153302" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/kfalde/archive/tags/FCS/default.aspx">FCS</category><category domain="http://blogs.technet.com/kfalde/archive/tags/FCS+ADM/default.aspx">FCS ADM</category></item><item><title>FCS Intervals</title><link>http://blogs.technet.com/kfalde/archive/2008/10/17/fcs-intervals.aspx</link><pubDate>Fri, 17 Oct 2008 21:22:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3138089</guid><dc:creator>kfalde</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/kfalde/comments/3138089.aspx</comments><wfw:commentRss>http://blogs.technet.com/kfalde/commentrss.aspx?PostID=3138089</wfw:commentRss><description>&lt;P&gt;So you've seen the following options with your FCS settings and are wondering how do these work???&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Malware Scanning&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"Run a Quick Scan at set interval (hours):"&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Security state assessment&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;"Scan at set interval (hours):"&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/kfalde/WindowsLiveWriter/FCSIntervals_C755/image_2.png" mce_href="http://blogs.technet.com/blogfiles/kfalde/WindowsLiveWriter/FCSIntervals_C755/image_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.technet.com/blogfiles/kfalde/WindowsLiveWriter/FCSIntervals_C755/image_thumb.png" width=479 height=441 mce_src="http://blogs.technet.com/blogfiles/kfalde/WindowsLiveWriter/FCSIntervals_C755/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Malware Definition Updates&lt;/P&gt;
&lt;P&gt;"Check for updates at set interval (hours):"&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/kfalde/WindowsLiveWriter/FCSIntervals_C755/image_4.png" mce_href="http://blogs.technet.com/blogfiles/kfalde/WindowsLiveWriter/FCSIntervals_C755/image_4.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.technet.com/blogfiles/kfalde/WindowsLiveWriter/FCSIntervals_C755/image_thumb_1.png" width=472 height=191 mce_src="http://blogs.technet.com/blogfiles/kfalde/WindowsLiveWriter/FCSIntervals_C755/image_thumb_1.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;We had a customer recently ask about this as they were having systems miss their scheduled scans for too many times which eventually causes the client to return the wonderful Orange Box with regards to haven't had a scan in more then 10 days.&amp;nbsp; Initially it appeared that their scheduled scan was set to 5am or something of that like and the systems in question (mostly laptops) were turned off during this time period.&amp;nbsp; Based on this we recommended setting a quick scan interval which the customer did however they were still having problems with missing scans.&amp;nbsp; When we checked into the interval being used the customer had set it to 24 hours for quick scans...&lt;/P&gt;
&lt;P&gt;So here's the problem and how it works.&amp;nbsp; When the FCS client/service starts it basically creates a timer object which says right now is time 0 and at "interval" hours from now I will run whatever it is that needs to run Quick Scan/SSA Scan/Definition Update.&amp;nbsp; The problem here is that when systems are turned off this timer object goes away and is basically restarted when the system restarts.&amp;nbsp; So in our customers case the systems in question were being turned off at night and the 24 hour interval was never reached and the scan never performed.&amp;nbsp; Based on the users computing habits we have basically recommended that the interval be set to something around 5-6 hours so that it will hopefully run at least 1x during the work day while the system is on but not multiple times so to not cause performance issues while the user is working.&lt;/P&gt;
&lt;P&gt;Another side note of interest is that if your system hibernated between the intervals it should not reset the timer from what we have seen and the scan should still occur.&amp;nbsp; Supposedly if your system is hibernated/in sleep mode it should also try to scan when you resume however I have not been able to test that yet to confirm (if anyone has a laptop and wants to try let me know your results).&lt;/P&gt;
&lt;SCRIPT type=text/javascript&gt;
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
&lt;/SCRIPT&gt;

&lt;SCRIPT type=text/javascript&gt;
var pageTracker = _gat._getTracker("UA-6340849-1");
pageTracker._trackPageview();
&lt;/SCRIPT&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3138089" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/kfalde/archive/tags/FCS/default.aspx">FCS</category><category domain="http://blogs.technet.com/kfalde/archive/tags/FCS+Policy/default.aspx">FCS Policy</category></item><item><title>FCS and System Center Essentials</title><link>http://blogs.technet.com/kfalde/archive/2008/10/08/fcs-and-system-center-essentials.aspx</link><pubDate>Thu, 09 Oct 2008 01:16:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3134326</guid><dc:creator>kfalde</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/kfalde/comments/3134326.aspx</comments><wfw:commentRss>http://blogs.technet.com/kfalde/commentrss.aspx?PostID=3134326</wfw:commentRss><description>&lt;P&gt;Just found this posting on the SCE forums regarding integration of SCE and FCS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;A href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=1797488&amp;amp;SiteID=17" mce_href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=1797488&amp;amp;SiteID=17"&gt;http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=1797488&amp;amp;SiteID=17&lt;/A&gt;&amp;nbsp;is the link,&amp;nbsp; The text is below from the forum posting:&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal align=left&gt;&lt;U&gt;Question 16:&lt;/U&gt;&amp;nbsp; Can I use Essentials 2007&amp;nbsp;and Forefront Client Security to manage the same computers?&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal align=left mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal align=left&gt;Yes.&amp;nbsp; Please read through these configuration steps to understand how to use both products in the same environment.&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal align=left mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE style="MARGIN-RIGHT: 0px" dir=ltr&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal align=left&gt;&lt;SPAN&gt;&lt;FONT size=5&gt;&lt;FONT color=#365f91&gt;&lt;FONT face=Cambria&gt;&lt;STRONG&gt;Setup&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in" class=MsoNormal&gt;&lt;FONT size=3 face=Calibri&gt;Base requirements:&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT: -0.25in; MARGIN: 0in 0in 0pt 1in" class=MsoListParagraph&gt;&lt;SPAN style="FONT-FAMILY: Symbol"&gt;&lt;SPAN&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3 face=Calibri&gt;Essentials 2007 must be installed on x86 hardware.&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT: -0.25in; MARGIN: 0in 0in 0pt 1in" class=MsoListParagraph&gt;&lt;SPAN style="FONT-FAMILY: Symbol"&gt;&lt;SPAN&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3 face=Calibri&gt;Forefront Client Security must be installed in the 2 machine (or more) supported configuration from their guide, where the SCE server is the distribution server component.&amp;nbsp; No other FCS workload is supported on the Essentials server.&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT: -0.25in; MARGIN: 0in 0in 0pt 1in" class=MsoListParagraph&gt;&lt;SPAN style="FONT-FAMILY: Symbol"&gt;&lt;SPAN&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3 face=Calibri&gt;All FCS managed machines must be SCE managed machines&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in" class=MsoNormal&gt;&lt;FONT size=3 face=Calibri&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in" class=MsoNormal&gt;&lt;FONT size=3 face=Calibri&gt;Configuration notes:&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT: -0.25in; MARGIN: 0in 0in 0pt 1in" class=MsoListParagraph&gt;&lt;SPAN style="FONT-FAMILY: Symbol"&gt;&lt;SPAN&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3 face=Calibri&gt;If the FCS distribution server is installed on to Essentials 2007, it will alter the subscription and approval settings already configured.&amp;nbsp; The administrator will need to re-run the Update Management Wizard again to apply custom settings.&amp;nbsp; It is important that the “Definitions” classification and the “Forefront” product remain subscribed and declared in the auto-approval settings.&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT: -0.25in; MARGIN: 0in 0in 0pt 1in" class=MsoListParagraph&gt;&lt;SPAN style="FONT-FAMILY: Symbol"&gt;&lt;SPAN&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3 face=Calibri&gt;If Essentials is installed on to the Distribution server running FCS, the same classification and product settings need to be applied. &lt;/FONT&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT: -0.25in; MARGIN: 0in 0in 0pt 1in" class=MsoListParagraph&gt;&lt;SPAN style="FONT-FAMILY: Symbol"&gt;&lt;SPAN&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT: 7pt 'Times New Roman'"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3 face=Calibri&gt;The Essentials 2007 default client and server scan times fall 1-2 hours after the FCS scan, which may leave managed machines up to 22 hours stale.&amp;nbsp; We recommend using Group Policy to set the client scan time to 4:00 AM, and the Server Sync time to 1:00AM.&lt;/FONT&gt;&lt;/P&gt;
&lt;H1 style="MARGIN: 24pt 0in 0pt 0.5in"&gt;&lt;SPAN&gt;&lt;FONT size=5&gt;&lt;FONT color=#365f91&gt;&lt;FONT face=Cambria&gt;Operation&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/H1&gt;
&lt;P style="MARGIN: 0in 0in 0pt 0.5in" class=MsoNormal&gt;&lt;FONT size=3 face=Calibri&gt;It is important to note that the purchased limits of the FCS solution must remain within the purchased limits of the Essentials solution.&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;
&lt;SCRIPT type=text/javascript&gt;
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
&lt;/SCRIPT&gt;

&lt;SCRIPT type=text/javascript&gt;
var pageTracker = _gat._getTracker("UA-6340849-1");
pageTracker._trackPageview();
&lt;/SCRIPT&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3134326" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/kfalde/archive/tags/FCS/default.aspx">FCS</category><category domain="http://blogs.technet.com/kfalde/archive/tags/SCE/default.aspx">SCE</category><category domain="http://blogs.technet.com/kfalde/archive/tags/System+Center+Essentials/default.aspx">System Center Essentials</category></item><item><title>FCS SP1</title><link>http://blogs.technet.com/kfalde/archive/2008/08/29/fcs-sp1.aspx</link><pubDate>Fri, 29 Aug 2008 22:35:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3114091</guid><dc:creator>kfalde</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/kfalde/comments/3114091.aspx</comments><wfw:commentRss>http://blogs.technet.com/kfalde/commentrss.aspx?PostID=3114091</wfw:commentRss><description>&lt;P&gt;So Forefront Client Security SP1 is out now.&amp;nbsp; To download it go to the Microsoft Update Catalog &lt;A href="http://catalog.update.microsoft.com/v7/site/home.aspx" mce_href="http://catalog.update.microsoft.com/v7/site/home.aspx"&gt;http://catalog.update.microsoft.com/v7/site/home.aspx&lt;/A&gt;&amp;nbsp;and search for "Forefront Client Security SP1" this will allow you to download it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the KB &lt;A href="http://support.microsoft.com/default.aspx/kb/951951"&gt;http://support.microsoft.com/default.aspx/kb/951951&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Here are the release notes &lt;A href="http://technet.microsoft.com/en-us/library/cc901470.aspx"&gt;http://technet.microsoft.com/en-us/library/cc901470.aspx&lt;/A&gt;&lt;/P&gt;
&lt;SCRIPT type=text/javascript&gt;
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
&lt;/SCRIPT&gt;

&lt;SCRIPT type=text/javascript&gt;
var pageTracker = _gat._getTracker("UA-6340849-1");
pageTracker._trackPageview();
&lt;/SCRIPT&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3114091" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/kfalde/archive/tags/FCS/default.aspx">FCS</category><category domain="http://blogs.technet.com/kfalde/archive/tags/Forefront+Client+Security/default.aspx">Forefront Client Security</category></item></channel></rss>