This report will show a simple count of advertisement running on SCCM 2012:
********************************
SELECT COUNT(LastStateName) AS Count, LastStateName
FROM dbo.v_ClientAdvertisementStatus
WHERE (DATEDIFF(m, LastStatusTime, GETDATE()) = 1)
GROUP BY LastStateName
*********************************
Related Posts:
SCCM Report Site System Status
Select Distinct
SiteCode,
Role,
'Status' = Case
When Status = 0 Then 'OK'
When Status = 1 Then 'Warning'
When Status = 2 Then 'Critical'
Else… Read More
How to Export a collection to CSV in SCCM 2012
Reports > Asset Intelligence > Hardware 01A - Summary of computers in a specific collection
Choose collection and Run Report… Read More
SCCM Printer complete ReportSELECT distinct
A.Name0, A.UserName0, B.Name0, B.DriverName0, B.Location0, B.PortName0, B.ShareName0,Manufacturer0, Model0
FROM v_GS_COMPUTER_SYSTEM … Read More
All Servers SCCM reportThis report will show you a list of all servers detected in SCCM with server hostname, OS and more features:
****************************************… Read More
SCCM Collection Query for All SQL versionsSQL 2012 :
select
SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainOR… Read More
0 commenti:
Post a Comment
Give me you feedback!