Example of a correct connection string to a database is:
Provider=SQLOLEDB;Server=TGHSQL1;Database=CM_TGH;Integrated Security=SSPI;
Once you have entered all this information, it will be saved into your server registry - this can be amended from this location:
Once you are happy that all the information you have entered is correct, you can then move on to retrieve the warranty information from Dell.
To do this, run the following command:
Dell.WarrantyInfo.exe get_info internal_sccm_db
This will then retrieve all the information required and insert into your SCCM database under a table called:
DellWarrantyInformation
You can then use this information to create a range of reports, but for one to get you going, you can use this SQL query to create a report in SSRS:
SELECT
Service_Tag AS [Service Tag],
LOB + ' ' + System_Model AS [Model],
Ship_Date AS [Ship Date],
Start_Date AS [Warranty Start Date],
End_Date AS [Warranty End Date],
Days_Left AS [Days Left],
Entitlement_Type AS [Status]
FROM
DellWarrantyInformation
HOW DO I CREATE THE SSRS REPORT?
We have now created a guide that will help you to create your SSRS reports based on the data that this guide will pull into the Configuration Manager database.
You can access this guide by clicking the link below:
Create a SSRS Report using Configuration Manager Database Data
COMMENTS
If you have any problems with any of the above, then please leave your comments and questions below using our Disqus system and we will try to get back to you as soon as we can.
We also like to hear back any success stories too, so if you have used our guide and found it helpful, we would love to hear from you.