|
|
Browse by Tags
All Tags » SMS (RSS)
Showing page 1 of 45 (448 total posts)
-
For full details please see
http://social.technet.microsoft.com/Forums/en-US/configmgrreporting/thread/c42ba8cf-02a5-4e2e-8d20-39b05a4a5740
select distinct
R.Netbios_Name0 as 'Name',
R.User_Name0 as 'User',
CS.Manufacturer0 as 'Manufacturer',
CS.Model0 as 'Model',
...
-
For full details please see
http://social.technet.microsoft.com/Forums/en-US/configmgrreporting/thread/c42ba8cf-02a5-4e2e-8d20-39b05a4a5740 select distinct
R.Netbios_Name0 as 'Name',
R.User_Name0 as 'User',
CS.Manufacturer0 as 'Manufacturer',
CS.Model0 as 'Model',
BIOS.SerialNumber0 as ...
-
Use this query to find all webcam – SQL reports select
CS.Name0,
SD.Name0,
SD.DeviceID0
from
dbo.v_GS_COMPUTER_SYSTEM CS
join dbo.v_GS_SYSTEM_DEVICES SD on CS.ResourceID = SD.ResourceID
Where
SD.Name0 like '%Webcam%'
-
Use this WQL query to find all webcam
http://social.technet.microsoft.com/Forums/en-US/configmgrai/thread/fa5fcfe2-69ef-4482-adfc-de25d6d19669/?prof=required select
SMS_R_System.Name,
SMS_G_System_SYSTEM_DEVICES.Name,
SMS_G_System_SYSTEM_DEVICES.DeviceID
from
SMS_R_System
inner join SMS_G_System_SYSTEM_DEVICES on ...
-
If you need to find all PC within an AD container (not an OU). Use this WQL query to find them.
For more details about this request, see the full forum post.
http://social.technet.microsoft.com/Forums/en-US/configmgrsetup/thread/9358cee7-75a5-4595-80a3-4016ea572f1b
select
SMS_R_System.Name,
SMS_R_System.LastLogonUserName ...
-
For full details see: http://www.myitforum.com/forums/tm.aspx?high=&m=238953&mpage=1#239186 SELECT distinct
sys1.Name0,
csys.Model0,
csys.Manufacturer0,
os.Caption0,
os.CSDVersion0,
BIOS.SerialNumber0,
sys1.description0,
REPLACE((SELECT IPAddress0 + ', ' FROM ...
-
For full details please see:
http://social.technet.microsoft.com/Forums/en-ca/configmgrreporting/thread/19e0771c-eddc-43f7-956c-a5c9f0110e59
SELECT
A.Name0,
B.SerialNumber0 ,
A.Manufacturer0,
A.Model0,
C.Name0 , ...
-
For full details, please see
http://social.technet.microsoft.com/Forums/en-ca/configmgrai/thread/7951b781-8354-490b-9b59-4fe4e68d1975
SELECT DISTINCT
CS.Name0,
CASE
WHEN ES.ChassisTypes0 in ('3','4','6','7','15') THEN 'Desktop'
WHEN ES.ChassisTypes0 in ...
-
SELECT DISTINCT
CS.Name0,
CASE
WHEN ES.ChassisTypes0 in ('3','4','6','7','15') THEN 'Desktop'
WHEN ES.ChassisTypes0 in ('8','9','10','21') THEN 'Laptop'
Else 'Unknown'
END as 'Chassis',
...
-
For full details please see
http://www.myitforum.com/Forums/tm.aspx?m=238674&high=
SELECT distinct
DisplayName0,
Count(arp.ResourceID) AS 'Count',
Publisher0,
@CollID as CollectionID
FROM
dbo.v_Add_Remove_Programs arp
JOIN dbo.v_FullCollectionMembership fcm on arp.ResourceID = fcm.ResourceID ...
1 ...
|
|
|