<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TechColumnist &#187; sms2003</title>
	<atom:link href="http://www.techcolumnist.com/wp/tag/sms2003/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techcolumnist.com/wp</link>
	<description>Storage Information Blog</description>
	<lastBuildDate>Fri, 16 Jul 2010 15:56:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Change SMS Cache Size</title>
		<link>http://www.techcolumnist.com/wp/2007/10/20/change-sms-cache-size/</link>
		<comments>http://www.techcolumnist.com/wp/2007/10/20/change-sms-cache-size/#comments</comments>
		<pubDate>Sat, 20 Oct 2007 08:54:17 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://www.techcolumnist.com/wp/2007/10/20/change-sms-cache-size/</guid>
		<description><![CDATA[This script will change the sms cache size. Usage Example: cscript change-sms-cache.vbs 1000 d:\ Note: size is in MB [vb]On Error Resume Nextssize = WScript.Arguments(0) slocation = WScript.Arguments(1) Set oUIResource = CreateObject("UIResource.UIResourceMgr") Set CacheInfo = oUIResource.GetCacheInfo cacheInfo.TotalSize = sSize if WScript.Arguments(1) then CacheInfo.Location = sLocation End if[/vb]]]></description>
			<content:encoded><![CDATA[<p>This script will change the sms cache size.<br />
Usage Example: <code>cscript change-sms-cache.vbs 1000 d:\</code><br />
Note: size is in MB</p>
<p><span id="more-21"></span></p>
<p>[vb]On Error Resume<br />
Nextssize = WScript.Arguments(0)<br />
slocation = WScript.Arguments(1)<br />
Set oUIResource = CreateObject("UIResource.UIResourceMgr")<br />
Set CacheInfo = oUIResource.GetCacheInfo</p>
<p>cacheInfo.TotalSize = sSize</p>
<p>if WScript.Arguments(1) then<br />
CacheInfo.Location = sLocation<br />
End if[/vb]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2007/10/20/change-sms-cache-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All collections for specific machine</title>
		<link>http://www.techcolumnist.com/wp/2007/09/09/all-collections-for-specific-machine/</link>
		<comments>http://www.techcolumnist.com/wp/2007/09/09/all-collections-for-specific-machine/#comments</comments>
		<pubDate>Sun, 09 Sep 2007 09:33:16 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=8</guid>
		<description><![CDATA[A bit of code from MyITForum.com with a report that lists all collections for a specific machine. http://www.myitforum.com/forums/All_Collections_for_a_specific_computer/m_163312/tm.htm select FCM.SiteCode as 'SMS Site', FCM.CollectionID, COL.Name as 'Collection' from v_R_System SYS join v_FullCollectionMembership FCM on FCM.ResourceID = SYS.ResourceID join v_Collection COL on COL.CollectionID = FCM.CollectionID where SYS.Name0 = @Computer Prompt Query: begin if (@__filterwildcard = '') [...]]]></description>
			<content:encoded><![CDATA[<p>A bit of code from MyITForum.com with a report that lists all collections for a specific machine.</p>
<p>http://www.myitforum.com/forums/All_Collections_for_a_specific_computer/m_163312/tm.htm</p>
<p><span id="more-8"></span></p>
<p><code>select FCM.SiteCode as 'SMS Site',<br />
FCM.CollectionID,<br />
COL.Name as 'Collection'<br />
from v_R_System SYS<br />
join v_FullCollectionMembership FCM on FCM.ResourceID = SYS.ResourceID<br />
join v_Collection COL on COL.CollectionID = FCM.CollectionID<br />
where SYS.Name0 = @Computer</code></p>
<p>Prompt Query: </p>
<p><code>begin<br />
if (@__filterwildcard = '')<br />
SELECT DISTINCT SYS.Netbios_Name0 from v_R_System SYS WHERE SYS.Client0=1 ORDER By SYS.Netbios_Name0<br />
else<br />
SELECT DISTINCT SYS.Netbios_Name0 from v_R_System SYS WHERE SYS.Client0=1<br />
and SYS.Netbios_Name0 like @__filterwildcard<br />
ORDER By SYS.Netbios_Name0<br />
end</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2007/09/09/all-collections-for-specific-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>error code is 80070005</title>
		<link>http://www.techcolumnist.com/wp/2007/08/26/error-code-is-80070005/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/26/error-code-is-80070005/#comments</comments>
		<pubDate>Sun, 26 Aug 2007 06:34:51 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=9</guid>
		<description><![CDATA[I'm sure you've seen this error in your travels, here's how to fix it: MSI: Setup failed due to unexpected circumstances The error code is 80070005 Run "dcomcnfg" in Run dialogue box. (Distributed COM Configuration Properties opens) Expand Component Services &#62; Computers &#62; My Computer Right click "My Computer" &#62; Properties Default Properties Tab Change [...]]]></description>
			<content:encoded><![CDATA[<p>I'm sure you've seen this error in your travels, here's how to fix it:<br />
<code class="codespan">MSI: Setup failed due to unexpected circumstances The error code is 80070005</code></p>
<p><span id="more-9"></span></p>
<ol>
<li>Run "dcomcnfg" in Run dialogue box. (Distributed COM Configuration Properties opens)</li>
<li>Expand Component Services &gt; Computers &gt; My Computer</li>
<li>Right click "My Computer" &gt; Properties</li>
<li>Default Properties Tab</li>
<li>Change the "Default Authentication Level" to "Connect"</li>
<li>Change the "Default Impersonation Level" to "Identify"</li>
<li>Press Ok bottun and close all the windows.</li>
<li>Rerun ccmsetup.exe</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/26/error-code-is-80070005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Response Buffer Limit Exceeded</title>
		<link>http://www.techcolumnist.com/wp/2007/08/23/response-buffer-limit-exceeded/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/23/response-buffer-limit-exceeded/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 09:39:33 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=11</guid>
		<description><![CDATA[Ever get this error: Response object error 'ASP 0251 : 80004005' Response Buffer Limit Exceeded Here's the fix: To resolve this issue: Browse to (on the reporting point): C:\WINDOWS\system32\inetsrv Open: MetaBase.xml Find the variable: AspBufferingLimit Change the default value to something higher, I chose 51200000 AspBufferingLimit="51200000" Stop IIS Save the MetaBase.xml file Start IIS Check [...]]]></description>
			<content:encoded><![CDATA[<p>Ever get this error:<br />
<code>Response object error 'ASP 0251 : 80004005'<br />
Response Buffer Limit Exceeded </code></p>
<p>Here's the fix:</p>
<p><span id="more-11"></span></p>
<p>To resolve this issue:</p>
<ol>
<li>Browse to (on the reporting point): C:\WINDOWS\system32\inetsrv</li>
<li>Open: MetaBase.xml</li>
<li>Find the variable: AspBufferingLimit</li>
<li>Change the default value to something higher, I chose 51200000</li>
<li>AspBufferingLimit="51200000"</li>
<li>Stop IIS</li>
<li>Save the MetaBase.xml file</li>
<li>Start IIS</li>
<li>Check to make sure that your website now works correctly (if not set a higher value).</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/23/response-buffer-limit-exceeded/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WinZip count with version</title>
		<link>http://www.techcolumnist.com/wp/2007/08/06/winzip-count-with-version/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/06/winzip-count-with-version/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 09:43:57 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=13</guid>
		<description><![CDATA[SELECT ProductName0 AS Product, VersionMajor0 AS Version, COUNT(*) AS Count FROM dbo.v_GS_INSTALLED_SOFTWARE GROUP BY ProductName0, VersionMajor0 HAVING (ProductName0 = 'winzip')]]></description>
			<content:encoded><![CDATA[<p><code>SELECT     ProductName0 AS Product, VersionMajor0 AS Version, COUNT(*) AS Count<br />
FROM         dbo.v_GS_INSTALLED_SOFTWARE<br />
GROUP BY ProductName0, VersionMajor0<br />
HAVING      (ProductName0 = 'winzip')</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/06/winzip-count-with-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware / MS VM / Real / Total Count</title>
		<link>http://www.techcolumnist.com/wp/2007/08/01/vmware-ms-vm-real-total-count/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/01/vmware-ms-vm-real-total-count/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 09:48:58 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=17</guid>
		<description><![CDATA[Garth writes some very useful SMS web reports so I copy them here sometimes: http://smsug.ca/blogs/garth_jones/archive/2007/08/01/528.aspx Declare @MS as int Declare @VM as int Declare @Real as int Declare @Total as int set @Total = (select count(*) from v_GS_COMPUTER_SYSTEM) set @MS = (select count(*) from v_GS_COMPUTER_SYSTEM where Manufacturer0 = 'Microsoft Corporation' ) set @VM = (select [...]]]></description>
			<content:encoded><![CDATA[<p>Garth writes some very useful SMS web reports so I copy them here sometimes:<br />
<a href="http://smsug.ca/blogs/garth_jones/archive/2007/08/01/528.aspx">http://smsug.ca/blogs/garth_jones/archive/2007/08/01/528.aspx</a></p>
<p><span id="more-17"></span></p>
<p><code>Declare @MS as int<br />
Declare @VM as int<br />
Declare @Real as int<br />
Declare @Total as int </code><code>set @Total = (select count(*) from v_GS_COMPUTER_SYSTEM)<br />
set @MS = (select count(*) from v_GS_COMPUTER_SYSTEM where Manufacturer0 = 'Microsoft Corporation' )<br />
set @VM = (select count(*) from v_GS_COMPUTER_SYSTEM where Manufacturer0 = 'VMware, Inc.')<br />
set @Real = (select @total - @MS - @VM)</p>
<p>Select<br />
  @Real as 'Real PCs',<br />
  @MS as 'MS Virtual PCs',<br />
  @VM as 'VM Virtual PCs',<br />
  @Total as 'Total'</p>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/01/vmware-ms-vm-real-total-count/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMS Site Status</title>
		<link>http://www.techcolumnist.com/wp/2007/08/01/sms-site-status/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/01/sms-site-status/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 09:45:50 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=15</guid>
		<description><![CDATA[This is a "dashboard" report that shows the current SMS site status. SELECT TOP (100) PERCENT SiteCode, CASE Status WHEN 0 THEN 'OK' WHEN 1 THEN 'Warning' WHEN 2 THEN 'Critical' ELSE 'False' END AS [Level], Updated FROM dbo.v_SummarizerSiteStatus ORDER BY Status DESC, SiteCode]]></description>
			<content:encoded><![CDATA[<p>This is a "dashboard" report that shows the current SMS site status.</p>
<p><span id="more-15"></span></p>
<p><code>SELECT TOP (100) PERCENT SiteCode, CASE Status WHEN 0 THEN 'OK' WHEN 1 THEN 'Warning' WHEN 2 THEN 'Critical' ELSE 'False' END AS [Level], Updated<br />
FROM dbo.v_SummarizerSiteStatus<br />
ORDER BY Status DESC, SiteCode</code></p>
<p><a href="http://techcolumnist.com/wp/wp-content/uploads/2007/10/8-1-2007-003.png" title="SMS Status Example"><img src="http://techcolumnist.com/wp/wp-content/uploads/2007/10/8-1-2007-003.png" alt="SMS Status Example" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/01/sms-site-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title># of updates per month</title>
		<link>http://www.techcolumnist.com/wp/2007/08/01/of-updates-per-month/</link>
		<comments>http://www.techcolumnist.com/wp/2007/08/01/of-updates-per-month/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 09:44:46 +0000</pubDate>
		<dc:creator>Tom Lasswell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[sms2003]]></category>

		<guid isPermaLink="false">http://techcolumnist.com/wp/?p=14</guid>
		<description><![CDATA[This report shows you the number of updates that were released each month for each product. SELECT TOP (100) PERCENT CAST(DATEPART(YYYY, DateRevised0) AS CHAR(4)) + '/' + RIGHT(CAST(100 + DATEPART(MM, DateRevised0) AS CHAR(3)), 2) AS [Year/Month], Product0 AS Product, COUNT(*) AS Count FROM dbo.v_HS_PATCHSTATEEX WHERE (Severity0 > '5') GROUP BY CAST(DATEPART(YYYY, DateRevised0) AS CHAR(4)) + [...]]]></description>
			<content:encoded><![CDATA[<p>This report shows you the number of updates that were released each month for each product.</p>
<p><span id="more-14"></span></p>
<p><code>SELECT TOP (100) PERCENT CAST(DATEPART(YYYY, DateRevised0) AS CHAR(4)) + '/' + RIGHT(CAST(100 + DATEPART(MM, DateRevised0) AS CHAR(3)), 2) AS [Year/Month], Product0 AS Product, COUNT(*) AS Count<br />
FROM dbo.v_HS_PATCHSTATEEX<br />
WHERE (Severity0 > '5')<br />
GROUP BY CAST(DATEPART(YYYY, DateRevised0) AS CHAR(4)) + '/' + RIGHT(CAST(100 + DATEPART(MM, DateRevised0) AS CHAR(3)), 2), Type0, Product0<br />
HAVING      (Type0 = 'microsoft update')<br />
ORDER BY [Year/Month] DESC, Product</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techcolumnist.com/wp/2007/08/01/of-updates-per-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
