{"id":306,"date":"2014-08-11T15:11:10","date_gmt":"2014-08-11T21:11:10","guid":{"rendered":"http:\/\/www.phantomimages.com\/blogs\/tech\/?p=306"},"modified":"2014-08-11T15:33:23","modified_gmt":"2014-08-11T21:33:23","slug":"cm-2012troubleshooting-mp-has-rejected-a-message-from-guidxxxxx","status":"publish","type":"post","link":"https:\/\/www.phantomimages.com\/blogs\/tech\/2014\/08\/11\/cm-2012troubleshooting-mp-has-rejected-a-message-from-guidxxxxx\/","title":{"rendered":"CM 2012&ndash;Troubleshooting &#8211; MP has rejected a message from GUID:XXXXX"},"content":{"rendered":"<p>For those not familiar with the CM database, it can be confusing at times to locate the specific client to which an error message within SMS_MP_CONTROL_MANAGER is referring.<\/p>\n<p>Let\u2019s take the following error as an example:<\/p>\n<p><strong>Message ID:<\/strong>\u00a0 5447<br \/>\n<strong>Description:<\/strong>\u00a0 MP has rejected a message from GUID:F36C6053-12D7-404C-AAF6-E406F84DAF50 because the signature could not be validated. If this is a valid client,\u00a0 it will attempt to re-register automatically so its signature can be correctly validated.<\/p>\n<p>When looking at the CM database, specifically at the view, v_R_System, one would notice that there are two columns which have names explicitly containing the label \u201cGUID\u201d \u2013 Object_GUID0 and SMBIOS_GUID0, neither of which match up to the GUID referred to in the error message shown above.\u00a0 Looking at the properties of these two columns, we find that Object_GUID0 is related to the Active Directory object of the resource and SMBIOS_GUID0 is the BIOS GUID of the resource.<\/p>\n<p>So, where can one find the information needed to track down the resource to which the above error message is referring?\u00a0 The answer is the v_R_System column named SMS_Unique_Indentifier0 \u2013 intuitive, isn\u2019t it?\u00a0 Reviewing the properties of this column, we find that this refers to the Unique ID of the resource, which is exactly what the error is returning, the source identifier.\u00a0 I\u2019ve included a couple methods for identifying the resource below.<\/p>\n<p>SQL Method:\u00a0 (Query against the CM database)<\/p>\n<p>SELECT<br \/>\nName0,<br \/>\nSMS_Unique_Identifier0<\/p>\n<p>FROM<br \/>\nv_R_System<\/p>\n<p>WHERE<br \/>\nSMS_Unique_Identifier0 = &#8216;GUID:F36C6053-12D7-404C-AAF6-E406F84DAF50&#8217;<\/p>\n<p>PowerShell Method:<br \/>\nEnter your data where the [] are, but omit the brackets.<\/p>\n<p>$params = @{Namespace=&#8221;ROOT\\SMS\\site_[YOURSITECODE]&#8221;;<br \/>\nClass=&#8221;SMS_R_System&#8221;;<br \/>\nComputerName=&#8221;[YOURSITESERVER]&#8221;;<br \/>\nFilter=&#8217;SMSUniqueIdentifier = &#8220;GUID:F36C6053-12D7-404C-AAF6-E406F84DAF50&#8243;&#8216;}<br \/>\nGet-WmiObject @params | ForEach-Object {<br \/>\n$Name = $_.Name<br \/>\n$Name = &#8221; Computer Name:\u00a0 $Name&#8221;<br \/>\n$ResourceID = $_.ResourceID<br \/>\n$ResourceID = &#8221;\u00a0\u00a0 Resource ID:\u00a0 $ResourceID&#8221;<br \/>\n$ClientVersion = $_.ClientVersion<br \/>\n$ClientVersion = &#8220;Client Version:\u00a0 $ClientVersion&#8221;<br \/>\nReturn $Name, $ResourceID, $ClientVersion<br \/>\n}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>For those not familiar with the CM database, it can be confusing at times to locate the specific client to which an error message within SMS_MP_CONTROL_MANAGER is referring. Let\u2019s take the following error as an example: Message ID:\u00a0 5447 Description:\u00a0 MP has rejected a message from GUID:F36C6053-12D7-404C-AAF6-E406F84DAF50 because the signature could not be validated. If &hellip; <a href=\"https:\/\/www.phantomimages.com\/blogs\/tech\/2014\/08\/11\/cm-2012troubleshooting-mp-has-rejected-a-message-from-guidxxxxx\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">CM 2012&ndash;Troubleshooting &#8211; MP has rejected a message from GUID:XXXXX<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":309,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false},"version":2}},"categories":[68,35,28],"tags":[36,90,69],"class_list":["post-306","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-powershell","category-site-components","category-troubleshooting-cm2012","tag-cm-2012","tag-powershell","tag-sms_mp_control_manager"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-content\/uploads\/2014\/08\/System-Center-2012-Logo-CM-Troubleshooting-v3.png","jetpack_shortlink":"https:\/\/wp.me\/p3iUa6-4W","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/posts\/306","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/comments?post=306"}],"version-history":[{"count":2,"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/posts\/306\/revisions"}],"predecessor-version":[{"id":310,"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/posts\/306\/revisions\/310"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/media\/309"}],"wp:attachment":[{"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/media?parent=306"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/categories?post=306"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.phantomimages.com\/blogs\/tech\/wp-json\/wp\/v2\/tags?post=306"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}