SCCM Client Center Tool

System Center Configuration Manager SCCM

An excellent tool to use alongside Configuration Manager is SCCM Client Center Tool. We have been using it for years and it also makes a great tool to hand out to helpdesk staff if you do not want them to have access to the full Configuration Manager Console. The tool has many functions but the … Read more

Remote UAC Access Denied Errors – Local Account Token Filter Policy – Remote UAC Fix

microsoft black logo

Introduction If you are trying to use any remote tools like sysinternals against Windows Vista, 7 or 8.1 machines then you need to have remote UAC elevation privileges to enable you to carry out changes on the machine you are trying to amend. However, you may find that you are still having problems with connecting … Read more

SQL Query for SCCM – Hierarchy information

sccm logo

This is a very simple SQL query but still very useful and will give you a lot of information about your Configuration Manager hierarchy. select * from sites Run this on your Configuration Manager database server or you can use it to create a custom report using SSRS. More Queries Our full range of SQL … Read more

SCCM – WQL Query for machines without Endpoint Protection installed

microsoft windows white logo

If you need to identify machines that have the Configuration Manager client installed but do not have the System Center Endpoint Protection client installed, then you can use the following WQL query. More Queries Our full range of SQL and WQL Collection queries are available here. Feedback If you have any questions or feedback about this … Read more

SCCM – WQL Query for machines with 4GB RAM or more

sql2016

If you have a requirement to identify machines with 4GB RAM or more, then you can use the following WQL query to do this. select distinct SMS_R_System.Name, SMS_R_System.ADSiteName, SMS_G_System_X86_PC_MEMORY.TotalPhysicalMemory, SMS_R_System.IPAddresses, SMS_R_System.LastLogonUserName, SMS_R_System.DistinguishedName from SMS_R_System inner join SMS_G_System_X86_PC_MEMORY on SMS_G_System_X86_PC_MEMORY.ResourceID = SMS_R_System.ResourceId where SMS_G_System_X86_PC_MEMORY.TotalPhysicalMemory >= 4096000 order by SMS_R_System.Name, SMS_R_System.ADSiteName, SMS_R_System.IPAddresses, SMS_R_System.LastLogonUserName, SMS_R_System.DistinguishedName You can change … Read more