 




<?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>IT Answers &#187; Service packs</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/service-packs/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 00:29:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Best way to deploy a service pack?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/best-way-to-deploy-a-service-pack/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/best-way-to-deploy-a-service-pack/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 15:34:19 +0000</pubDate>
		<dc:creator>TeachMeIT</dc:creator>
				<category><![CDATA[Deployment tools]]></category>
		<category><![CDATA[Group Policy]]></category>
		<category><![CDATA[Service packs]]></category>
		<category><![CDATA[WSUS]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[What is the best way to deploy a service pack? Group Policy or allow users to download it themselves or something like WSUS?]]></description>
				<content:encoded><![CDATA[<p>What is the best way to deploy a service pack? Group Policy or allow users to download it themselves or something like WSUS?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/best-way-to-deploy-a-service-pack/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Visual Basic script to get Sysinfo</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vb-script-to-get-sisinfo/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/vb-script-to-get-sisinfo/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 22:40:40 +0000</pubDate>
		<dc:creator>Oh2abq</dc:creator>
				<category><![CDATA[Excel worksheets]]></category>
		<category><![CDATA[Service packs]]></category>
		<category><![CDATA[VB script]]></category>
		<category><![CDATA[Visual Basic Script]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello I am having problems with a VB Script this is what I want to achieve: 1) Check a machine if is active on the network 2) Find the current logged in user 3) Gather the Service Pack Version 4) Display all information into Excel 5) Highlight in redf which machines are online or offline [...]]]></description>
				<content:encoded><![CDATA[<p>Hello I am having problems with a VB Script this is what I want to achieve: 1) Check a machine if is active on the network 2) Find the current logged in user 3) Gather the Service Pack Version 4) Display all information into Excel 5) Highlight in redf which machines are online or offline 6) Highlight in red which machines need SP3+ I have managed to do most of the work<br/><br/> Copy of Script &lt;Begin&gt; On Error Resume Next<br/><br/> Set objExcel = CreateObject(&#8220;Excel.Application&#8221;) objExcel.Visible = True objExcel.Workbooks.Add intRow = 2 Const HKEY_LOCAL_MACHINE = &#038;H80000002<br/><br/> objExcel.Cells(1, 1).Value = &#8220;Machine Name&#8221; objExcel.Cells(1, 2).Value = &#8220;Results&#8221; objExcel.Cells(1, 3).Value = &#8220;User Logged On&#8221;<br/><br/> Set Fso = CreateObject(&#8220;Scripting.FileSystemObject&#8221;) Set InputFile = fso.OpenTextFile(&#8220;MachineList.Txt&#8221;)<br/><br/> Do While Not (InputFile.atEndOfStream) HostName = InputFile.ReadLine<br/><br/>  Set WshShell = WScript.CreateObject(&#8220;WScript.Shell&#8221;) Ping = WshShell.Run(&#8220;ping -n 1 &#8221; &#038; HostName, 0, True)<br/><br/> objExcel.Cells(intRow, 1).Value = UCase(HostName)<br/><br/> Select Case Ping Case 0 objExcel.Cells(intRow, 2).Value = &#8220;On Line&#8221; Case 1 objExcel.Cells(intRow, 2).Value = &#8220;Off Line&#8221; End Select<br/><br/> If objExcel.Cells(intRow, 2).Value = &#8220;Off Line&#8221; Then objExcel.Cells(intRow, 2).Interior.ColorIndex = 3 Else objExcel.Cells(intRow, 2).Interior.ColorIndex = 4<br/><br/>  Set objRegistry = GetObject(&#8220;winmgmts:\\&#8221; &#038; HostName &#038; &#8220;rootdefault:StdRegProv&#8221;) if err.number&lt;&gt;0 Then objExcel.Cells(intRow, 3).Value = &#8220;DENIED CHECK ADMIN GROUP&#8221; err.Clear Else strKeyPath = &#8220;SOFTWAREMicrosoftWindows NTCurrentVersionWinLogon&#8221; strValueName = &#8220;DefaultUserName&#8221; objRegistry.GetStringValue HKEY_LOCAL_MACHINE, strKeyPath, strValueName, strValue objExcel.Cells(intRow, 3).Value = strValue End if End if<br/><br/> intRow = intRow + 1 Loop<br/><br/> objExcel.Range(&#8220;A1:D1&#8243;).Select objExcel.Selection.Interior.ColorIndex = 19 objExcel.Selection.Font.ColorIndex = 11 objExcel.Selection.Font.Bold = True objExcel.Cells.EntireColumn.AutoFit<br/><br/> MsgBox &#8220;Done&#8221; &lt;end&gt;<br/><br/> I am having problems gettng the SP info to display and highlight those fields in red that do not meet SP3 + levels.  <br/><br/>  <br/><br/> Any help would be greatly beneficial &#8211; Thanks<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/vb-script-to-get-sisinfo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting Service Pack Information in Windows Server 2003</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/getting-service-pack-information-in-windows-2003/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/getting-service-pack-information-in-windows-2003/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 01:57:16 +0000</pubDate>
		<dc:creator>Venkatesh81</dc:creator>
				<category><![CDATA[Service packs]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows Server 2003 SP2]]></category>
		<category><![CDATA[Windows Server Service Packs]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi, in my organization i have around 1000 of servers. All are running with Windows 2003 OS. I know many of the Servers are not running SP2. I need a script which checks all the Servers for the Service Pack information and displays the Result. Just Getting the Service Pack information is enough. We do [...]]]></description>
				<content:encoded><![CDATA[<p>Hi, in my organization i have around 1000 of servers. All are running with Windows 2003 OS. I know many of the Servers are not running SP2. I need a script which checks all the Servers for the Service Pack information and displays the Result. Just Getting the Service Pack information is enough. We do not have WSUS implemented. So we are manually upgrading the SP2. Is there any script you know to get this information. Please help.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/getting-service-pack-information-in-windows-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP starts up but hangs at background screen with no icons</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/xp-starts-up-but-hangs-at-background-screen-no-icons/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/xp-starts-up-but-hangs-at-background-screen-no-icons/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 23:17:50 +0000</pubDate>
		<dc:creator>Bghp</dc:creator>
				<category><![CDATA[Boot failure]]></category>
		<category><![CDATA[Service packs]]></category>
		<category><![CDATA[Trojans]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Windows XP boot failure]]></category>
		<category><![CDATA[Windows XP Security]]></category>
		<category><![CDATA[Windows XP trojan]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[While in the middle of fixing some trojan infections I have found my XP service pack 3 PC is now starting up to the background screen and not displaying any icons. I am able to hit ctrl-alt-delete and startup task manager. There are no applications running. If I choose new task and enter explorer.exe everything [...]]]></description>
				<content:encoded><![CDATA[<p>While in the middle of fixing some trojan infections I have found my XP service pack 3 PC is now starting up to the background screen and not displaying any icons. I am able to hit ctrl-alt-delete and startup task manager. There are no applications running. If I choose new task and enter explorer.exe everything comes up fine and I can work from there. This has been my workaround but is annoying. I have run chkdsk and it initially found one problem and supposedly fixed it. This issue happens when I am in safe mode or even logged in as administartor. I even created an additional identity  and it exhibits the same behavior.<br />
Can anyone offer some help?<br />
I would greatly appreciate it.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/xp-starts-up-but-hangs-at-background-screen-no-icons/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Uninstalling a SQL Server service pack</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/uninstalling-a-sql-server-service-pack/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/uninstalling-a-sql-server-service-pack/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 19:47:50 +0000</pubDate>
		<dc:creator>SQL Server Ask the Experts</dc:creator>
				<category><![CDATA[Service packs]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Service Packs]]></category>
		<category><![CDATA[SQL Server upgrades]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[If we have problems after installing a SQL Server service pack, can we uninstall it with no issues?]]></description>
				<content:encoded><![CDATA[<p>If we have problems after installing a SQL Server service pack, can we uninstall it with no issues?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/uninstalling-a-sql-server-service-pack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2003 service pack/2003 server service pack</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/2003-exchange-service-pack2003-server-service-pack/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/2003-exchange-service-pack2003-server-service-pack/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 00:05:31 +0000</pubDate>
		<dc:creator>Garden33</dc:creator>
				<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2003 SP2]]></category>
		<category><![CDATA[Service packs]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[Windows Server 2003 Service Packs]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am currently running 2003 srv service pack1. I also am running 2003 exch server. How can tell if I have service pack 2 for exchange installed and should I install service pack 2 on the server side first then install service pack 2 on exchnage if needed.]]></description>
				<content:encoded><![CDATA[<p>I am currently running 2003 srv service pack1. I also am running 2003 exch server. How can  tell if I have service pack 2 for exchange  installed and should I install service pack 2 on the server side first then install service pack 2 on exchnage if needed.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/2003-exchange-service-pack2003-server-service-pack/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>failed windows updates in Server 2003</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/failed-windows-updates-in-server-2003/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/failed-windows-updates-in-server-2003/#comments</comments>
		<pubDate>Tue, 27 May 2008 16:20:32 +0000</pubDate>
		<dc:creator>Gianni</dc:creator>
				<category><![CDATA[Domain Controller]]></category>
		<category><![CDATA[Error 0x80070643]]></category>
		<category><![CDATA[Error 0x8007f004]]></category>
		<category><![CDATA[Patch management]]></category>
		<category><![CDATA[Service packs]]></category>
		<category><![CDATA[Windows Server 2003]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello, I am having an issue installing updates on my Backup Domaincontroller, it&#8217;s running windows server 2003 and I get an error in the event viewer as follows: Installation Failure: Windows failed to install the following update with error 0&#215;80070643: Visual Studio 2005 Service Pack 1. Installation Failure: Windows failed to install the following update [...]]]></description>
				<content:encoded><![CDATA[<p>Hello,<br />
I am having an issue installing updates on my Backup Domaincontroller, it&#8217;s running windows server 2003 and I get an error in the event viewer as follows:</p>
<p>Installation Failure: Windows failed to install the following update with error 0&#215;80070643: Visual Studio 2005 Service Pack 1.</p>
<p>Installation Failure: Windows failed to install the following update with error 0x8007f004: Update for Windows Server 2003 (KB948496).</p>
<p>Installation Failure: Windows failed to install the following update with error 0x8007f004: Security Update for Windows Server 2003 (KB941693).</p>
<p>Installation Failure: Windows failed to install the following update with error 0x8007f004: Security Update for Windows Server 2003 (KB945553).</p>
<p>Installation Failure: Windows failed to install the following update with error 0x8007f004: Security Update for Windows Server 2003 (KB948590).</p>
<p>Installation Failure: Windows failed to install the following update with error 0x8007f004: Security Update for ActiveX Killbits for Windows Server 2003 (KB948881).</p>
<p>Installation Failure: Windows failed to install the following update with error 0x8007f004: Cumulative Security Update for Internet Explorer 7 for Windows Server 2003 (KB947864).</p>
<p>This was all preformed through remote desktop, Then I physically logged into the box in my computer room and I get a message saying that I do not have permission&#8230;</p>
<p>I am getting frustrated can someone please help?</p>
<p>Thanks</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/failed-windows-updates-in-server-2003/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Which .Net Framework and or service pack should I keep installed on my XP home Edition Computer?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/which-net-framework-and-or-service-pack-should-i-keep-installed-on-my-xp-home-edition-computer/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/which-net-framework-and-or-service-pack-should-i-keep-installed-on-my-xp-home-edition-computer/#comments</comments>
		<pubDate>Sat, 10 May 2008 16:02:09 +0000</pubDate>
		<dc:creator>Joshuasquestion</dc:creator>
				<category><![CDATA[.NET Framework 2.0]]></category>
		<category><![CDATA[.NET Framework 3.0]]></category>
		<category><![CDATA[Service packs]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I recently tried installing a new software which kept giving me a &#8220;failed to initialize properly (0xc000142) click on ok to terminate the application&#8221; error. I need this software, it is specialty for my specialty. I read the manufacturer notes that I must have .net framework 2.0 to run it. So I checked and found [...]]]></description>
				<content:encoded><![CDATA[<p>I recently tried installing a new software which kept giving me a &#8220;failed to initialize properly (0xc000142) click on ok to terminate the application&#8221;  error.  I need this software, it is specialty for my specialty.    I read the manufacturer notes that I must have .net framework 2.0 to run it.  So I checked and found that I had .Net Framework 1.1, hot fix 1.1, Frame work 2.0 Service pack 1, Framework 3.0 Service Pack 1 and .Net Framework 3.5</p>
<p>So I downloaded and installed .net compact Framework 2.0</p>
<p>The software still doesnt initialize, I still get the 0&#215;000142 error message.<br />
So Here&#8217;s my question,<br />
Which Framework and Or service pack do I need to have?  Which ones do I delete?</p>
<p>Any help would be greatly appreciated<br />
Please answer to my email as well<br />
joshua@joshuamusicministries.org</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/which-net-framework-and-or-service-pack-should-i-keep-installed-on-my-xp-home-edition-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/18 queries in 0.023 seconds using memcached
Object Caching 804/877 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-23 02:31:20 -->