Hi !
Im trying to create custom report for computers that dont have skype installed.
Im not very good at SQL, but friendly google helped.
This is what i have:
---
Select Distinct
sys.Netbios_Name0,
sys.User_Domain0,
sys.User_Name0
FROM
v_R_System sys
JOIN v_Add_Remove_Programs arp ON sys.ResourceID = arp.ResourceID
WHERE
sys.ResourceID not in (select sys.ResourceID
from
v_R_System sys
JOIN v_Add_Remove_Programs arp ON sys.ResourceID = arp.ResourceID
where
DisplayName0 like '%Skype%')
---
It runs against all sccm collections but how could i run this against specific collection ?
Any help is appreciated
-
SME
Im trying to create custom report for computers that dont have skype installed.
Im not very good at SQL, but friendly google helped.
This is what i have:
---
Select Distinct
sys.Netbios_Name0,
sys.User_Domain0,
sys.User_Name0
FROM
v_R_System sys
JOIN v_Add_Remove_Programs arp ON sys.ResourceID = arp.ResourceID
WHERE
sys.ResourceID not in (select sys.ResourceID
from
v_R_System sys
JOIN v_Add_Remove_Programs arp ON sys.ResourceID = arp.ResourceID
where
DisplayName0 like '%Skype%')
---
It runs against all sccm collections but how could i run this against specific collection ?
Any help is appreciated
-
SME