SCCM

Windows XP Setup Please Wait – Configuration Manager OSD on Dell Laptops

Windows XP Setup Please Wait – Configuration Manager OSD on Dell Laptops

We have recently been tasked with fixing a problem with Configuration Manager 2012 SP1 and deploying a fat Windows XP wim image to a Dell Latitude E5510 with the newer generation of Intel processors, in this case the processor was an Intel i3 Processor. The problem was this, the customer had a fat Windows XP […]

Configuration Manager 2012 Powershell Pre-req Commands

Configuration Manager 2012 Powershell Pre-req Commands

If you are building a Configuration Manager 2012 server there are a number of pre-requisites that have to be installed for it to work correctly. It can be quite time consuming installing all of the server features that are required so to help with this process, you can run Powershell cmdlets that will take care […]

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

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

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 […]

SCCM – Low Disk Space SQL Query

SCCM – Low Disk Space SQL Query

This is a SQL query for your SCCM database or you can use it to create a report using SSRS. For this work, you must ensure that you have the Logical Disk class enabled in the hardware inventory settings. This will give you the following information: Computer Name Disk Description Drive Letter Volume Name File […]

Query for all machines with SQL installed using Installed Software

Query for all machines with SQL installed using Installed Software

If you wish to run a SQL query against your SCCM database to find all machines with SQL installed, then you can use this SQL query below: More SQL Queries Our full range of SQL and WQL Collection queries are available here. Feedback If you have any questions or feedback about this post, or if you […]

SCCM – WQL Query for machines without Endpoint Protection installed

SCCM – WQL Query for machines without Endpoint Protection installed

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 […]

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

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

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 […]

Microsoft Evaluation VHD’s – Windows Server 2012 Contoso Administrator Password

Microsoft Evaluation VHD’s – Windows Server 2012 Contoso Administrator Password

Although most people will be using full versions of Windows Server 2012 products by now, some may still use the evaluation VHDs from Microsoft. We have just downloaded all 11GB of VHD files from Microsoft for doing some testing and got to the point where we need to enter the Contoso Administrator password. After trying […]

SCCM – WQL Query for devices with specific software installed

SCCM – WQL Query for devices with specific software installed

If you want to identify machines with a specific piece of software installed, you can utilise the Add/Remove Programs software inventory to do this by using this query. select distinct SMS_R_System.Name, SMS_R_System.OperatingSystemNameandVersion, SMS_R_System.ClientVersion from SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName = “Microsoft Office Professional Plus 2010” order by SMS_R_System.Name In this […]

Report on Dell Warranty Statuses for all machines using SCCM & Dell Client Integration Pack

Report on Dell Warranty Statuses for all machines using SCCM & Dell Client Integration Pack

Dell have an excellent tool freely available called Dell Client Integration Pack. Included in this tool is something called Warranty Status. What this part of the tool does is looks at your SCCM SQL database for Dell machines and their asset tags, then checks against its own warranty database for the warranty information. It then inserts […]

Scroll to top