SCCM – WQL Query for MAC Address Prompt

sql2016

If you would like to search for a machine based upon its MAC address, you can use a WQL query to do this. The WQL query that you should use for this is below: select distinct SMS_R_System.Name, SMS_R_System.MACAddresses from SMS_R_System where SMS_R_System.MACAddresses = ##PRM:SMS_R_System.MACAddresses## order by SMS_R_System.MACAddresses More Queries Our full range of SQL and … Read more

SCCM – Query for devices in a specific Active Directory Organisational Unit (OU)

sccm logo

If you are looking for a SCCM query query that will return all machines that are in a specified organisational unit (OU), then you can use this one below. All you need to do is change the demo OU below to your own required OU. Organisational Unit TECHYGEEKSHOME/LAB/COMPUTERS/WINDOWS 10 Query Script SELECT distinct * FROM SMS_R_System … Read more

SCCM – WQL Query for devices with Google Earth installed

sccm logo

If you want to identify machines with Google Earth software installed, you can utilise the Add/Remove Programs software inventory to do this by using this query. This WQL query can then be used as part of an import function to create a device collection within SCCM. More Queries Our full range of SQL and WQL … Read more

CM2012 Console Create Report Fix

sccm logo

If you have Configuration Manager 2012 and you are using SQL Reporting, you may want to create some custom reports. In your Configuration Manager 2012 Console, you can browse to Monitoring, then into the Reporting module. This will display all the reports that are currently available to you. If you want to create a custom … Read more

PXE Boot problems during SCCM OSD

sccm logo 600x400

I recently have had some issues with machines not PXE booting for me to be able to deploy an image to new machines. I couldn’t quite figure it out as all of our worldwide sites were working perfectly and the office I was working at was also working in one part of the building but … Read more

Fixing SCCM Console Connection Errors Caused by Corrupted Performance Counters

microsoft black logo

We recently expanded SCCM Console access to a number of additional users. Before access was granted, each user completed a short training session, and their SCCM permissions were heavily restricted as expected. However, several machines began displaying an error when launching the SCCM Console: Cannot connect to the SCCM database If you’re an SCCM administrator, … Read more

Install System Center Endpoint Protection (SCEP) During SCCM OSD Task Sequence Process

sccm logo

As stated in my previous post, I have been asked recently about installing Endpoint Protection (SCEP) during the SCCM OSD process. This is pretty easy to do and the knock on affect is that you also can have SCEP available to install from your Software Catalog. To prepare the SCEP software for deployment in your … Read more

Install System Center Endpoint Protection (SCEP) using the SCCM Software Catalog

sccm logo

]I’ve had a few requests recently asking whether it is possible to install System Center Endpoint Protection (SCEP) during the task sequence for an operating system deployment. I’ve also been asked if it is possible to put SCEP into the Software Catalog. Well, the answer to both questions is yes and I’ll be breaking the … Read more