<?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>Networknet.nl &#187; SMS</title>
	<atom:link href="http://www.networknet.nl/apps/wp/archives/category/microsoft/sms/feed" rel="self" type="application/rss+xml" />
	<link>http://www.networknet.nl/apps/wp</link>
	<description>Stay Connected</description>
	<lastBuildDate>Sat, 04 Feb 2012 20:10:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SMS 2003: Error 25100</title>
		<link>http://www.networknet.nl/apps/wp/archives/744</link>
		<comments>http://www.networknet.nl/apps/wp/archives/744#comments</comments>
		<pubDate>Mon, 16 Mar 2009 06:37:16 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[2003]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[SMS]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=744</guid>
		<description><![CDATA[I am still managing a SMS 2003 environment and last week we encountered following message on one of the SMS 2003 clients. The message appeared in Application Eventviewer and SMS client did not report back to our SMS Primary site: Event Type:        Error Event Source:      MsiInstaller Event Category:    None Event ID:          10005 Date:              3/10/2009 Time:              12:17:06 PM User:              NETWORKNET\Ivan Computer:          IVAN-VM01 Description: Product: SMS Advanced Client &#8212; Error 25100. Setup was unable to create the WMI namespace CCM The error code is 80041002  To fix the problem see my cmd script below which was used by the local IT contact:  @echo off REM Ivan Versluis REM Date: 2009/03/11 REM Description: FIX WMI Database for SMS Client c: cd %windir%\system32\wbem\ mofcomp cimwin32.mof mofcomp cimwin32.mfl net stop winmgmt rmdir /s /q repository rmdir /s /q Logs mkdir Logs net start winmgmt rundll32 wbemupgd, UpgradeRepository rundll32 wbemupgd, CheckWMISetup rundll32 wbemupgd, RepairWMISetup pause  ]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/744/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to shrink the SMS_SITENAME database SMS 2003?</title>
		<link>http://www.networknet.nl/apps/wp/archives/346</link>
		<comments>http://www.networknet.nl/apps/wp/archives/346#comments</comments>
		<pubDate>Thu, 24 Jan 2008 12:06:39 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[SMS]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[shrinkfile]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/346</guid>
		<description><![CDATA[The SMS 2003 infrastructure I am managing has one singe SMS database which became 4 GB. 1GB data and 3GB log. Today I planned the database maintenance and managed to shrink the files with 3GB. Open the Enterprise Manager or Microsoft SQL Server Management tools and make sure the database option is set to Auto Shrink = Auto (enhancement for the future). Run the following sql script: USE [SMS_123] GO DBCC SHRINKFILE (N&#8216;SMS_123_log&#8217;, 0, TRUNCATEONLY) GO Another useful script can be found here which will create a stored procedure and show all table space sizes with rows and MB used. exec sp_show_huge_tables]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/346/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMS Report &#8211; Delete Computer Object</title>
		<link>http://www.networknet.nl/apps/wp/archives/3</link>
		<comments>http://www.networknet.nl/apps/wp/archives/3#comments</comments>
		<pubDate>Wed, 13 Jun 2007 11:50:39 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[SMS]]></category>
		<category><![CDATA[Delete Computer object]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[SMS 2003]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/?p=3</guid>
		<description><![CDATA[This report will delete a computer object from the SMS database. Use this report if you restage a computer with the same name. Normal process will take more than 30days to age to stale the record.  Save the the mof code above to a text file with file name like delete.mof. Start the Systems Management Console and scroll down to Reporting and click Reports. Right click Reports; go to All Tasks and click Import Objects. Browse to the delete.mof file to import the report. After you the delete.mof file has been imported; start IE and open the SMSReporting website. New category should be available like Networknet-LocalIT tasks. If you want to change this go to the SMS console and change the category name.  Step 1 is finished now. The report is created. Next step is to extend the SMS database with extra stored procedure. Copy the text below to a text file named sp_delete.sql. Please change the SMS_ABC to your 3code Site name. Login to your SQL server which hosts the SMS_ABC database and open SQL Query Analyzer tool. Open the sp_delete.sql file and execute the SQL (F5 short key). Step 2 is completed now. Stored procedure has been created. Before the report will work for the reporting users the internal role webreport_approle will need to be granted with select and delete permissions on the SMS database tables. These tables were granted with select and delete to webreport_approle. This is my test environment and I didn&#8217;t extend the SMS schema. ...]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/3/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

