<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://wmug.co.uk/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>Eswar Koneti's Blog</title><link>http://wmug.co.uk/wmug/b/eskonr/default.aspx</link><description>Blog about Configmgr and Virtualization</description><dc:language>en-US</dc:language><generator>6.x Production</generator><item><title>Awarded as Microsoft Community Contributor for 2011</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2011/02/17/awarded_2D00_as_2D00_microsoft_2D00_community_2D00_contributor_2D00_for_2D00_2011.aspx</link><pubDate>Thu, 17 Feb 2011 08:16:00 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:4091</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=4091</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2011/02/17/awarded_2D00_as_2D00_microsoft_2D00_community_2D00_contributor_2D00_for_2D00_2011.aspx#comments</comments><description>&lt;p&gt;Today morning I step into office and just checked my mails .I saw mail from microsoftcommunitycontributor saying&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;Dear Eswar Raju,        &lt;br /&gt;Congratulations! We’re pleased to inform you that your contributions to Microsoft online technical communities have been recognized with the Microsoft Community Contributor Award.&lt;/strong&gt; &lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;I should thank to all who has given me the support especially to Ymsen Marcus and Niall Brady.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=4091&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>How to Trigger SCCM Machine policy or Hardware inventory action agent on remote computers</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2011/01/12/how_2D00_to_2D00_trigger_2D00_sccm_2D00_machine_2D00_policy_2D00_or_2D00_hardware_2D00_inventory_2D00_action_2D00_agent_2D00_on_2D00_remote_2D00_computers.aspx</link><pubDate>Wed, 12 Jan 2011 05:40:13 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:4013</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=4013</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2011/01/12/how_2D00_to_2D00_trigger_2D00_sccm_2D00_machine_2D00_policy_2D00_or_2D00_hardware_2D00_inventory_2D00_action_2D00_agent_2D00_on_2D00_remote_2D00_computers.aspx#comments</comments><description>&lt;p&gt;There are lot of tools available like SCCM client center or Collection commander or Right Click Tools etc. to trigger SCCM client agent Actions using these tools but the customer environment doesn’t have any of these tools to use and we had a requirement to run the machine policy and other actions items as well.&lt;/p&gt;  &lt;p&gt;I have used the below script to run(ex:Machine policy and evaluation cycle or hardware inventory action etc) on a list of computers that you have supplied in notepad.txt using psexec tool.The script reset the hardware inventory action and deletes the instance before running hardware inventory.&lt;/p&gt;  &lt;p&gt;What do you require to carry out this task: A Share folder(create one) ,&lt;a href="http://technet.microsoft.com/en-us/sysinternals/bb897553" target="_blank"&gt;Psexec tool&lt;/a&gt;, Vb script(below) and batch script(below).&lt;/p&gt;  &lt;p&gt;Open a notepad,copy the below code and save as &lt;strong&gt;trigger_policy.vbs.&lt;/strong&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;&amp;#39;Declare Variables        &lt;br /&gt;&lt;/strong&gt;On Error Resume Next       &lt;br /&gt;Set sho = CreateObject(&amp;quot;WScript.Shell&amp;quot;)       &lt;br /&gt;strSystemRoot = sho.expandenvironmentstrings(&amp;quot;%SystemRoot%&amp;quot;)       &lt;br /&gt;strCurrentDir = Left(Wscript.ScriptFullName, (InstrRev(Wscript.ScriptFullName, &amp;quot;\&amp;quot;) -1))       &lt;br /&gt;&amp;#39; &lt;strong&gt;Get a connection to the &amp;quot;root\ccm\invagt&amp;quot; namespace (where the Inventory agent lives)        &lt;br /&gt;&lt;/strong&gt;Dim oLocator       &lt;br /&gt;Set oLocator = CreateObject(&amp;quot;WbemScripting.SWbemLocator&amp;quot;)       &lt;br /&gt;Dim oServices       &lt;br /&gt;Set oServices = oLocator.ConnectServer( , &amp;quot;root\ccm\invagt&amp;quot;)       &lt;br /&gt;&lt;strong&gt;&amp;#39;Reset SMS Hardware Inventory Action to force a full HW Inventory Action        &lt;br /&gt;&lt;/strong&gt;sInventoryActionID = &amp;quot;{00000000-0000-0000-0000-000000000001}&amp;quot;       &lt;br /&gt;&amp;#39;&lt;strong&gt; Delete the specified InventoryActionStatus instance        &lt;br /&gt;&lt;/strong&gt;oServices.Delete &amp;quot;InventoryActionStatus.InventoryActionID=&amp;quot;&amp;quot;&amp;quot; &amp;amp; sInventoryActionID &amp;amp; &amp;quot;&amp;quot;&amp;quot;&amp;quot;       &lt;br /&gt;&lt;strong&gt;&amp;#39;Pause 3 seconds To allow the action to complete.        &lt;br /&gt;&lt;/strong&gt;wscript.sleep 3000       &lt;br /&gt;&lt;strong&gt;&amp;#39;Run a SMS Hardware Inventory        &lt;br /&gt;&lt;/strong&gt;Set cpApplet = CreateObject(&amp;quot;CPAPPLET.CPAppletMgr&amp;quot;)       &lt;br /&gt;Set actions = cpApplet.GetClientActions       &lt;br /&gt;For Each action In actions       &lt;br /&gt;If Instr(action.Name,&amp;quot;Hardware Inventory&amp;quot;) &amp;gt; 0 Then       &lt;br /&gt;action.PerformAction       &lt;br /&gt;End If       &lt;br /&gt;Next&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;since the above script you have created is to trigger &lt;strong&gt;hardware inventory action&lt;/strong&gt;,You will have all the Actions ID given below for each.&lt;/p&gt;  &lt;ul&gt;   &lt;ul&gt;     &lt;li&gt;Hardware Inventory – 00000000-0000-0000-0000-000000000001 &lt;/li&gt;      &lt;li&gt;Software Inventory – 00000000-0000-0000-0000-000000000002 &lt;/li&gt;      &lt;li&gt;Data Discovery – 00000000-0000-0000-0000-000000000003 &lt;/li&gt;      &lt;li&gt;Machine Policy Assignment Request – 00000000-0000-0000-0000-000000000021 &lt;/li&gt;      &lt;li&gt;Machine Policy Evaluation – 00000000-0000-0000-0000-000000000022 &lt;/li&gt;      &lt;li&gt;Refresh Default Management Point – 00000000-0000-0000-0000-000000000023 &lt;/li&gt;      &lt;li&gt;Refresh Location (AD site or Subnet) – 00000000-0000-0000-0000-000000000024 &lt;/li&gt;      &lt;li&gt;Software Metering Usage Reporting – 00000000-0000-0000-0000-000000000031 &lt;/li&gt;      &lt;li&gt;Source list Update Cycle – 00000000-0000-0000-0000-000000000032 &lt;/li&gt;      &lt;li&gt;Refresh proxy management point – 00000000-0000-0000-0000-000000000037 &lt;/li&gt;      &lt;li&gt;Cleanup policy – 00000000-0000-0000-0000-000000000040 &lt;/li&gt;      &lt;li&gt;Validate assignments – 00000000-0000-0000-0000-000000000042 &lt;/li&gt;      &lt;li&gt;Certificate Maintenance – 00000000-0000-0000-0000-000000000051 &lt;/li&gt;      &lt;li&gt;Branch DP Scheduled Maintenance – 00000000-0000-0000-0000-000000000061 &lt;/li&gt;      &lt;li&gt;Branch DP Provisioning Status Reporting – 00000000-0000-0000-0000-000000000062 &lt;/li&gt;      &lt;li&gt;Software Update Deployment – 00000000-0000-0000-0000-000000000108 &lt;/li&gt;      &lt;li&gt;State Message Upload – 00000000-0000-0000-0000-000000000111 &lt;/li&gt;      &lt;li&gt;State Message Cache Cleanup – 00000000-0000-0000-0000-000000000112 &lt;/li&gt;      &lt;li&gt;Software Update Scan – 00000000-0000-0000-0000-000000000113 &lt;/li&gt;      &lt;li&gt;Software Update Deployment Re-eval – 00000000-0000-0000-0000-000000000114 &lt;/li&gt;      &lt;li&gt;OOBS Discovery – 00000000-0000-0000-0000-000000000120 &lt;/li&gt;   &lt;/ul&gt; &lt;/ul&gt;  &lt;p&gt;Again,open notepad and copy the below code into it and save as &lt;strong&gt;name.bat&lt;/strong&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;@Echo off      &lt;br /&gt;REM Initiating Hardware inventory agent action       &lt;br /&gt;cd d:\script       &lt;br /&gt;d:       &lt;br /&gt;psexec @computers.txt -c &lt;a&gt;\\Servername\actions\trigger_policy.vbs&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;Exit      &lt;br /&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Now run the batch script which you created above from either command prompt or directly from folder.&lt;/p&gt;  &lt;p&gt;Hope it helps someone who doesn’t use the automated tools.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=4013&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description><category domain="http://wmug.co.uk/wmug/b/eskonr/archive/tags/Troubleshooting+Tips/default.aspx">Troubleshooting Tips</category></item><item><title>SCCM Report to list Computers with IP address with their Subnets from Given Collection</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2010/12/15/sccm_2D00_report_2D00_to_2D00_list_2D00_computers_2D00_with_2D00_ip_2D00_address_2D00_with_2D00_their_2D00_subnets_2D00_from_2D00_given_2D00_collection.aspx</link><pubDate>Wed, 15 Dec 2010 07:04:30 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:3967</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=3967</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2010/12/15/sccm_2D00_report_2D00_to_2D00_list_2D00_computers_2D00_with_2D00_ip_2D00_address_2D00_with_2D00_their_2D00_subnets_2D00_from_2D00_given_2D00_collection.aspx#comments</comments><description>&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Below is the report to list computers with IP address and Subnet information from Given collection.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;select distinct A.Name0,c.IPAddress0 ,D.IP_Subnets0 from v_R_System A inner join      &lt;br /&gt;v_FullCollectionMembership B on A.ResourceID=B.ResourceID       &lt;br /&gt;Inner join v_GS_NETWORK_ADAPTER_CONFIGUR&amp;#160; C ON A.ResourceID=C.ResourceID       &lt;br /&gt;Inner Join v_RA_System_IPSubnets D ON A.ResourceID=D.ResourceID       &lt;br /&gt;where CollectionID=@COLLID and C.IPEnabled0=&amp;#39;1&amp;#39;       &lt;br /&gt;group by A.Name0,c.IPAddress0 ,D.IP_Subnets0       &lt;br /&gt;order by A.Name0,c.IPAddress0 ,D.IP_Subnets0&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Prompt for Collection : &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Select CollectionID,Name from v_Collection&lt;/p&gt;&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=3967&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description><category domain="http://wmug.co.uk/wmug/b/eskonr/archive/tags/Reports/default.aspx">Reports</category></item><item><title>Microsoft Enterprise Desktop Virtualization(MED) v2 Release Candidate is now available for download</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2010/12/11/microsoft_2D00_enterprise_2D00_desktop_2D00_virtualizationmed_2D00_v2_2D00_release_2D00_candidate_2D00_is_2D00_now_2D00_available_2D00_for_2D00_download.aspx</link><pubDate>Sat, 11 Dec 2010 01:35:00 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:3958</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=3958</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2010/12/11/microsoft_2D00_enterprise_2D00_desktop_2D00_virtualizationmed_2D00_v2_2D00_release_2D00_candidate_2D00_is_2D00_now_2D00_available_2D00_for_2D00_download.aspx#comments</comments><description>&lt;p&gt;The Microsoft Enterprise Desktop Virtualization v2 Beta Refresh is now available for download on the Microsoft Connect site. The updated software provides fixes to customer reported issues and new features including Workspace packager updates which add additional options for customizing the MED-V computer names.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;NOTE:&lt;/em&gt;&lt;/strong&gt;&amp;nbsp; The&amp;nbsp;MED-V_HostAgent_setup.exe replaces the MED-V client install MSI and the MED-V_WorkspacePackager_setup.exe replaces the MED-V console install MSI. &amp;nbsp;&amp;nbsp;This change simplifies the install and deployment of these components as they now detect install the correct architecture in a single install.&amp;nbsp; All of the command line options provided for the MSI&amp;rsquo;s in the previous installs are still supported for these installers.&amp;rdquo;&lt;/p&gt;

&lt;div style="text-align:center;margin:10px 0px;float:none;"&gt;
&lt;script type="text/javascript"&gt;&lt;/script&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;/div&gt;
&lt;p&gt;The Guest Agent MSI no longer has to be installed by the administrator on the Windows XP image. The Guest Agent is now installed automatically as part of first time setup. For more information see the MED-V Release Candidate Release Notes.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Please read the release notes for important information about upgrading and the rename of the MED-V Installers.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Release Candidate&amp;nbsp;Release Notes&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="https://connect.microsoft.com/medv/content/content.aspx?ContentID=23311"&gt;&lt;strong&gt;&lt;span style="color:#536d88;"&gt;https://connect.microsoft.com/medv/content/content.aspx?ContentID=23311&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Download Release Candidate software&amp;nbsp;&amp;nbsp;:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://connect.microsoft.com/medv/Downloads/DownloadDetails.aspx?DownloadID=32936"&gt;&lt;strong&gt;&lt;span style="color:#536d88;"&gt;http://connect.microsoft.com/medv/Downloads/DownloadDetails.aspx?DownloadID=32936&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=3958&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description><category domain="http://wmug.co.uk/wmug/b/eskonr/archive/tags/Windows+News/default.aspx">Windows News</category></item><item><title>SCCM report to list all the advertisement that are currently assigned to computer</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2010/12/09/sccm_2D00_report_2D00_to_2D00_list_2D00_all_2D00_the_2D00_advertisement_2D00_that_2D00_are_2D00_currently_2D00_assigned_2D00_to_2D00_computer.aspx</link><pubDate>Thu, 09 Dec 2010 00:42:00 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:3954</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=3954</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2010/12/09/sccm_2D00_report_2D00_to_2D00_list_2D00_all_2D00_the_2D00_advertisement_2D00_that_2D00_are_2D00_currently_2D00_assigned_2D00_to_2D00_computer.aspx#comments</comments><description>&lt;p&gt;When you assign any advertisement (either application or Task sequence) to collection(Group of computers) ,all the advertisement will be tracked(logged) in SCCM Database with its status and other details.The advertisement will run on the computer and gives the status of it which can be find Via Default reports &amp;ldquo;&lt;strong&gt;All advertisement for specific computer(Report ID:126)&amp;rdquo;.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;What ,if you move the advertisement to different different collection where the computers(which you advertised above) are not part of this collection and you want to track all the advertisements that are currently assigned to specific computer.&lt;/p&gt;
&lt;p&gt;You can get this currently assigned advertisements by simply Right click on computer---&amp;gt;properties---&amp;gt;Advertisements Tab (its list only currently assigned ones) but how about the status and what is the package name and program name etc. details.&lt;/p&gt;
&lt;p&gt;Do you use the default report(126) ? No,because it will gives you all the advertisements that are assigned to computer but not current advertisements assigned to it (computer) since it uses View called &lt;strong&gt;V_advertisement&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Below is the report to fetch the list of current advertisements assigned to computer with other information added to it.You can still apply the same to collection instead of specific computer as well.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;SELECT distinct dv.AdvertisementName,stat.LastStateName,adv.AdvertisementID,pkg.PackageID,adv.ProgramName from v_Advertisement adv &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; inner join v_FullCollectionMembership FCM ON FCM.CollectionID=adv.CollectionID &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Inner join v_CurrentAdvertisementAssignments CADV ON CADV.AdvertisementID=adv.AdvertisementID &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; inner join v_Package pkg ON pkg.PackageID=adv.PackageID &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; JOIN v_ClientAdvertisementStatus stat ON stat.AdvertisementID = adv.AdvertisementID &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; where &lt;a href="mailto:FCM.Name=@computer"&gt;FCM.Name=@computer&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;Prompt for &lt;strong&gt;computer: Select name from V_R_system&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;If you use the prompt value for computer,it might take some time to display all the computer from Database if you have more than 1000 computers instead,you can specify the computer name directly in Query before you run the report.&lt;/p&gt;
&lt;p&gt;Hope it helps you&amp;nbsp;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=3954&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description><category domain="http://wmug.co.uk/wmug/b/eskonr/archive/tags/Reports/default.aspx">Reports</category></item><item><title>Report for computers which has their(Next) Maintenance Window settings in SCCM</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/26/maintenance_2D00_window_2D00_for_2D00_computers_2D00_in_2D00_sccm.aspx</link><pubDate>Fri, 26 Nov 2010 09:22:00 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:3944</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=3944</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/26/maintenance_2D00_window_2D00_for_2D00_computers_2D00_in_2D00_sccm.aspx#comments</comments><description>&lt;p&gt;Here is another report today ,to list all the computers with their &lt;a target="_blank" href="http://technet.microsoft.com/en-us/library/bb694295.aspx"&gt;maintenance window&lt;/a&gt; setting and are part of which collection.&lt;/p&gt;
&lt;p&gt;The maintenance window information( collection ID,Description,time etc.) is available from SQL view called &lt;strong&gt;v_ServiceWindow.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Below is the report to display all the computer with their maintenance window settings .You can also limit this collection to specific with the help of Prompts.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;select &lt;br /&gt;v_FullCollectionMembership.Name as Computername ,v_Collection.Name as CollectionName, &lt;br /&gt;v_ServiceWindow.Description as &amp;ldquo;Next Maintanance Window&amp;rdquo; &lt;br /&gt;from v_ServiceWindow &lt;br /&gt;inner join v_FullCollectionMembership on (v_FullCollectionMembership.CollectionID = v_ServiceWindow.CollectionID) &lt;br /&gt;inner join v_Collection on (v_Collection.CollectionID = v_FullCollectionMembership.CollectionID) &lt;br /&gt;order By v_Collection.Name&lt;/p&gt;
&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=3944&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description><category domain="http://wmug.co.uk/wmug/b/eskonr/archive/tags/Reports/default.aspx">Reports</category></item><item><title>Report for computers where the discovery agent time is older than 30 days</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/25/report_2D00_for_2D00_computers_2D00_where_2D00_the_2D00_discovery_2D00_agent_2D00_time_2D00_is_2D00_older_2D00_than_2D00_30_2D00_days.aspx</link><pubDate>Thu, 25 Nov 2010 16:51:52 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:3943</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=3943</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/25/report_2D00_for_2D00_computers_2D00_where_2D00_the_2D00_discovery_2D00_agent_2D00_time_2D00_is_2D00_older_2D00_than_2D00_30_2D00_days.aspx#comments</comments><description>&lt;p&gt;Report to list all the computer where the discovery agent time shows older than 30 days.&lt;/p&gt;  &lt;p&gt;This you can find out if you right click on the computer ,go to properties and see &lt;strong&gt;Agent name[0]&lt;/strong&gt; (ex:SMS_AD_SYSTEM_DISCOVERY) respect to &lt;strong&gt;Agent time[0]&lt;/strong&gt; for the above discovery method which will be the recent date.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;select a.Name0,b.AgentName,b.AgentTime from v_R_System a      &lt;br /&gt;join v_AgentDiscoveries b on b.ResourceId=a.ResourceId where       &lt;br /&gt;(AgentName&amp;#160; like &amp;#39;Heartbeat Discovery&amp;#39; and DATEDIFF(Day,AgentTime,Getdate())&amp;gt;=30 ) OR       &lt;br /&gt;(AgentName&amp;#160; like &amp;#39;SMS_AD_SYSTEM_DISCOVERY_AGENT&amp;#39; and DATEDIFF(Day,AgentTime,Getdate())&amp;gt;=30 )&lt;/p&gt;    &lt;p&gt;group by name0 ,agentname,AgentTime&lt;/p&gt;    &lt;p&gt;Order by Agentname&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;You can add other discovery methods if you enabled in your site to the above report.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=3943&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>List of Advertisement Status Message IDs with its Description</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/25/list-of-advertisement-status-message-ids-with-its-description.aspx</link><pubDate>Thu, 25 Nov 2010 02:10:00 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:3942</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=3942</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/25/list-of-advertisement-status-message-ids-with-its-description.aspx#comments</comments><description>&lt;p&gt;Today,I come across several advertisement status message IDs for a particular advertisement which can be viewed under system status---&amp;gt;advertisement status.&lt;/p&gt;
&lt;p&gt;I,Thought of sharing the excel sheet with you about all the advertisement status message ID&amp;rsquo;s with its description along with. This might be helpful in creating reports or collections with status message ID&amp;rsquo;s.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=3942&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description><enclosure url="http://wmug.co.uk/cfs-file.ashx/__key/telligent-evolution-components-attachments/01-119-00-00-00-00-39-42/All-Advertisement-Staus-message-ID_26002300_39_3B00_s-with-its-Discription.zip" length="12959" type="application/x-zip-compressed" /><category domain="http://wmug.co.uk/wmug/b/eskonr/archive/tags/Advertisement+Staus+Message+ID_2700_s/default.aspx">Advertisement Staus Message ID's</category></item><item><title>SCCM collection to list all the Laptop computers</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/16/sccm_2D00_collection_2D00_to_2D00_list_2D00_all_2D00_the_2D00_laptop_2D00_computers.aspx</link><pubDate>Tue, 16 Nov 2010 13:13:13 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:3920</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=3920</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/16/sccm_2D00_collection_2D00_to_2D00_list_2D00_all_2D00_the_2D00_laptop_2D00_computers.aspx#comments</comments><description>&lt;p&gt;If your boss ask to get list of laptops which are managed by SMS or SCCM.what do you do and how do you get that. Right click on computer and go to resource explorer to identify the computer is Laptop or Desktop ?&lt;/p&gt;  &lt;p&gt;You can identify if the computer is Laptop or Desktop based on its chassis Types.&lt;/p&gt;  &lt;p&gt;Below are listed the Chassis types available to create SCCM collection or reports.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;For Laptops Chassis Types :&lt;/strong&gt; 8 , 9, 10, 11, 12, 14, 18, 21&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;For Desktop Chassis Type : &lt;/strong&gt;3, 4, 5, 6, 7, 15, 16&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;For server Chassis&amp;#160; Type: &lt;/strong&gt;23&lt;/p&gt;  &lt;p&gt;Below is the collection to list all the computers which are laptops which fall in above Chassis type. All these values are from SQL table called &lt;strong&gt;SMS_G_System_SYSTEM_ENCLOSURE&lt;/strong&gt; .If you are looking to create SCCM report,you can create using Views(&lt;strong&gt;v_GS_SYSTEM_ENCLOSURE&lt;/strong&gt;).&lt;/p&gt;  &lt;p&gt;You can also replace the values with Desktop computers or servers also you can use joins to club these with AD groups for deploying the applications based on this.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;select SMS_R_System.ResourceId, SMS_R_System.ResourceType, SMS_R_System.Name, SMS_R_System.SMSUniqueIdentifier, SMS_R_System.ResourceDomainORWorkgroup, SMS_R_System.Client from&amp;#160; SMS_R_System inner join SMS_G_System_SYSTEM_ENCLOSURE on SMS_G_System_SYSTEM_ENCLOSURE.ResourceID = SMS_R_System.ResourceId where SMS_G_System_SYSTEM_ENCLOSURE.ChassisTypes in ( &amp;quot;8&amp;quot;, &amp;quot;9&amp;quot;, &amp;quot;10&amp;quot;, &amp;quot;11&amp;quot;, &amp;quot;12&amp;quot;, &amp;quot;14&amp;quot;, &amp;quot;18&amp;quot;, &amp;quot;21&amp;quot; )&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Here are some sample reports/queries available which you can make use of it &lt;/p&gt;  &lt;p&gt;&lt;a href="http://myitforum.com/cs2/blogs/snorman/archive/2007/09/18/count-of-chassis-types-by-collection.aspx"&gt;http://myitforum.com/cs2/blogs/snorman/archive/2007/09/18/count-of-chassis-types-by-collection.aspx&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=3920&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>SMS/SCCM Clients installation Troubleshooting Check list</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/16/smssccm_2D00_clients_2D00_installation_2D00_troubleshooting_2D00_check_2D00_list.aspx</link><pubDate>Tue, 16 Nov 2010 02:01:00 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:3919</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=3919</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/16/smssccm_2D00_clients_2D00_installation_2D00_troubleshooting_2D00_check_2D00_list.aspx#comments</comments><description>&lt;p&gt;Seen Lot of questions/helps in many forums on the SCCM client issues like client is not reported to SCCM console ,site code unsuccessful, Client is installed but Console shows NO and many more.&lt;/p&gt;
&lt;p&gt;Here is the check list which i have prepared to follow in brief .There may be other issues which are not mentioned here but mostly, issues lies under the below conditions.&lt;/p&gt;
&lt;p&gt;There are a variety of &lt;a target="_blank" href="http://technet.microsoft.com/en-us/library/bb694166.aspx"&gt;Client deployment methods&lt;/a&gt; that are available to you when installing the client. Each has its &lt;a target="_blank" href="http://technet.microsoft.com/en-us/library/bb694166.aspx"&gt;advantages and disadvantages&lt;/a&gt; along with the need to meet specific business requirements. &lt;/p&gt;
&lt;p&gt;If you choose to go SCCM client push installation method, Ensure you have created Client push installation account which should have Admin rights on the target computer else it may fail .Client push installation Step by Step Guide is here &lt;a href="http://technet.microsoft.com/en-us/library/bb632380.aspx" title="http://technet.microsoft.com/en-us/library/bb632380.aspx"&gt;http://technet.microsoft.com/en-us/library/bb632380.aspx&lt;/a&gt; and with Screen shots how to configure from &lt;a target="_blank" href="http://www.windows-noob.com/forums/index.php?/topic/491-how-can-i-configure-sccm-2007-sp1-in-windows-server-2008/"&gt;Windows-Noob&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Once you initiated the Client push installation from SCCM console( right click on computer,say install client etc ),you can start monitoring CCM.log from your &lt;strong&gt;&amp;lt;SCCM installation folder:&amp;gt;\Logs&lt;/strong&gt;. For more info on how SCCM client push installation works,please refer &lt;a target="_blank" href="http://eskonr.wordpress.com/2010/11/12/how-to-troubleshoot-advanced-client-push-installation-issues-in-systems-management-server-2003-and-system-center-configuration-manager-2007/"&gt;this article&lt;/a&gt; for process and troubleshooting .&lt;/p&gt;
&lt;p&gt;The procedure&amp;nbsp; is same what ever the installation method you choose.The CCMSETUP.EXE will be downloaded to the system (c:\windows\system32\ccmsetup) and is executed. The ccmsetup.exe reads the manifest file (and also mobileclient.tcf) and fetches the remaining files(&lt;a target="_blank" href="http://technet.microsoft.com/en-us/library/bb680537.aspx"&gt;prerequisites files&lt;/a&gt; listed below ) to continue the client installation.&lt;/p&gt;
&lt;h5&gt;&lt;strong&gt;Some of the components that are used in the client deployment process include the following:&lt;/strong&gt;&lt;/h5&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&amp;bull; &lt;strong&gt;CCMSetup.exe:&lt;/strong&gt; Used to Install, uninstall and upgrade the SCCM 2007 client using client push installation or manual installation. It is low bandwidth aware and is the single way to launch client deployment. You also do not need to use CCMClean to uninstall the client as the uninstall switch can be used instead. &lt;br /&gt;&amp;bull; &lt;strong&gt;BITS:&lt;/strong&gt; BITS 2.0 is required for Windows 2000 clients. BITS 2.5 is used for most of the Windows operating systems with the exception of Windows Vista which uses BITS 3.0. &lt;br /&gt;&lt;strong&gt;Note:&lt;/strong&gt; When installing BITS 2.0 on Windows 2000 SP4 machines, a restart is required. This means that if you do not have BITS 2.0, then ccmsetup will stop the install and wait until the next process of reboot before it starts the next process. &lt;br /&gt;&amp;bull; &lt;strong&gt;Microsoft Windows Installer v3.1 v2 (KB 893803):&lt;/strong&gt; Update to all operating systems except Windows Server 2003 SP1 and later &lt;br /&gt;&amp;bull; Windows Update Agent (WUA) version 7.0.6000.363: Used on clients to support detection of applicable updates and deployment &lt;br /&gt;&amp;bull; &lt;strong&gt;MSXML6.msi&lt;/strong&gt; - Windows installer script for installing the Core XML Services &lt;br /&gt;&amp;bull; &lt;strong&gt;MSRDC (Remote Differential Compression):&lt;/strong&gt; Required for branch DP to support binary differential replication. For more information on binary differential replication, please visit &lt;a href="http://technet.microsoft.com/en-us/library/bb693953.aspx%20"&gt;http://technet.microsoft.com/en-us/library/bb693953.aspx &lt;/a&gt;. &lt;br /&gt;Regarding windows 2000 clients, they don&amp;#39;t support MSRDC, so Windows 2000 clients cannot be branch DP&amp;rsquo;s. Windows XP and later will install this utility and the associated windows server code will be used to install the bits. &lt;br /&gt;&amp;bull; &lt;strong&gt;Wimgapi.msi:&lt;/strong&gt; Imaging API for custom tools for image management &lt;br /&gt;&amp;bull; &lt;strong&gt;CCMSetup.msi:&lt;/strong&gt; Windows installer package for deploying of the SCCM 2007 client using AD GPO. You cannot run CCMSetup.msi to install clients manually.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;You can monitor &lt;strong&gt;CCMSETUP.LOG&lt;/strong&gt; ,&lt;strong&gt;CLIENTMSI.LOG&lt;/strong&gt; from your ccmsetup folder. It will take few min to complete the installation .Once you see, &lt;strong&gt;client installation succeeded,&lt;/strong&gt;You may confirm that,installation is done but it doesn&amp;#39;t mean,client is healthy and able to receive policies /send information to Management Point.&lt;/p&gt;
&lt;p&gt;Below are the SMS Related services which&amp;nbsp;should (applicability depends on the&amp;nbsp;client perform actions&amp;nbsp;let say BITS is not used when you&amp;nbsp;run the Application&amp;nbsp;from DP)&amp;nbsp;be running&amp;nbsp;on the Client to be healthy all the time..&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Automatic Updates &lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Background intelligence Transfer service&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Remote Registry&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;SMS agent Host&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Terminal Services&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Windows Installer&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Windows Management Instrumentation&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;To know if the client is healthy and able to send /receive polcicies /able to talk to Management point or not ,there are few Log files which you should look into:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;CCMSETUP.LOG&lt;/strong&gt;-----&amp;gt;Logs the Client installation activities&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ClientLocation.log&lt;/strong&gt;----&amp;gt;&amp;nbsp; Records site assignment tasks. Can help to troubleshoot scenarios where the client is not assigned to a Configuration Manager 2007 site.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;LocationServices.log&lt;/strong&gt;---&amp;gt; Records attempts to find management points and distribution points.Can help to troubleshoot scenarios where the client cannot find a management point or distribution point.&lt;/p&gt;
&lt;p&gt;AND open the configuration manager Applet from control Panel and go to actions tab,check if you are able to if you are able to see more than 5 policy agents displaying or not which means that client is healthy and sent its inventory information to SCCM site server. You should be able to see the Client with SCCM client &lt;strong&gt;Installed&lt;/strong&gt; and assigned &lt;strong&gt;Yes&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wmug.co.uk/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-07-metablogapi/Agents_5F00_0AED26FF.jpg"&gt;&lt;img height="484" width="431" src="http://wmug.co.uk/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-00-07-metablogapi/Agents_5F00_thumb_5F00_40A26C59.jpg" alt="Agents" border="0" title="Agents" style="border-right-width:0px;display:block;float:none;border-top-width:0px;border-bottom-width:0px;margin-left:auto;border-left-width:0px;margin-right:auto;" /&gt;&lt;/a&gt; more information about&amp;nbsp; SCCM client log files,please refer &lt;a target="_blank" href="http://technet.microsoft.com/en-us/library/bb693897.aspx"&gt;TechNet&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Now its time to do the actual troubleshooting why client is not getting the above policy agents or not reported to SCCM console with Client &lt;strong&gt;YES&lt;/strong&gt; and Installed &lt;strong&gt;YES&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;1.&lt;/strong&gt;Check the Firewall Enabled or Disabled if enabled,allow the &lt;a target="_blank" href="http://support.microsoft.com/kb/826852"&gt;ports&lt;/a&gt; to talk to site server.&lt;a target="_blank" href="http://eskonr.wordpress.com/2009/07/20/how-to-allow-smssccm-to-take-remote-control-though-firewall-in-on/"&gt;Guide to add Ports to the firewall&lt;/a&gt; to allow the required files or policies to download.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2.&lt;/strong&gt;Check Boundaries (could be (AD site or IP Range or IP Subnet) of the Agent are specified in the site server&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3.&lt;/strong&gt;Schema extension and ensure attributes published into AD system management container (you can see component status if there are any errors while updating the system Management container with attributes)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4.&lt;/strong&gt;Check the if there no DNS issue in the client and that client is able to resolve the SCCM server NetBIOS as well as FQDN without any issues.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5.&lt;/strong&gt; Check if the Client is able to talk to Management Point or not using the following Links.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://&amp;lt;SCCM_SERVER/SMS_MP/.sms_aut?mplist"&gt;http://&amp;lt;SCCM_SERVER/SMS_MP/.sms_aut?mplist&lt;/a&gt; ----should give you blank page&lt;/p&gt;
&lt;p&gt;&lt;a href="http://&amp;lt;SCCM_SERVER/SMS_MP/.sms_aut?mpcert------should"&gt;http://&amp;lt;SCCM_SERVER/SMS_MP/.sms_aut?mpcert------should&lt;/a&gt; give you some random numbers&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;6.&lt;/strong&gt;Check if WMI is working or not if not try repairing the WMI by stopping WMI service and renaming repository folder (C:\Windows\System32\wbem) and start the service.&lt;/p&gt;
&lt;p&gt;If the above test fails make sure that MP is working fine. You can check mpcontrol.log on the site server to find the error and make sure that the same works.&lt;/p&gt;
&lt;p&gt;4.Check the Locationservices.log( Finds management points and distribution points) and clientlocation.log( Site assignment tasks) and ClientIDManagerStartup.log(Creates and maintains the client GUID)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;If you see anything apart from the above discussed,you may can post the query on&amp;nbsp;&amp;nbsp;SCCM forums also &lt;strong&gt;I would like to hear from you if i miss anything from above steps.&lt;/strong&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://wmug.co.uk/aggbug.aspx?PostID=3919&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description><category domain="http://wmug.co.uk/wmug/b/eskonr/archive/tags/Troubleshooting+Tips/default.aspx">Troubleshooting Tips</category></item><item><title>collection Query/ Report to get computer Model/Serial Number for a given computer</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/10/query-report-to-get-computer-model-serial-number-for-a-given-computer.aspx</link><pubDate>Wed, 10 Nov 2010 09:33:30 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:3897</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=3897</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/10/query-report-to-get-computer-model-serial-number-for-a-given-computer.aspx#comments</comments><description>&lt;p&gt;Create a New report and paste the below query with prompt asking for computer name:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;select a.name0 ,b.SerialNumber0,c.model0&amp;#160; from        &lt;br /&gt;v_R_System a,v_GS_PC_BIOS b,v_GS_COMPUTER_SYSTEM c         &lt;br /&gt;where         &lt;br /&gt;a.ResourceID=b.ResourceID and         &lt;br /&gt;a.ResourceID=c.ResourceID AND         &lt;br /&gt;a.name0=@hostname&lt;/strong&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Prompt for computer name @hostname:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;select name0 from v_GS_computer_system&lt;/strong&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Below is the collection which will prompt for computer name which should be created under &lt;strong&gt;component management---&amp;gt;queries section.&lt;/strong&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;select SMS_G_System_COMPUTER_SYSTEM.Manufacturer, SMS_G_System_PC_BIOS.SerialNumber, SMS_G_System_COMPUTER_SYSTEM.Model, SMS_R_System.LastLogonUserName from&amp;#160; SMS_R_System inner join SMS_G_System_PC_BIOS on SMS_G_System_PC_BIOS.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId where SMS_R_System.Name = ##PRM:SMS_R_System.Name##&lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=3897&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description><category domain="http://wmug.co.uk/wmug/b/eskonr/archive/tags/Reports/default.aspx">Reports</category></item><item><title>How To Expire Software Updates in System Center Updates Publisher And Synchronize the Expired Updates In Configuration Manager 2007</title><link>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/09/how-to-expire-software-updates-in-system-center-updates-publisher-and-synchronize-the-expired-updates-in-configuration-manager-2007.aspx</link><pubDate>Tue, 09 Nov 2010 13:22:00 GMT</pubDate><guid isPermaLink="false">10c3822e-6a55-4a1a-8d52-5181c69a645b:3895</guid><dc:creator>Eswar Koneti</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://wmug.co.uk/wmug/b/eskonr/rsscomments.aspx?WeblogPostID=3895</wfw:commentRss><comments>http://wmug.co.uk/wmug/b/eskonr/archive/2010/11/09/how-to-expire-software-updates-in-system-center-updates-publisher-and-synchronize-the-expired-updates-in-configuration-manager-2007.aspx#comments</comments><description>&lt;p&gt;System Center Updates Publisher (SCUP) helps users to publish their private updates to Windows Server Update Services (WSUS) and synchronize the updates in Configuration Manager 2007. Typically users synchronize these updates with WSUS by clicking &amp;quot;&lt;b&gt;Run Synchronization&lt;/b&gt;&amp;quot; in the Configuration Manager console. This manual synchronization process does not synchronize the &amp;quot;&lt;b&gt;Expired&lt;/b&gt;&amp;quot; flag from WSUS to Configuration Manager, so when you want to expire an update by using SCUP and then run the manual synchronization, the log (SMS\logs\&lt;b&gt;wsyncmgr.log&lt;/b&gt;) would read &amp;quot;No changes made to the SMS database&amp;quot; as follows:&lt;/p&gt;
&lt;p&gt;Read full post At &lt;a href="http://blogs.technet.com/b/configmgrteam/archive/2010/11/05/how-to-expire-software-updates-in-system-center-updates-publisher-and-synchronize-the-expired-updates-in-configuration-manager-2007.aspx"&gt;http://blogs.technet.com/b/configmgrteam/archive/2010/11/05/how-to-expire-software-updates-in-system-center-updates-publisher-and-synchronize-the-expired-updates-in-configuration-manager-2007.aspx&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://wmug.co.uk/aggbug.aspx?PostID=3895&amp;AppID=119&amp;AppType=1&amp;ContentType=0" width="1" height="1"&gt;</description><category domain="http://wmug.co.uk/wmug/b/eskonr/archive/tags/Software+Updates/default.aspx">Software Updates</category></item></channel></rss>