<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx</link><description>Hi Folks - Noticed a little confusion from our blog post yesterday regarding the Windows Update Agent Update availability. Last night's blog post was to give you some lead time before we started rolling out and making our standalone WUA update available.</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Rollout start and client availability | MS Tech News</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3145476</link><pubDate>Sat, 01 Nov 2008 00:44:33 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3145476</guid><dc:creator>Rollout start and client availability | MS Tech News</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://mstechnews.info/2008/10/rollout-start-and-client-availability/"&gt;http://mstechnews.info/2008/10/rollout-start-and-client-availability/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3145650</link><pubDate>Sat, 01 Nov 2008 11:15:53 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3145650</guid><dc:creator>Ottmar Freudenberger</dc:creator><description>&lt;p&gt;The &amp;quot;confusion&amp;quot; has been related on the MSKB articles having been updated with links to download the standaolone of WUA 7.2.6001.788 while the download didn't work (resulting in a 404 not found error). That's fixed now.&lt;/p&gt;
</description></item><item><title>Please help me! My boss is Angry :-( Thanks!</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3146304</link><pubDate>Mon, 03 Nov 2008 13:08:27 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3146304</guid><dc:creator>ATLer</dc:creator><description>&lt;p&gt;hello! I seach Updates both offline(use 'wsusscn2.cab') and inline mode, but i cannot get any download link, please help me, thanks a lot!&lt;/p&gt;
&lt;p&gt;my code:&lt;/p&gt;
&lt;p&gt;LONG GetUpdateCollection(CComPtr&amp;lt;IUpdateSession2&amp;gt;&amp;amp; lpSession, CComPtr&amp;lt;IUpdateCollection&amp;gt;&amp;amp; lpUC, LPCWSTR lpwsSearchPack = NULL)throw(_com_error)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;LONG lCntUpdates = 0;&lt;/p&gt;
&lt;p&gt;CComPtr&amp;lt;IUpdateSearcher&amp;gt; lpSearcher;&lt;/p&gt;
&lt;p&gt;CheckError(lpSession-&amp;gt;CreateUpdateSearcher(&amp;amp;lpSearcher));&lt;/p&gt;
&lt;p&gt;CComPtr&amp;lt;IUpdateServiceManager&amp;gt; lpManager; &lt;/p&gt;
&lt;p&gt;CComPtr&amp;lt;IUpdateService&amp;gt; lpSvc;&lt;/p&gt;
&lt;p&gt;if (NULL != lpwsSearchPack)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;CheckError(lpSearcher-&amp;gt;put_ServerSelection(ssOthers));&lt;/p&gt;
&lt;p&gt;CheckError(lpManager.CoCreateInstance(CLSID_UpdateServiceManager));&lt;/p&gt;
&lt;p&gt;CheckError(lpManager-&amp;gt;AddScanPackageService(SysAllocString(L&amp;quot;Search&amp;quot;), &lt;/p&gt;
&lt;p&gt;SysAllocString(lpwsSearchPack),&lt;/p&gt;
&lt;p&gt;0,&lt;/p&gt;
&lt;p&gt;&amp;amp;lpSvc));&lt;/p&gt;
&lt;p&gt;BSTR bsSvcId = NULL;&lt;/p&gt;
&lt;p&gt;CheckError(lpSvc-&amp;gt;get_ServiceID(&amp;amp;bsSvcId));&lt;/p&gt;
&lt;p&gt;CheckError(lpSearcher-&amp;gt;put_ServiceID(bsSvcId));&lt;/p&gt;
&lt;p&gt;SysFreeString(bsSvcId);&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;CComPtr&amp;lt;ISearchResult&amp;gt; lpSearchResult;&lt;/p&gt;
&lt;p&gt;CheckError(lpSearcher-&amp;gt;Search(SysAllocString(L&amp;quot;AutoSelectOnWebSites = 1 and IsHidden = 0 and IsInstalled = 1&amp;quot;), &amp;amp;lpSearchResult)); &lt;/p&gt;
&lt;p&gt;OperationResultCode rc;&lt;/p&gt;
&lt;p&gt;CheckError(lpSearchResult-&amp;gt;get_ResultCode(&amp;amp;rc));&lt;/p&gt;
&lt;p&gt;if (rc == orcSucceeded)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;CheckError(lpSearchResult-&amp;gt;get_Updates(&amp;amp;lpUC));&lt;/p&gt;
&lt;p&gt;CString str(_T(&amp;quot;Update Info:&amp;quot;));&lt;/p&gt;
&lt;p&gt;CheckError(lpUC-&amp;gt;get_Count(&amp;amp;lCntUpdates));&lt;/p&gt;
&lt;p&gt;if (lCntUpdates &amp;gt; 0)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;// too much item, so get first 6 items &lt;/p&gt;
&lt;p&gt;lCntUpdates = lCntUpdates &amp;gt; 6 ? 6 : lCntUpdates;&lt;/p&gt;
&lt;p&gt;for (LONG l = 0; l &amp;lt; lCntUpdates; ++l)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;CComPtr&amp;lt;IUpdate&amp;gt; lpUpdate;&lt;/p&gt;
&lt;p&gt;CheckError(lpUC-&amp;gt;get_Item(l, &amp;amp;lpUpdate));&lt;/p&gt;
&lt;p&gt;CComBSTR bs = NULL;&lt;/p&gt;
&lt;p&gt;CheckError(lpUpdate-&amp;gt;get_Title(&amp;amp;bs));&lt;/p&gt;
&lt;p&gt;str += _T(&amp;quot;\r\n&amp;quot;);&lt;/p&gt;
&lt;p&gt;str += bs;&lt;/p&gt;
&lt;p&gt;bs.Empty();&lt;/p&gt;
&lt;p&gt;CComPtr&amp;lt;IUpdateDownloadContentCollection&amp;gt; lpDCC;&lt;/p&gt;
&lt;p&gt;CheckError(lpUpdate-&amp;gt;get_DownloadContents(&amp;amp;lpDCC)); &lt;/p&gt;
&lt;p&gt;LONG lDCC = 0;&lt;/p&gt;
&lt;p&gt;CheckError(lpDCC-&amp;gt;get_Count(&amp;amp;lDCC));&lt;/p&gt;
&lt;p&gt;if (lDCC &amp;gt; 0) // i get lDCC == 0 always :(&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;CComPtr&amp;lt;IUpdateDownloadContent&amp;gt; lpDC;&lt;/p&gt;
&lt;p&gt;while (lDCC-- &amp;gt; 0)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;CheckError(lpDCC-&amp;gt;get_Item(0, &amp;amp;lpDC));&lt;/p&gt;
&lt;p&gt;CheckError(lpDC-&amp;gt;get_DownloadUrl(&amp;amp;bs));&lt;/p&gt;
&lt;p&gt;str += _T('\t');&lt;/p&gt;
&lt;p&gt;str += bs;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;str += _T(&amp;quot;\r\n&amp;quot;);&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;AfxMessageBox(str);&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;return lCntUpdates;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3190854</link><pubDate>Fri, 23 Jan 2009 19:59:32 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3190854</guid><dc:creator>hypoteek</dc:creator><description>&lt;p&gt;Jipiiiee , this is great for me. Now im a new happy man with clean software.&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3194329</link><pubDate>Thu, 29 Jan 2009 16:14:25 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3194329</guid><dc:creator>sixpack_li</dc:creator><description>&lt;p&gt;To the team, I have the latest standalone Windows Update Client package EXE file version 7.2.6001.788. &lt;/p&gt;
&lt;p&gt;Now how do I update the WSUS Self-Update tree with this latest version? &lt;/p&gt;
&lt;p&gt;We need Automatic Updates to update itself with the latest Windows Update Client version 7.2.6001.788.&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3256509</link><pubDate>Fri, 19 Jun 2009 05:52:23 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3256509</guid><dc:creator>FLV to MP3</dc:creator><description>&lt;p&gt;This is old news, but if you have the old software it is still usefull for me.&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3259214</link><pubDate>Sat, 27 Jun 2009 14:33:56 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3259214</guid><dc:creator>web tasarım</dc:creator><description>&lt;p&gt;The information given to us, thank you for lighting&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3266763</link><pubDate>Tue, 21 Jul 2009 17:35:49 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3266763</guid><dc:creator>Discount Voucher</dc:creator><description>&lt;p&gt;Extremely glad I happened upon this page. Problem solved - you have my appreciation.&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3267441</link><pubDate>Thu, 23 Jul 2009 14:06:39 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3267441</guid><dc:creator>güvenlik sistemleri</dc:creator><description>&lt;p&gt;provide useful information, thank you very much super you will have worked&lt;/p&gt;
</description></item><item><title>web tasarım </title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3272108</link><pubDate>Mon, 10 Aug 2009 17:51:11 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3272108</guid><dc:creator>web tasarım</dc:creator><description>&lt;p&gt;thank you &lt;a rel="nofollow" target="_new" href="http://www.parcakontorbayiniz.com"&gt;http://www.parcakontorbayiniz.com&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3276582</link><pubDate>Tue, 25 Aug 2009 09:17:21 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3276582</guid><dc:creator>Bariyer</dc:creator><description>&lt;p&gt;Commenting on a friend gave me code my room has truly been helpful thank you, thank you write&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3292672</link><pubDate>Tue, 10 Nov 2009 07:03:33 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3292672</guid><dc:creator>matbaa</dc:creator><description>&lt;p&gt;Thank you for informing us all of you with all respect&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3297048</link><pubDate>Sun, 29 Nov 2009 21:31:46 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3297048</guid><dc:creator>web-tasarım</dc:creator><description>&lt;p&gt;Introducing such a topic you'd like to congratulate you've let us know. Have good work&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3298499</link><pubDate>Fri, 04 Dec 2009 22:31:39 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3298499</guid><dc:creator>Cember makinası</dc:creator><description>&lt;p&gt;Thanks MU Blog is super&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3298744</link><pubDate>Mon, 07 Dec 2009 00:15:43 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3298744</guid><dc:creator>mantolama</dc:creator><description>&lt;p&gt;issue into the hands of people has been helpful my job as it help me thank&lt;/p&gt;
</description></item><item><title>re: Rollout start and client availability</title><link>http://blogs.technet.com/mu/archive/2008/10/31/rollout-start-and-client-availability.aspx#3298817</link><pubDate>Mon, 07 Dec 2009 09:04:35 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3298817</guid><dc:creator>otomatik kapı</dc:creator><description>&lt;p&gt;Thank you friend codes in comments which help me a lot of work has&lt;/p&gt;
</description></item></channel></rss>