<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://msmvps.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Richard's Management Blog</title><link>http://msmvps.com/blogs/threlkeld/default.aspx</link><description>Save the Drama for your Momma</description><dc:language>en</dc:language><generator>CommunityServer 2008 SP1 (Build: 30619.63)</generator><item><title>Moving my blog!</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/12/16/26104.aspx</link><pubDate>Fri, 17 Dec 2004 04:19:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:26104</guid><dc:creator>Richard</dc:creator><slash:comments>5</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=26104</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/12/16/26104.aspx#comments</comments><description>&lt;P&gt;&lt;A href="http://rtlife.blogspot.com/"&gt;http://rtlife.blogspot.com/&lt;/A&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=26104" width="1" height="1"&gt;</description></item><item><title>Linking systems to Advertisements for user notifications</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/11/22/20208.aspx</link><pubDate>Mon, 22 Nov 2004 18:58:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:20208</guid><dc:creator>Richard</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=20208</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/11/22/20208.aspx#comments</comments><description>&lt;FONT size=2&gt;
&lt;P&gt;The SMS 2003 web reports have some cool built in stuff around advertisements, one in particular is viewing advertisements for a specific system. A way that you can take advantage of this is to include a link in your customer communication so that they can view all active advertisements hitting their system. But how do you do this without giving them instructions for navigating throughout the web reports? Wouldn't a link be nice?&lt;/P&gt;
&lt;P&gt;The actual link is going to &lt;/FONT&gt;&lt;A href="http://reportingpoint/smsreporting_SITECODE/Report.asp?ReportID=131&amp;amp;ComputerName=COMPUTERNAME"&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;http://REPORTINGPOINT/smsreporting_SITECODE/Report.asp?ReportID=131&amp;amp;ComputerName=COMPUTERNAME&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt; (Note this is not a real link as everything in CAPS needs to be changed for your environment). The beginning of this link is easy enough to change as your SMS Reporting Point URL won't change that often, but now what you need is some custom scripting to grab the COMPUTERNAME dynamically when someone visits the webpage.&lt;/P&gt;
&lt;P&gt;To do this first you will need to enable ReverseDNS Lookups on your web server. You can do this by running the following command as documented in &lt;A href="http://support.microsoft.com/default.aspx?scid=kb;en-us;Q245574"&gt;KB245574&lt;/A&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT face="Times New Roman"&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;cscript adsutil.vbs set /w3svc/1/ROOT/EnableReverseDNS "TRUE"&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;
&lt;P&gt;Once this has been done, copy the text below into a file and call it adverts.asp:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;%&lt;/P&gt;
&lt;P&gt;Dim strUser&lt;/P&gt;
&lt;P&gt;strCompName = Request.ServerVariables("REMOTE_HOST")&lt;/P&gt;
&lt;P&gt;strPullDNS&amp;nbsp;= InStr(1,strCompName,".") -1&lt;/P&gt;
&lt;P&gt;strCompName = Left(strCompName, strPullDNS)&lt;/P&gt;
&lt;P&gt;Response.Redirect "&lt;/FONT&gt;&lt;A href="http://REPORTINGPOINT/smsreporting_SITECODE/Report.asp?ReportID=131&amp;amp;ComputerName="&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;http://REPORTINGPOINT/smsreporting_SITECODE/Report.asp?ReportID=131&amp;amp;ComputerName=&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;" &amp;amp; strCompName&lt;/P&gt;
&lt;P&gt;%&amp;gt;&lt;/P&gt;
&lt;P&gt;Edit this with notepad and change the REPORTINGPOINT and SITECODE values to accurately represent your site configuration.&amp;nbsp; Then go to the &amp;lt;DRIVELETTER&amp;gt;:\Inetpub\wwwroot\Smsreporting_SITECODE directory on your reporting point and place the adverts.asp file in it. After this you can simply run the following from a web browser to automatically detect the system name and display all active advertisements going to it:&lt;/P&gt;
&lt;P&gt;&lt;/FONT&gt;&lt;A href="http://reportingpoint/smsreporting_SITECODE/adverts.asp"&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;http://REPORTINGPOINT/smsreporting_SITECODE/adverts.asp&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;FONT size=2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;***Remember to back this up because whenever you run a site reset or upgrade (like SMS SP1) this could be overwritten or deleted!&lt;/P&gt;&lt;/FONT&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=20208" width="1" height="1"&gt;</description></item><item><title>Quick Tip:  Using -Any- for your Software Meetering rule</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/11/17/19536.aspx</link><pubDate>Wed, 17 Nov 2004 19:46:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:19536</guid><dc:creator>Richard</dc:creator><slash:comments>5</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=19536</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/11/17/19536.aspx#comments</comments><description>&lt;P&gt;Sorry things have been quiet here of late but I've been doing some traveling for work recently and there has been a lot going on away from the keyboard taking up my time as well but I hope to get back to giving more SMS-nugget related posts here. One thing that I've really been getting into recently is Software Metering and have found that most of my customer's mission critical applications don't have information such as the language or version in the file header which I'm looking for. Its way up in the list (above 'Afrikaans') but you can specify &lt;B&gt;-Any-&lt;/B&gt; as the language if you have a rule in place but aren't seeing the results you thought you might. Even if you are using a wildcard for the file version many times this adjustment is needed for the Language as well.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=19536" width="1" height="1"&gt;</description></item><item><title>AdminStudio SMS Edition?</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/10/15/15922.aspx</link><pubDate>Fri, 15 Oct 2004 20:31:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:15922</guid><dc:creator>Richard</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=15922</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/10/15/15922.aspx#comments</comments><description>&lt;P&gt;&lt;FONT face=Arial&gt;A &lt;/FONT&gt;&lt;A href="http://msmvps.com/threlkeld/archive/2004/06/30/9333.aspx"&gt;&lt;FONT face=Arial&gt;&lt;FONT color=#0000ff&gt;while back we had a lively debate&lt;/FONT&gt; &lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial&gt;on SMS Packaging tools. In that time Microsoft has worked with &lt;/FONT&gt;&lt;A href="http://www.installshield.com/"&gt;&lt;FONT face=Arial color=#0000ff&gt;InstallSheild&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial&gt; to offer &lt;/FONT&gt;&lt;A href="http://www.microsoft.com/smserver/downloads/2003/featurepacks/adminstudio/default.asp"&gt;&lt;FONT face=Arial color=#0000ff&gt;AdminStudio SMS Edition&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial&gt; because of the need mainly for people to edit MSI files and customize them for deployments. This tool by no means eliminates the need for &lt;/FONT&gt;&lt;A href="http://www.microsoft.com/smserver/downloads/20/tools/installer.asp"&gt;&lt;FONT face=Arial color=#0000ff&gt;SMS Installer&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial&gt; since you can't do any custom scripting, etc, without purchasing the full AdminStudio. The documentation is also pretty weak IMHO which I'm not sure if that falls on the shoulders of Microsoft or InstallSheild to offer more public guides for this. Either way I recommend everyone to download this and at least try it out so that you can compare it to whatever tools you currently use today and decide if it would be useful as a standard part of your organization's toolset. After doing that go ahead and vote in the poll we have below because this information will be viewed by Microsoft as feedback on AdminStudio SMS Edition and what direction they should take going forward.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial&gt;Poll: &lt;/FONT&gt;&lt;A title=http://myitforum.techtarget.com/forums/tm.asp?track=NL-390&amp;amp;ad=494296&amp;amp;m=81623 href="http://myitforum.techtarget.com/forums/tm.asp?track=NL-390&amp;amp;ad=494296&amp;amp;m=81623"&gt;&lt;FONT face=Arial color=#0000ff&gt;http://myitforum.techtarget.com/forums/tm.asp?track=NL-390&amp;amp;ad=494296&amp;amp;m=81623&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;A href="http://myitforum.techtarget.com/forums/tm.asp?track=NL-390&amp;amp;ad=494296&amp;amp;m=81623&amp;amp;cookieCheck=963236425"&gt;&lt;/A&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=15922" width="1" height="1"&gt;</description></item><item><title>What SMS shops need to know about October's bulletins and the MS04-028 Scan Tool</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/10/12/15632.aspx</link><pubDate>Tue, 12 Oct 2004 18:24:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:15632</guid><dc:creator>Richard</dc:creator><slash:comments>6</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=15632</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/10/12/15632.aspx#comments</comments><description>&lt;P&gt;Along with this month's &lt;A href="http://www.microsoft.com/technet/security/Bulletin/ms04-oct.mspx "&gt;Security Updates&lt;/A&gt;, Microsoft has also released utilities for SMS and non-SMS environments to Scan and Patch their systems for MS04-028. You can find them here:&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;&lt;B&gt;
&lt;P&gt;&lt;FONT size=2&gt;KB 885920 -&lt;/FONT&gt;&lt;/B&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT face="Times New Roman"&gt;How to obtain and use the MS04-028 Enterprise Update Scanning Tool in environments that use Systems Management Server&lt;/P&gt;
&lt;DIR&gt;
&lt;DIR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;
&lt;P&gt;&lt;/FONT&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=KB;EN-US;885920"&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;http://support.microsoft.com/default.aspx?scid=KB;EN-US;885920&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt; - Will be available by noon PDT Tuesday&lt;/FONT&gt;&lt;FONT face="Times New Roman"&gt; &lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;
&lt;P&gt;Public download location (Available by noon PDT)&lt;/FONT&gt;&lt;FONT face="Times New Roman"&gt; &lt;/P&gt;
&lt;DIR&gt;
&lt;DIR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;
&lt;P&gt;&lt;/FONT&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C4745685-9521-4B63-A338-0B3E2DCBF2BB&amp;amp;displaylang=en"&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=C4745685-9521-4B63-A338-0B3E2DCBF2BB&amp;amp;displaylang=en&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#000080 size=2&gt; &lt;/P&gt;&lt;/DIR&gt;&lt;/DIR&gt;&lt;/DIR&gt;&lt;/DIR&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT size=2&gt;
&lt;P&gt;KB 886988 &lt;/FONT&gt;&lt;FONT face=Tahoma size=2&gt;&amp;#8211;&lt;/B&gt;&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT face="Times New Roman"&gt;How to obtain and use the MS04-028 Enterprise Update Scanning Tool in environments that do not use Systems Management Server&lt;/P&gt;
&lt;DIR&gt;
&lt;DIR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;
&lt;P&gt;&lt;/FONT&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=KB;EN-US;886988"&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;http://support.microsoft.com/default.aspx?scid=KB;EN-US;886988&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt; - Will be available by noon PDT Tuesday&lt;/FONT&gt;&lt;FONT face="Times New Roman"&gt; &lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;
&lt;P&gt;Public download location (Available by noon PDT)&lt;/FONT&gt;&lt;FONT face="Times New Roman"&gt; &lt;/P&gt;
&lt;DIR&gt;
&lt;DIR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;
&lt;P&gt;&lt;/FONT&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=70E1C04D-47E2-4EA6-A638-11AB6AD9BD6E&amp;amp;displaylang=en"&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=70E1C04D-47E2-4EA6-A638-11AB6AD9BD6E&amp;amp;displaylang=en&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color=#000080 size=2&gt; &lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIR&gt;&lt;/DIR&gt;&lt;/DIR&gt;&lt;/DIR&gt;
&lt;P&gt;&lt;FONT size=3&gt;There are a few things to know about this as well as this month's security bulletins.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;1. This MS04-028 Scan Tool works for &lt;STRONG&gt;&lt;U&gt;BOTH&lt;/U&gt;&lt;/STRONG&gt; SMS 2.0 and SMS 2003&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;2. You &lt;U&gt;&lt;STRONG&gt;DO NOT&lt;/STRONG&gt;&lt;/U&gt; need to upgrade to the SMS 2003 SP1 Scan Tools to install this update.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3&gt;3. &lt;A href="http://www.microsoft.com/technet/security/bulletin/ms04-038.mspx"&gt;MS04-038&lt;/A&gt; has a caveat on IE 6.0 SP1 where the MBSA cannot detect it but &lt;U&gt;&lt;STRONG&gt;&lt;FONT color=#ff0000&gt;READ THE BULLETIN!!!!&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/U&gt; The SMS Team created pointers in the&amp;nbsp;Security Bulletin Catalog (MSSECURE.XML) for this update to run a SMS&amp;nbsp;specific hotfix which supports the standard IE switches (/q:a /r:n).&amp;nbsp; This enables you to deploy this update in the same DSUW created SMS package as the other updates this month. As per the bulletin:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT face="Times New Roman"&gt;
&lt;P&gt;Can I use Systems Management Server (SMS) to determine if this update is required?&lt;/B&gt;&lt;BR&gt;SMS can successfully deploy this update for all versions of Internet Explorer, except for Internet Explorer 6 SP1. As noted in the Affected Components section of this bulletin, this release includes two packages for Internet Explorer 6 SP1. One package is designed for Windows 2000, Windows XP, and Windows XPSP1. This package uses the Update.exe installation technology discussed above. The second package is designed for Windows NT, Windows 98, and Windows Me. MBSA is not able to determine which Internet Explorer 6 SP1 update is required for a specific Operating System. A package intended for SMS Deployment only has been created that contains both versions of the Internet Explorer 6 SP1 updates. When deployed with SMS, this package will detect the operating system and install the correct version of the update for that operating system. MBSA when used with SMS, will instruct SMS administrators to deploy this SMS Deployment package. For more information on this update, please see &lt;/FONT&gt;&lt;A href="http://support.microsoft.com/?id=887437"&gt;&lt;U&gt;&lt;FONT face="Times New Roman" color=#0000ff&gt;Microsoft Knowledge Base Article 887437.&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This means that all bulletins this month are SMS deployable because of the extra work ahead of time that the SMS Team put in to make this so. Great job!&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=15632" width="1" height="1"&gt;</description></item><item><title>Integrating your users with SMS</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/09/29/14584.aspx</link><pubDate>Wed, 29 Sep 2004 19:48:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:14584</guid><dc:creator>Richard</dc:creator><slash:comments>8</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=14584</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/09/29/14584.aspx#comments</comments><description>&lt;P&gt;&lt;FONT face=Arial size=2&gt;One aspect in deploying SMS&amp;nbsp;can be to let your user base interact with the SMS environment. Many organizations don't take advantage of a lot of the new features in SMS since older versions of the product had caveats of being site-wide settings or not working properly. Good examples of this are the Software Updates functionality of letting the user define their own schedules or using the individual program settings pop up a taskbar notification to open up Add / Remove Programs. An easy way to lower support costs in your organization is by minimizing the need for Desktop Technicians to visit desktop systems by creating standing Advertisements for applications that might be available company-wide and putting start menu links to access the SMS control panel applets easier. &lt;A href="http://myitforum.techtarget.com/articles/1/view.asp?id=4579"&gt;In SMS 2.0 you could do it easily &lt;/A&gt;however this process has changed a bit in SMS 2003 since you have more options. One way to do this would be to use the Rundll32.exe application as in SMS 2.0 and just use the new Run Advertised Programs applet like so:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;EM&gt;RunDLL32.EXE shell32.dll,Control_RunDLL %WINDIR%\system32\ccm\smsrap.cpl&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;I don't like this UI though, something about it just rubs me wrong. So lets see if we can do something more nice, nice:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;EM&gt;control %WINDIR%\system32\appwiz.cpl,Add/Remove Programs,1&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;Much better. Now you can create a Start Menu link for your users and build process around this. Its all about education at that point. New users can be instructed to go there for reinstalling software and email communications when you want to give users the ability to run Advertisements early can include instructions pointing to these links.&lt;/FONT&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=14584" width="1" height="1"&gt;</description></item><item><title>Good numbers</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/09/16/13602.aspx</link><pubDate>Thu, 16 Sep 2004 17:02:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:13602</guid><dc:creator>Richard</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=13602</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/09/16/13602.aspx#comments</comments><description>&lt;P&gt;&lt;FONT face=Arial size=2&gt;For those that missed it, &lt;/FONT&gt;&lt;A href="http://www.microsoft.com/smserver/downloads/2003/sp1.asp"&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;SMS 2003&amp;nbsp;SP1&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial size=2&gt; has been released and its getting some pretty good &lt;/FONT&gt;&lt;A href="http://myitforum.techtarget.com/articles/8/view.asp?id=7799"&gt;&lt;FONT face=Arial size=2&gt;&lt;FONT color=#0000ff&gt;reviews&lt;/FONT&gt; &lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial size=2&gt;so far.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;I decided to do a bit of comparison since this is a bit of a landmark for SMS2K3.&amp;nbsp; The real famous Service Pack for SMS 2.0 was SP2 because of all the problems it caused (cough, cough, I mean fixed).&amp;nbsp; :)&lt;/FONT&gt;&lt;/P&gt;
&lt;DIV dir=ltr align=left&gt;&lt;SPAN class=794302302-16092004&gt;&lt;FONT face=Arial color=#000000 size=2&gt;2.0 SP2 (&lt;/FONT&gt;&lt;A title=http://support.microsoft.com/default.aspx?scid=kb;en-us;258682 href="http://support.microsoft.com/default.aspx?scid=kb;en-us;258682"&gt;&lt;FONT face=Arial color=#000000 size=2&gt;ht&lt;FONT color=#0000ff&gt;tp://support.microsoft.com/default.aspx?scid=kb;en-us;258682&lt;/FONT&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial color=#000000 size=2&gt;) - 136 bugs&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV dir=ltr align=left&gt;&lt;SPAN class=794302302-16092004&gt;&lt;FONT face=Arial color=#000000 size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV dir=ltr align=left&gt;&lt;SPAN class=794302302-16092004&gt;&lt;FONT face=Arial color=#000000 size=2&gt;2K3 SP1(&lt;/FONT&gt;&lt;A title=http://support.microsoft.com/default.aspx?scid=kb;EN-US;885644 href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;885644"&gt;&lt;FONT face=Arial color=#0000ff size=2&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;885644&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial color=#000000 size=2&gt;) - 27 bugs&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV dir=ltr align=left&gt;&lt;SPAN class=794302302-16092004&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV dir=ltr align=left&gt;&lt;SPAN class=794302302-16092004&gt;&lt;FONT face=Arial size=2&gt;Pretty good numbers if you ask me!&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=13602" width="1" height="1"&gt;</description></item><item><title>What Documentation?</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/07/23/10506.aspx</link><pubDate>Fri, 23 Jul 2004 05:40:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:10506</guid><dc:creator>Richard</dc:creator><slash:comments>16</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=10506</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/07/23/10506.aspx#comments</comments><description>&lt;FONT size=2&gt;
&lt;P&gt;I&amp;#8217;m crazy about documentation. More than that, I&amp;#8217;d call my self a "Documentation Guy". Not only do I go through extra steps to document all technical and process decisions for the systems I control but I also hound the people on my team for documentation that in a round-a-bout way impacts my space. Why am I like this? A couple of reasons, some are selfish and others are not. Let me explain.&lt;/P&gt;
&lt;P&gt;Good documentation is a crucial piece of a solid IT organization. I didn&amp;#8217;t always believe this and would be the guy saying "Who&amp;#8217;s going to read that?" Problem is I would move onto another project and bam, something would happen and screw up a configuration I made in the past. No one knew what I did and usually there wouldn&amp;#8217;t be time to figure things out because of these critical business applications needing to be online. This brings me to my first point:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Point #1 &amp;#8211; Good documentation allows those that will be maintaining your systems later on to know what you did to set them up&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;This is probably the biggest impact that good documentation can have on you. Wouldn&amp;#8217;t it be terrible if you are now part of the Domain Administrators group and while on vacation you get called because SMS is down and no one knows how you set something up? Of course documentation, and more specifically detailed documentation, also gives back to the company and others knowledge that you have acquired through training and experience on the job. For any organization to progress and move forward they need to minimize the learning curve that new team members have. If processes, procedures, and technology implementations have to all be relearned whenever a new person joins a group then they will have to work just as long or longer to get to the point you are at. Which means that:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Point #2 &amp;#8211; Good documentation helps an organization progress long after you have left&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;This point is largely about the long term benefit you are giving to the company however it also has a certain level of satisfaction to it. Personally I want to know that the work I did for a company was not all for nothing and lost after I left. The best thing that I can do for my legacy to be carried out is to document the thoughts and ideas that went into building infrastructures along with the technology because this ensures not only that things are done right but that the people doing them know why they are.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Point #3 - A sysadmins memory is usually lousy&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;We all need to reference not only what we did but also what others did later on in life when making changes or implementing either a new technology and/or process. How can we do this without documentation? Anymore its becoming a rarity when all you do is one job. Because of this everyone forgets something they did in the past especially when it comes to technical configurations. Document it well and you'll save yourself headaches in the future.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Point #4 - You have to know what you are talking about to make good documentation&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;I've met a lot of really smart people over the years and hands down the one quality that the people I'd refer to as "guru's" have in common is good documentation skills. They have to know what they are talking about in order to put technical thoughts down on paper. Documenting things almost always leads to a deeper understanding of a product or technology. Take your SMS infrastructure for example: If you are documenting how your site will have NLB configured as your Management Points you'll start asking questions about how the process flow works and answer them before anyone else does. How does NLB disperse traffic between the Virtual IP and the different hosts participating? How do clients know how to go to that Virtual IP in the first place? What happens when one of the hosts goes down? Once you start asking these questions and doing the research to answer them you will be able to speak with authority on a multitude of subjects.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Point #5 - Complex systems need to often be set up in a repeatable manner&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;When your dealing with something as complex as Domain Administration or a Systems Management product many times you will be asked by management to roll out a new environment in a very short timetable. The thought here is you've set this up once already so its cake to bang out a new environment right? When doing something like this there are often dozens if not hundreds of steps involved and the fastest way to accomplish them is to follow appropriate steps in the correct order. Good documentation here will save you trial and error time by not rooting around for product or system requirements as well as other dependencies you accounted for in the past but don&amp;#8217;t have the time or resources now to research. A perfect example of this are server builds. Even if you have an imaging process in place there are often post setup tasks that must be done to ensure that systems are configured on the network properly. How about all the IIS configuration for SMS 2003? Instead of figuring out later on why you are having some DP issues with BITS, follow your documentation on how to set this up correctly in the beginning and save yourself the headaches down the road!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How should people get started with documentation? I actually don't think its always the best to start documenting policies and high-level architecture if you don't have much experience with documentation in the first place because chances are the results will be weak. Do you help out your desktop guys a lot with troubleshooting a specific application or network problem? Try documenting what your process is to resolve it. Go DEEP into detail! Call out explicitly in your documentation who your intended audience is and give an overview of what your documentation is trying to accomplish. Always include the ability to update it later with versioning, author(s), and track changes clearly listed for others to reference in the future (please, no jokes about documentation inside of documentation). List out your steps and remember that the people following them will most likely be technicians and not Engineers or Sysads. Fear not screenshots - they are your friends! Don't skimp out on the good stuff either such as Conclusions and where to go for help if the documentation doesn't prove effective for everyone. And if possible always include references or links to more information to those interested.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=10506" width="1" height="1"&gt;</description></item><item><title>Process vs. People</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/07/07/9767.aspx</link><pubDate>Thu, 08 Jul 2004 04:37:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:9767</guid><dc:creator>Richard</dc:creator><slash:comments>7</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=9767</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/07/07/9767.aspx#comments</comments><description>&lt;P&gt;I heard an interesting phrase today when talking to some consultants about SMS infrastructures they had worked on.&amp;nbsp; &amp;#8220;In company A they didn't really have that large of a staff so we focused more on making sure the SMS infrastructure was rock solide, whereas in company B they had so many Administrators worldwide that process had to be a heavy focus more than company A just because you need to make sure that everyone is following propper procedures&amp;#8221;.&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;This statement really holds true for a couple of reasons.&amp;nbsp; Start with the smaller company.&amp;nbsp; Usually its hard getting resources dedicated to SMS and when you do they are usually splitting time between other responsibilities.&amp;nbsp; It would be natural then that these Administrators don't have time to become not only product experts for SMS but for other things impacting SMS as well such as AD maintenance, server monitoring, etc.&amp;nbsp; When an outsider is looking for areas to improve this organization then its more technical because that is an area that would be lacking and less people are doing the technical work so you don't need to waste all that time on process when so few will be using it.&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;That being said, process is critical as an organization grows larger.&amp;nbsp; More importantly though process needs to mature and improve as teams grow larger to ensure that all Administrators are doing thing in a consistent and correct manner.&amp;nbsp; Take reporting for example:&amp;nbsp; Corporate headquarters institutes custom registry logging in their SMS Packages which is also rolled up into inventory.&amp;nbsp; They can then see all sorts of data - lets use image version here as well.&amp;nbsp; Well the CEO can now see all imaged systems out there and also all non-images on the network and you also correlate this into a report showing that the unlicensed software on your network is coming from the non-imaged systems.&amp;nbsp; This helps you true-up licensing and everyone is happy.&amp;nbsp; But what happens when upper management finds out that this is only for headquarters and a couple other locations?&amp;nbsp; This is where process is key, so that you could have this consistent reporting across all your sites globally and not be out of compliance.&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;I could go on for hours about being bitten in the past because process wasn't developed for something I just took care of on a case-by-case basis on different servers (ahh, sms_def.mof I know you well).&amp;nbsp; The point is if you are an Administrator faced with the challenge of planning for a growing organization its best to develop and document sound processes and procedures ahead of time.&amp;nbsp; This will make things much easier on you down the road and let you focus on more important things, like surfing with &lt;A href="http://radio.weblogs.com/0001011/2004/07/04.html#a7931"&gt;Scoble&lt;/A&gt; :)&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=9767" width="1" height="1"&gt;</description></item><item><title>What is up with KB870669 and SMS?</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/07/07/9676.aspx</link><pubDate>Wed, 07 Jul 2004 05:41:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:9676</guid><dc:creator>Richard</dc:creator><slash:comments>5</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=9676</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/07/07/9676.aspx#comments</comments><description>&lt;FONT size=2&gt;&lt;FONT size=2&gt;
&lt;P&gt;&lt;FONT face=Arial&gt;So by now you know about the stop-gap effort by Microsoft to &lt;/FONT&gt;&lt;/FONT&gt;&lt;A href="http://support.microsoft.com/?kbid=870669"&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT face=Arial&gt;disable ADODB.Stream &lt;/FONT&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Arial size=2&gt;while they are making a patch to actually fix the update (yes, a patch is on the way and this isn't private information as the press release is &lt;/FONT&gt;&lt;A href="http://www.microsoft.com/presspass/press/2004/jul04/07-02configchange.asp"&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT face=Arial&gt;here&lt;/FONT&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;FONT face=Arial&gt;). What I want to know is what team made this Hotfix installer?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial&gt;There has been so much effort over the past year by all teams within Microsoft to have standards with Hotfixes and this one follows none. The registry logging isn't even in traditional places to track if the Hotfix has been applied which is really lousy for SMS Administrators because now you have to do some manual modifications to your SMS_DEF.MOF if you want to track the deployment of this in your enterprise. Nope, you wont get this detected by the Software Updates features of 2.0 or 2K3 either as this is considered a "Critical" update and not a "Security" update so the MBSA won't pick it up.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial&gt;Ok, I'll buy all that. I'm sure internal policy and process dictates what can or can't be done. But why isn't anything mentioned in the KB article about this for SMS Administrators? Shouldn't there be something in the KB even to at least link to &lt;/FONT&gt;&lt;/FONT&gt;&lt;A href="http://www.microsoft.com/technet/prodtechnol/sms/sms2003/patchupdate.mspx"&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT face=Arial&gt;http://www.microsoft.com/technet/prodtechnol/sms/sms2003/patchupdate.mspx&lt;/FONT&gt;&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt;&lt;FONT face=Arial&gt; for Administrators who don't know this information to follow?&lt;/FONT&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=9676" width="1" height="1"&gt;</description></item><item><title>Does Microsoft think SMS Software Packaging is dead?</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/06/30/9333.aspx</link><pubDate>Thu, 01 Jul 2004 04:58:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:9333</guid><dc:creator>Richard</dc:creator><slash:comments>23</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=9333</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/06/30/9333.aspx#comments</comments><description>&lt;FONT size=2&gt;
&lt;P&gt;A few weeks ago I was doing Q&amp;amp;A at the SMS booth with some Microsoft employees at TechEd and a woman approached us about the best way to roll out a particular piece of software. If I remember correctly, she currently uses InstallSheild to call the vendor's silent installation routine but her question was in regards to the package reporting fields within the SMS Administrator's console. After she walked away the comment was made to me "People still package software before rolling it out, huh?".&lt;/P&gt;
&lt;P&gt;WOW. I was blown away that there are people inside the SMS Product group don't really think that packaging isn't a major piece of a solid SMS Infrastructure. I'd actually go out on a limb and say it's one of the most critical pieces of a good SMS implementation. This made me do a little research into some of the documentation that&amp;#8217;s out there for SMS2K3 to find some information on software packaging. Low and behold there really isn't much out there. In fact this is pretty much all there is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;B&gt;
&lt;P&gt;SMS Installer&lt;/P&gt;&lt;/B&gt;
&lt;P&gt;&lt;EM&gt;You can use SMS Installer to create an executable file that you can add to a package and advertise to clients. SMS Installer creates a self-extracting file or Windows Installer file that includes the data and files for the software application and the installation script that you created using SMS Installer. By using the SMS Installer Script Editor, you can modify the installation script that SMS Installer creates.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;SMS Installer does not create the package, distribution points, or advertisements within SMS, so you must use another method to perform these tasks. SMS Installer creates a package definition file that can be imported into SMS with either the Distribute Software Wizard or the Create Package from Definition Wizard. For more information about SMS Installer, see Chapter 7, "Creating Software Installation Packages with SMS Installer."&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Really when I think back at all the Microsoft demo's and conference sessions you almost always see them call an ISV's silent installation directly in the program command line or an MSI. Now I know that there are many people within the SMS Product group that don't think app's should be deployed like this. In fact I was even talking with one of them (names not divulged to protect the innocent!) when I was in Redmond and he went on for about 20 minutes at lunch telling me about one customer that started taking people with high levels of software development in their backgrounds and made them packagers for SMS. When this started happening the quality of packages and success rates of deployments went up by a dramatic level. Why is this? IMHO for a couple of reasons:&lt;/P&gt;
&lt;P&gt;1. Developers are usually more detail orientated. They make sure that a package is fully tested across all platforms and all bugs are worked out before deployment in the same manner that they would test a new product that they developed before selling it to a customer.&lt;/P&gt;
&lt;P&gt;2. Developers account for unknown variables in the environment. Just sending out a package isn't enough as you need to think about what might cause your installation to fail as well as fallback on experience of things you know have impacted your installations in the past.&lt;/P&gt;
&lt;P&gt;There are also other factors which tell me not everyone believes software packaging is dead. Take a look at the SMS2K3 SDK. If the SMS Product group didn't think that packaging was still important why would they create functions like InstallStatusMIF?&lt;/P&gt;
&lt;P&gt;And what about the line of business applications that don't support silent installation parameters? Smaller organizations with budget constraints are stuck with using SMS Installer for repackaging which, lets face it, is getting to be an antiquated tool that hasn't been updated in quite some time. They don't have the resources to put towards an enterprise packaging toolset like Wise or InstallSheild in order to do quality deployments.&lt;/P&gt;&lt;B&gt;
&lt;P&gt;Time for an update!&lt;/P&gt;&lt;/B&gt;
&lt;P&gt;So what needs to change? I think its Microsoft's perception of the SMS Administrator to be perfectly honest, as it is the SMS Admin's toolsets have needed to grow for SMS 2003. The days of the 2.0 Admin are gone with just needing SMS and some domain knowledge. SMS 2003 ties in more closely with AD for one so knowledge of LDAP communication with the directory, etc is needed (and don't even get me started on the amount of time people spend troubleshooting MP communication issues because of SPN registration issues or Computer access/authentication problems) as well as IIS configuration and so forth. Its really funny when I see a vendor at a trade show talking about how their management technology can solve all of your problems because they have all these built in reports, etc, so you won't need to waste time on that stuff. No way any ISV can do that. The purpose of reporting is so it can be customized for your organization so the knowledge to do that stuff has to be in-house, especially with really large organizations. The same thing goes for Software Packaging. Really good packaging teams have reporting built into their installers to make troubleshooting easy and reporting integrated into your SMS site. Some common things done to improve software packages are:&lt;/P&gt;
&lt;P&gt;- Standard package logging location with easy to follow flow and error messages&lt;/P&gt;
&lt;P&gt;- Registry reporting for inventorying&lt;/P&gt;
&lt;P&gt;- Custom SMS Status Messages&lt;/P&gt;
&lt;P&gt;- Package Versioning for tracking of bugs&lt;/P&gt;
&lt;P&gt;- Anti-Virus Software stopped before installation and restarted after (a common recommendation from ISV's)&lt;/P&gt;
&lt;P&gt;- Checking for backups (in the case of major updates like Service Packs)&lt;/P&gt;
&lt;P&gt;Most importantly however is the ability to include checks in your scripts for problems. An example would be a problem I ran into with SP4 for Win2K. We had this application called Win Driver which placed a library, Windrvr.sys I believe, in the %sys32%\Drivers directory. Turns out that on every system if it wasn't at the latest version the system would blue screen. Now, if you have 200+ machines that this application is on that could be an issue. So what does a good software packager do here? He (or she) can check to make sure that the file version of Windrvr.sys is recent enough and if its not either abort the installation (and use the good packaging practices above to log this efficiently and report back to SMS) or automatically update the file if its not in use and continue with the SP4 installation.&lt;/P&gt;
&lt;P&gt;That&amp;#8217;s just one of many examples that can be done through good packaging which is really one of the most lucrative pieces of SMS where effective enterprise management can be seen. Its just a shame that Microsoft won't be providing the tools to do this in the foreseeable future so we are stuck with limited functionality or the purchase of high-end (read: expensive) tools to get the job done. Additionally these 3rd party tools have no impact into the future versions of SMS and integration into the management structure. Yeah, many are gold level partners but lets not kid ourselves here - Microsoft has the biggest impact on Microsoft so if you want to see some cool integration with a software packaging tool they most likely need to be doing it. Why not SMS Installer 3.0 with some new actions like:&lt;/P&gt;
&lt;P&gt;- Add new Advanced Client Policy&lt;/P&gt;
&lt;P&gt;- Compile data class to WMI (yes! No need to copy your custom sms_def.mof to the client and compile)&lt;/P&gt;
&lt;P&gt;- Initiate HINV/SINV&lt;/P&gt;
&lt;P&gt;- Initiate Machine Policy Retrieval Cycle&lt;/P&gt;
&lt;P&gt;- Update Get System Information to get the SMS Site, Default MP, AD site, etc&lt;/P&gt;
&lt;P&gt;When I think about what a major complaint from many Microsoft customers is about SMS, I consistently hear that Software Distributions can be difficult. Now to be fair they aren't claiming there are other products that are hands down easier, just that its problematic with SMS. If the scripting interface were more robust and easier to configure anyone would be able to create awesome packages that could be deployed with great success.&lt;/FONT&gt;&lt;FONT face=Arial size=2&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT face=Arial color=#008080 size=4&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/B&gt;&lt;/FONT&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=9333" width="1" height="1"&gt;</description></item><item><title>New SMS SUSFP Guide</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/06/14/8174.aspx</link><pubDate>Mon, 14 Jun 2004 18:30:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:8174</guid><dc:creator>Richard</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=8174</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/06/14/8174.aspx#comments</comments><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;Some may know already, but I put together a guide consisting of a compilation of the SUSFP knowledge from the community.&amp;nbsp; You can get it &lt;A href="http://myitforum.techtarget.com/articles/1/view.asp?id=7428"&gt;here&lt;/A&gt;.&amp;nbsp; What an awesome experience I&amp;#8217;ve had making this guide!&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Essentially this is the culmination of about 2-3 years using SMS for patch management with and without the SUSFP.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I&amp;#8217;ve had the good fortune of getting known as the &amp;#8220;SMS Patch Management Guy&amp;#8221; in the SMS Community which has not only pushed my SMS skills to their limit at times but also given me the opportunity to work with A LOT of different people across a multitude of environments.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Thinking back on this now, I guess I kind of fell into the role by being the first one to backwards engineer a lot of what the Microsoft folks did for the sheer fact that the geek inside me needs to always tear apart stuff and know what&amp;#8217;s under the hood.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I also have been very lucky in meeting the right people behind the scenes who give me answers to questions to made me look like a smart guy and who I will never be able to thank enough, as well as the other SMS Jedi that hang around the community and have helped me along the way.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;The best part about this has been all the good friends I&amp;#8217;ve made by helping them come to grips with the SUSFP and develop comprehensive PM strategies for their organizations.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;I can&amp;#8217;t even count the number of people that I&amp;#8217;ve talked to on different lists, forums, newsgroups, conferences, offline emails, and even phone conversations in the past year about the SUSFP.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;This guide is really that &amp;#8211; a summary of everything I&amp;#8217;ve learned and experienced with this toolset over the past couple of years for any people that I haven&amp;#8217;t reached yet and to get them up to speed quick.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;Mostly I&amp;#8217;d like to thank the myITforum.com community and those dedicated to supporting the SMS community as a whole because without you this wouldn&amp;#8217;t exist!&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;Take this guide to be exactly that &amp;#8211; a guide.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;As with any documentation it may not contain all the answers you are looking for in your environment or be 100% accurate but hopefully will point you in the right direction.&amp;nbsp; I hope to do one in the future for SMS 2003 as well, but many of the tools and process in this guide can be used for 2003 for the time being.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=8174" width="1" height="1"&gt;</description></item><item><title>I'm Back with TechEd Notes!</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/06/01/7455.aspx</link><pubDate>Tue, 01 Jun 2004 23:57:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:7455</guid><dc:creator>Richard</dc:creator><slash:comments>5</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=7455</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/06/01/7455.aspx#comments</comments><description>&lt;font size="2"&gt;
&lt;p&gt;Back from vacation now - sorry its been quiet here for a couple weeks. I actually split my time between relatives visiting in town and helping out the SMS Product group by manning the SMS booth at TechEd last week (oh yeah and a 1 night trip to Vegas). What an interesting experience at TechEd! My name tag actually listed that I worked for Microsoft along with having to wear one of the traditional geeky blue shirts so everyone thought I worked for Microsoft :) Its really interesting seeing how fast people do a flip-flop when talking to you and they find out you aren't a Microsoft employee - for whatever reason its like you get more credibility because they don't think you are another member of the Borg. I also had people coming up to me left and right just to vent about a failed SMS 2.0 implementation or go on about some struggles they were having with their SMS2K3 deployment. Many complaints were just about political issues within their organizations and not technical at all. I think it just says that people like to talk to others about their problems and get things off their chests. What I got a kick out of the most were people that came up to me saying "you're probably just a salesperson that doesn't know a deep technical answer to my question, but let me ask it anyway" and then I'd actually give them a deep technical answer back and watch their eyes glaze over. It was a lot of fun though hearing some real-life issues that people had and working to give them ideas for resolution. The face-to-face stuff like that is a lot of fun because you get past the awkwardness that sometimes happens in email or public forums.&lt;/p&gt;
&lt;p&gt;Overall I'd have to say that SMS2K3 has a really good name right now - much better than 2.0 ever did. I even had one guy give me a success story about his 20K client infrastructure upgrade from 2.0 to 2K3 in one weekend without any issue. A lot of organizations are also making the move from a competing management product such as Tivoli, Altiris, etc. Even more interesting was hearing that some people were rolling out SMS2K3 just for the servers they manage and letting the desktop team use another product for workstations. Now that’s a change in mentality!&lt;/p&gt;
&lt;p&gt;MOM was generating an insane amount of buzz at TechEd as well. There were times when 10-20 people were waiting in line at the product booth to get a question answered from the MOM team (actually questions and interest in the product, not just to get Zoo tickets). This is another example of how seriously Management technologies are being taken today in companies of all sizes. Administrators seem to be realizing how these products tie into the general direction of IT today: Lifecycle Management, Security and Patch Management, etc. So what does this mean? A lot if you have expertise in the area. I foresee a big need for knowledgeable professionals in the field of Management going forward. Not only will you see a need to debunk a lot of bad information that will be out there by overnight experts but more theory, process, and techniques will need to be developed in order to adapt to all those companies out there that will be embracing SMS, MOM, and the like going forward. For me its looking like an exciting time going forward.&lt;/p&gt;
&lt;p&gt;Fasten your seatbelts folks - hopefully the ride isn't too bumpy!&lt;/p&gt;&lt;/font&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=7455" width="1" height="1"&gt;</description></item><item><title>Uggghhhh!!!!!  My Sync Tool isn't working either!!!!</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/05/13/6412.aspx</link><pubDate>Fri, 14 May 2004 02:59:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:6412</guid><dc:creator>Richard</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=6412</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/05/13/6412.aspx#comments</comments><description>&lt;p&gt;Man oh man doesn't it just suck when you work so hard on automating your Patch Management infrastructure and its someone else's software configuration screwing up that is causing you headaches. Again this month reports of peoples Security Update Bulletin Catalog (MSSECURE.CAB) aren't downloading the latest copy. This is due to ISP's caching the old one. Unfortunately the only way to fix is to call up your ISP, tell them to clear the cache, and tell them (try and be nice) to stop caching going forward.&lt;/p&gt;
&lt;p&gt;Now....I know there are a lot of smart fellers up there in Redmond. A lot of them are buddies of mine. Perhaps there is something we can do in the future in the Sync Tool code to work around this issue (wink, wink, nudge, nudge). ;-)&lt;/p&gt;
&lt;p&gt;Anyone in the community got an idea? I'd love to hear them? How about renaming the cab to reflect the month? Send them to me or post them!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=6412" width="1" height="1"&gt;</description></item><item><title>Hooray!  An SMS guy blogging!</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/05/10/6210.aspx</link><pubDate>Tue, 11 May 2004 01:03:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:6210</guid><dc:creator>Richard</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=6210</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/05/10/6210.aspx#comments</comments><description>&lt;a href="http://weblogs.asp.net/smsperfguy/"&gt;Craig &lt;/a&gt;from the SMS Product Group started a new blog.  Great to see a member of the SMS team blogging.  Maybe we can convince some more to come out of hiding &amp;lt;g&amp;gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=6210" width="1" height="1"&gt;</description></item><item><title>Reaction Times</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/05/10/6209.aspx</link><pubDate>Tue, 11 May 2004 01:00:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:6209</guid><dc:creator>Richard</dc:creator><slash:comments>17</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=6209</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/05/10/6209.aspx#comments</comments><description>&lt;p&gt;Thinking about feature sets in products, its really evident that there will always be give and take on both ends. How much is to much though? Back in the day SMS Administrators used to have a pretty rough time creating big packages for patch management. There was detection of the OS, seeing which updates were needed, installing the proper ones, verifying that they were installed, etc, etc, etc. What a pain that was. I find myself asking though - are we better off having simplicity given by Microsoft into the product if the accuracy is lower than using our in-house developed tools?&lt;/p&gt;
&lt;p&gt;Don't get me wrong I LOVE the new Software Updates features of SMS 2.0 and especially the UI interaction in SMS2K3. But I can also throw down with the best of them when it comes to packaging and scripting. And my Hotfix packages &lt;u&gt;never&lt;/u&gt; used to have the detection problems like we see today with the MBSA. So basically what this means is you have a bunch of very technical scripters and packagers that used to code and are now given a solution set from Microsoft because of product feedback but now when there is an issue with detection, etc, they have to sit in front of management and explain that although their jobs are easier to do now they have more hassles to deal with.&lt;/p&gt;
&lt;p&gt;Not only that, but add to the fact that its not always that there is an MBSA detection issue but many times it flat out can't detect it and you are no better off than you were before. How long has the SUSFP for 2.0 been out now? Over 1 1/2 years? Personally I'm a person that does something all or nothing and expect the same from members of my team. Its very frustrating when I'm paying money for a product and it only does 85% of what it claims to do.&lt;/p&gt;
&lt;p&gt;And I'm not just slamming MS or the MBSA here. Shavlik and other vendors have the same trouble (case in point, no one detects OE or IM updates which is a joke since OE is part of the Operating System really). Yes I realize that file checksums and registry checks must work together to make sure everything was installed fine, but what would rock would be a system that you could bypass one or the other and use the intrinsic SMS functions to detect needed updates. Like instead of SMS_DEF.MOF editing if the Software Updates Scan Tool had an INI file that could have lines added for registry checks that would roll up into SMS.&lt;/p&gt;
&lt;p&gt;I just hate having something that only works 85% of the time when I could do it myself (yes with a bit more work) and be more accurate.  Microsoft and other ISVs know about these issues plauging the field.  Its about time to react and fix them instead of contstantly hearing about roadmaps.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=6209" width="1" height="1"&gt;</description></item><item><title>Bogus TCO</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/05/05/5965.aspx</link><pubDate>Thu, 06 May 2004 01:29:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:5965</guid><dc:creator>Richard</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=5965</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/05/05/5965.aspx#comments</comments><description>A lot of discussion goes into &lt;a href="http://search390.techtarget.com/sDefinition/0,,sid10_gci342316,00.html"&gt;TCO&lt;/a&gt; for organizations.  Choosing this Management product over this other one because it does X,Y, and Z while the other only does X and Y will produce a lower TCO.  Running this Operating System as opposed to this other one will give you a lower TCO in this scenario.  Who came up with this new age version of Voodoo Economics?  IT departments need to constantly get feedback from their user community as to what they need to do their jobs better.  They should actually be going out of their ways to learn the daily processes and job functions of the customer base they are supporting so that they can be better informed to make decisions that will benefit the company to the greatest extent.  Does having a snazzy web reporting module showing disk queue length for all your servers really benefit your customers?  Does this justify paying more for a product when the other one does the same thing through an Administrators Console?  How about Patch Management features in your product?  Does it allow you to customize patching, reboots, etc around your customer's schedules or does it abruptly interrupt work?  Doesn't this work stoppage work against TCO and in fact raise it?  Its all about the 'X' factor.  Management of your enterprise is about having product sets that are flexible enough to adjust to your organizations needs.  Leave the bells and whistles for Hallmark.&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=5965" width="1" height="1"&gt;</description></item><item><title>Throwing Water on the Fire</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/05/03/5867.aspx</link><pubDate>Tue, 04 May 2004 01:15:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:5867</guid><dc:creator>Richard</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=5867</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/05/03/5867.aspx#comments</comments><description>&lt;p&gt;Looks like we've got another worm on our hands.  Many Administrators are getting sleep tonight because they know their systems have been patched for a bit now.  They have set up the proper processes and/or technologies throughout the enterprise to be proactive and patch before something like this happens.  But what about those Administrators that haven't patched their systems yet (this isn't necessarily a failure on an Administrators part but could have been a political, business, or other issue that caused this) and are stuck fighting the worm?&lt;/p&gt;
&lt;p&gt;There are good practices and procedures that should be followed for remediation across the Enterprise as well.  Similar to how you handle Management across your systems, if you aren't organized with a good plan and using the proper tools you will be spinning your wheels during remediation as well.&lt;/p&gt;
&lt;p&gt;The first step that needs to be done is organization and ownership of resources.  Many times large organizations have clients and servers spread across different buildings and groups that are assumed to be managed however are not.  The best step in this process is to have a contact person or 'Incident Owner' that can designate which groups are responsible for what machines and when they need to address them by.  Usually this person in a large company is a member of the Security Team and also owns other processes such as vulnerability scanning.&lt;/p&gt;
&lt;p&gt;After organization and delegation of duties the method of worm/virus cleaning and patching should be agreed upon as well.  Usually most large Anti Virus vendors provide tools to clean systems but a good move more recently has been made by Microsoft to provide &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=76C6DE7E-1B6B-4FC3-90D4-9FA42D14CC17&amp;amp;displaylang=en"&gt;tools &lt;/a&gt;as well for this process.  Almost all come with silent command line switches so you can easily incorporate them into an SMS package and distribute remotely however another option is to use a scripting language such as VBS or Perl to loop through systems, copy the tool locally and execute it (such as seen &lt;a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;827227"&gt;here&lt;/a&gt;).  Its important to note that a mistake made by many is to immediately disconnect or 'blackhole' vulnerable systems from the network when an outbreak occurs in order to contain it.  Unless the number of unpatched systems is small, this is usually the most counterproductive move that can be made.  By doing this you will not only impact business greatly but also cause your desktop support personnel and possibly your Administrative staff to 'Sneakernet' there way to possibly hundreds of systems to clean and patch them.  A more effective means of containing a worm like this is to attempt cleaning and patching an infected or vulnerable system remotely (as stated previously with SMS or a script - the tools are there for you to do this!) before removing it from the network.  Not only does this save workload from your staff but can also be much more efficient in resolving the problem faster.  Another strategy depending on the size of the outbreak is to only disable infected systems while still continuing remote patching efforts.&lt;/p&gt;
&lt;p&gt;Eventually there will almost always need to be a physical visit to some systems when you have an outbreak.  Usually your Desktop Support Staff will be dispatched to clean the virus and patch the system.  I cannot stress enough here how important it is here to communicate instructions on how to do this to all vested parties.  Many times Administrators will understand a worm and create tools to remediate those systems however never communicate this information to the support staff that may need it the most.  &lt;/p&gt;
&lt;p&gt;Finally I'd like to talk about scanning tools.  If you are in a pinch here you may not have the proper tools to find vulnerable systems still left on your network.  Foundstone has a &lt;a href="http://www.foundstone.com/index.htm?subnav=resources/navigation.htm&amp;amp;subcontent=/resources/termsofuse.htm?file=dsscan.zip"&gt;great one &lt;/a&gt;out but its not the best for reporting.  There are also the new &lt;a href="http://www.microsoft.com/technet/security/tools/mbsascript.mspx"&gt;MBSA scripts &lt;/a&gt;which have awesome reporting but the performance isn't that great.  Just remember to keep scanning your networks for a bit after remediation efforts are complete so that you know you've put this beast to bed.&lt;/p&gt;
&lt;p&gt;After all this schedule a post mortem-type meeting with all parties to discuss improvements for next time - especially why your Patch Management tool/process didn't cover all your systems!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=5867" width="1" height="1"&gt;</description></item><item><title>Single Point of Failure?</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/04/28/5615.aspx</link><pubDate>Wed, 28 Apr 2004 23:08:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:5615</guid><dc:creator>Richard</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=5615</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/04/28/5615.aspx#comments</comments><description>&lt;p&gt;We posted an interesting &lt;a href="http://www.myitforum.com/forums/tm.asp?m=59701&amp;amp;cookieCheck=169567922"&gt;survey&lt;/a&gt; yesterday on &lt;a href="http://www.myitforum.com"&gt;myITforum&lt;/a&gt; to see if certain Administrators were the Single Point of Failure for Patch Management in their company.  A surprising amount of people responded that they were, and an even more surprising amount sent me emails offline about it.  Some responded to me saying that it has been 3-6 months since a patch had been deployed at their organization because they were taken from their SMS responsibilities and on to something else!  At first I was astounded by this.  In today's day of the &lt;a href="http://www.microsoft.com/smserver/downloads/20/featurepacks/suspack/"&gt;SUSFP&lt;/a&gt; and the native Software Updates features in SMS 2003 this should be easy right?&lt;/p&gt;
&lt;p&gt;Well, maybe not.  I got to thinking about this and while this may be the case for organizations with (and I'll ballpark here) 5000 or more clients that are able to have multiple staff members for their SMS infrastructures its not always the case for smaller ones utilizing SMS with just a single Administrator.  If I were the single SMS Admin at a smaller site I wouldn't be that happy if my boss was calling me to create a patch package while I was on vacation because I was the only one, or even worse if I had to schedule my vacations around the Tuesday patch release schedule.&lt;/p&gt;
&lt;p&gt;So what's the answer to this?  A couple of things.  One is possibly product improvements for SMS Software Updates features.  Yes the DSUW integration into the UI is a great feature but maybe a simple web page tied into the SMS Provider that can do the same thing for managers, etc, to use in an emergency with minimal training would suffice as well?  This wouldn't be the tool you use to manage your entire Software Updates management strategy but it would allow others to be able to secure systems while you are away.  Along with this would be better status messages for non-SMS Admins to read when they used this tool set.  Seeing “A non-zero Exit Code was returned” means nothing to a manager, or even a technical person not familiar with SMS.  In a lot of ways SMS does a good job at making simple things difficult such as status messages.&lt;/p&gt;
&lt;p&gt;Some things that are outside of the SMS product groups control could be improved upon as well to help this situation.  One is standardization of hotfix installers.  This process is already happening inside Microsoft but to the chagrin of us all it is happening much to slow.  Once this happens it may lead to the other improvement which is standard silent hotfix command line parameters across the board so that the non-SMS Amin can easily distribute updates when they are OoO.  The telling fact about this is that many new SMS Administrators have failed distributions because if incorrect command line switches.  Yes they aren't doing the correct thing by not testing switch functionality first but &lt;strong&gt;&lt;u&gt;news flash&lt;/u&gt;&lt;/strong&gt;:  They are correct in thinking most, if not all, Microsoft generated hotfix installers should act the same.&lt;/p&gt;
&lt;p&gt;Hopefully as the hotfix installer technology catches up with the rest of Microsoft products, SMS and other Software Update Management technologies like WUS can have even more robust tool sets.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=5615" width="1" height="1"&gt;</description></item><item><title>New Management Blog</title><link>http://msmvps.com/blogs/threlkeld/archive/2004/04/27/5575.aspx</link><pubDate>Wed, 28 Apr 2004 00:03:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:5575</guid><dc:creator>Richard</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/threlkeld/rsscomments.aspx?PostID=5575</wfw:commentRss><comments>http://msmvps.com/blogs/threlkeld/archive/2004/04/27/5575.aspx#comments</comments><description>&lt;p&gt;Welcome to my new Blog covering &lt;a href="http://www.microsoft.com/management/community/default.mspx"&gt;Management technologies&lt;/a&gt;, processes, and thoughts. Hopefully this can serve as another avenue to spread ideas in this area on what others in the industry are doing and also deliver new information as it happens.&lt;/p&gt;
&lt;p&gt;So what are Manageability Products? Traditionally these are products such as &lt;a href="http://www.microsoft.com/smserver/default.asp"&gt;SMS&lt;/a&gt;, &lt;a href="http://www-306.ibm.com/software/tivoli/"&gt;Tivoli&lt;/a&gt;, &lt;a href="http://www.microsoft.com/mom/"&gt;MOM&lt;/a&gt;, etc that enable Administrators to better 'Manage' their network resources and lower &lt;a href="http://search390.techtarget.com/sDefinition/0,,sid10_gci342316,00.html"&gt;TCO&lt;/a&gt;. This area, at least as Microsoft goes, seems to be expanding more into other areas. Take authentication now. AD has many Intellimirror features that give some organizations a small and limited subset of Manageability like Software Distribution or control through GPO, etc. Its funny how products like SMS traverse many fields like Security and Auditing and really shows the power and control that Administrators have over their networks.&lt;/p&gt;
&lt;p&gt;Management Products Rule. There are a lot of issues with them though such as deployment, configuration, and knowledge that have to be overcome for success. With proper research, testing, and learning by your staff most products should be successful in any environment. I often find myself wondering in this area if Administrators are driving the direction of the products or if vendors themselves are. Many times I see new features added or changed and I have no idea where the thought process for this comes from. The real answer for the most part is that customer requests (and demands) force product change over time and vendors can only hope that this leads to a more robust feature set. It seems though that Administrators of larger networks are 180 degrees different than developers in that they resist change even if they asked for it. This is a big reason why deployment of products like SMS fail is because of the closed-mindedness that many Administrators have. If you read, learn, and ask questions first rather than argue and belittle technology your grasp of it will come much faster.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=5575" width="1" height="1"&gt;</description></item></channel></rss>