select
SMS_G_System_LastSoftwareScan.LastScanDate,
SMS_R_System.Name,
SMS_G_System_WORKSTATION_STATUS.LastHardwareScan
from SMS_R_System inner join SMS_G_System_LastSoftwareScan on SMS_G_System_LastSoftwareScan.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_WORKSTATION_STATUS on SMS_G_System_WORKSTATION_STATUS.ResourceID = SMS_R_System.ResourceId order by SMS_G_System_WORKSTATION_STATUS.LastHardwareScan
Related Posts:
Query for Workstations with low disk space (less than 5GB)
select
SMS_R_SYSTEM.ResourceID,
SMS_R_SYSTEM.ResourceType,
SMS_R_SYSTEM.Name,
SMS_R_SYSTEM.SMSUniqueIdentifier,
SMS_R_SYSTEM.Resou… Read More
SCCM Collection Query for All Windows Server1- For any windows server
select
SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.R… Read More
All Windows 7 x64 and Windows 7 x86 Workstations Query
Create Collection For Windows x64 and x86
WQL for Windows x64 :
select
SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_… Read More
SCCM Query computers inactive 45days
This is a query to find out all the Workstations that are been inactive for the last 45 days
select
SMS_R_SYSTEM.ResourceID,
SMS_R_SYSTE… Read More
Sccm Query report for basic Server properties
SELECT distinct CS.name0 AS 'Server Name', OS.Caption0 AS 'OS', CU.Manufacturer0 AS 'Manufacturer', CU.Model0 AS 'Model',&nb… Read More
0 commenti:
Post a Comment
Give me you feedback!