Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

PENDING SQL Query for All SCCM Clients System Name and IP Address

  • Thread starter Thread starter Anji
  • Start date Start date
  • Replies Replies 2
  • Views Views 6K

Anji

New Member
Messages
2
Reaction score
0
Points
1
Dear All,

I need some SQL from SCCM Server , Regarding All SCCM Clients where connected USB Devices, USB Manufacturer, USB Description, Computer Name, like...

Please find below SQL query coloums. How make the SQL Query and how can i get the report.


Computer NameUSB Device ManufacturerUSB Device DescriptionSMS SiteTop Console UserComputer Serial NumberAsset TagComputer ManufacturerComputer ModelNumber of Devices


Please help me regarding this , Because I troubled last one week on words.


Thank You All,

Ananeyulu.
 
Dear All,

I need some SQL from SCCM Server , Regarding All SCCM Clients where connected USB Devices, USB Manufacturer, USB Description, Computer Name, like...

Please find below SQL query coloums. How make the SQL Query and how can i get the report.


Computer NameUSB Device ManufacturerUSB Device DescriptionSMS SiteTop Console UserComputer Serial NumberAsset TagComputer ManufacturerComputer ModelNumber of Devices


Please help me regarding this , Because I troubled last one week on words.


Thank You All,

Ananeyulu.
You won't be able to acheive everything unless you target something specifically to get, for example you will have to target the computer models eqaul "Latitude" then you will be able to list the rest of the stuff otherwise I don't think you will be able to get everything you have included in your post, this is the best I could get.


Untitled.png

select SMS_G_System_DISK.SystemName, SMS_G_System_DISK.Model, SMS_G_System_DISK.Size, SMS_G_System_DISK.InterfaceType from SMS_G_System_DISK where SMS_G_System_DISK.InterfaceType = "USB"

Good luck ;);)
 
Back
Top