Monday, 8 September 2014

SMS - SCCM query to ckeck if OS is x86 or x64

Let's start with something very easy: a simple query to check if an OS is x86 or x64 version.
This query works with both SMS 2003 and SCCM 07 - 2012





select SMS_R_System.NetbiosName, SMS_G_System_COMPUTER_SYSTEM.SystemType from  SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId

Related Posts:

  • OS count reportThis Report will count all OS in SCCM : ************************************************************************************************ select &nbs… Read More
  • SCCM Report count IE versionsthis simple report will show a count of all IE versions in your workstations: *********************************** select      SF.File… Read More
  • SCCM query to check for obsolete clients This query will help you check obsolete clients in SCCM: ******************************************** select SMS_R_System.ResourceID, SMS_R_Syst… Read More
  • SCCM Query To check machine RAM Memory This query will show the machine name, IP address, and ram memory: ******************************** select distinct  SMS_R_System.Netbi… Read More
  • HD space ReportThis report will show the HD space status of all the machines in SMS/SCCM: **************************************************************************… Read More

0 commenti:

Post a Comment

Give me you feedback!