<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Report on System Management</title>
    <link>https://systemmanagement.ro/tags/report/</link>
    <description>Recent content in Report on System Management</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Fri, 25 May 2018 19:34:45 +0300</lastBuildDate>
    <atom:link href="https://systemmanagement.ro/tags/report/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Power BI: The key didn’t match any rows in the table</title>
      <link>https://systemmanagement.ro/power-bi-the-key-didnt-match-any-rows-in-the-table/</link>
      <pubDate>Fri, 18 May 2018 06:54:54 +0300</pubDate>
      <guid>https://systemmanagement.ro/power-bi-the-key-didnt-match-any-rows-in-the-table/</guid>
      <description>Error: Refreshing Power BI report generates “The key didn’t match any rows
in the table” error. Cause: Click “Edit Queries” button. If you do not see the error
message, click “Refresh Preview” button. Once you have the error message, click
“Go To Error“. Error message will remain, but you should have “Edit Settings” button
now,…</description>
    </item>
    <item>
      <title>Count Adobe Reader versions</title>
      <link>https://systemmanagement.ro/count-adobe-reader-versions/</link>
      <pubDate>Fri, 19 Oct 2012 17:39:00 +0300</pubDate>
      <guid>https://systemmanagement.ro/count-adobe-reader-versions/</guid>
      <description>SELECT DISTINCT TOP (100) PERCENT DisplayName0, Version0, COUNT(Version0) AS Total FROM dbo.v_GS_ADD_REMOVE_PROGRAMS GROUP BY DisplayName0, Version0 HAVING (DisplayName0 LIKE ‘%Adobe Reader%’) ORDER BY Total DESC, DisplayName0</description>
    </item>
    <item>
      <title>Create a report to count all computer models and manufacturer for computers inside a specific collection</title>
      <link>https://systemmanagement.ro/create-a-report-to-count-all-computer-models-and-manufacturer-for-computers-inside-a-specific-collection/</link>
      <pubDate>Fri, 21 Sep 2012 00:57:00 +0300</pubDate>
      <guid>https://systemmanagement.ro/create-a-report-to-count-all-computer-models-and-manufacturer-for-computers-inside-a-specific-collection/</guid>
      <description>SELECT dbo.v_GS_COMPUTER_SYSTEM.Manufacturer0 AS Manufacturer, dbo.v_GS_COMPUTER_SYSTEM.Model0 AS Model, COUNT(dbo.v_GS_COMPUTER_SYSTEM.Model0) AS Total FROM dbo.v_GS_COMPUTER_SYSTEM INNER JOIN dbo.v_FullCollectionMembership ON dbo.v_GS_COMPUTER_SYSTEM.ResourceID = dbo.v_FullCollectionMembership.ResourceID GROUP BY dbo.v_GS_COMPUTER_SYSTEM.Model0, dbo.v_GS_COMPUTER_SYSTEM.Manufacturer0, dbo.v_FullCollectionMembership.CollectionID HAVING (dbo.v_FullCollectionMembership.CollectionID = ‘CollectionID’) ORDER BY Total DESC, Manufacturer, Model</description>
    </item>
    <item>
      <title>Report with computer models and manufacturers</title>
      <link>https://systemmanagement.ro/report-with-computer-models-and-manufacturers/</link>
      <pubDate>Mon, 13 Sep 2010 11:08:44 +0300</pubDate>
      <guid>https://systemmanagement.ro/report-with-computer-models-and-manufacturers/</guid>
      <description>SELECT TOP (100) PERCENT Manufacturer0 AS Manufacturer, Model0 AS Model, COUNT(Model0) AS Total FROM dbo.v_GS_COMPUTER_SYSTEM GROUP BY Model0, Manufacturer0 ORDER BY Total DESC, Manufacturer, Model</description>
    </item>
    <item>
      <title>Upgrade Configuration Manager client</title>
      <link>https://systemmanagement.ro/upgrade-configuration-manager-client/</link>
      <pubDate>Thu, 14 Jan 2010 18:54:08 +0200</pubDate>
      <guid>https://systemmanagement.ro/upgrade-configuration-manager-client/</guid>
      <description>Recently I reinstalled ConfigMgr server in my company and was looking for
an easy method to upgrade all Configuration Manager clients to 4.00.6487.2000 version.
Put some notes on the table and finally made the following plan: Create a report
that counts all client versions. (This is optional, just for informational purposes).
Report query is:SELECT TOP…</description>
    </item>
    <item>
      <title>All reports with links to other reports</title>
      <link>https://systemmanagement.ro/all-reports-with-links-to-other-reports/</link>
      <pubDate>Fri, 02 Oct 2009 10:23:00 +0300</pubDate>
      <guid>https://systemmanagement.ro/all-reports-with-links-to-other-reports/</guid>
      <description>Last month, after restoring the only ConfigMgr site and importing new reports, I saw that none of the reports I’m using have a link to another report. To be sincere, this was a problem I didn’t know where to start troubleshooting. Thanks to guys from Microsoft’s ConfigMgr forum, who helped me identify the problem and…</description>
    </item>
    <item>
      <title>Create collection with all Windows XP SP 1-2-3 systems</title>
      <link>https://systemmanagement.ro/create-collection-with-all-windows-xp-sp-1-2-3-systems/</link>
      <pubDate>Mon, 24 Aug 2009 08:48:47 +0300</pubDate>
      <guid>https://systemmanagement.ro/create-collection-with-all-windows-xp-sp-1-2-3-systems/</guid>
      <description>To create a collection with all Windows XP SP1 systems, use the query bellow:
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 SMS_R_System inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceID
= SMS_R_System.ResourceId where SMS_G_System_OPERATING_SYSTEM.Caption like “%Windows
XP%” and SMS_G_System_OPERATING_SYSTEM.CSDVersion = “Service Pack 1” Similarly,
to create a collection with all Windows XP SP2 systems, just change the Service
Pack version number: select…</description>
    </item>
    <item>
      <title>All .mp3 files on Desktop and My Documents folder</title>
      <link>https://systemmanagement.ro/all-mp3-files-on-desktop-and-my-documents-folder/</link>
      <pubDate>Tue, 16 Jun 2009 18:48:19 +0300</pubDate>
      <guid>https://systemmanagement.ro/all-mp3-files-on-desktop-and-my-documents-folder/</guid>
      <description>Want to know if your users store mp3 files on Desktop or My Documents folders? Add .mp3 file type to Software Inventory Client Agent properties Navigate to Site Database – Site Management – Site Name – Site Settings – Client Agents and double click Software Inventory Client Agent Select Inventory Collection tab Click the new…</description>
    </item>
  </channel>
</rss>
