Get WMI Query v1.6 Released
A free utility to get the WMI information from a computer. This is a great tool for SCCM administrators.
A free utility to get the WMI information from a computer. This is a great tool for SCCM administrators.
If you are using Configuration Manager, you will be aware that you can create a number of custom reports using the SQL data and SSRS to produce the reports. The best way to start to create a custom report is to ensure that you get your SQL query correct first. We have written hundreds of … Read more
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 … Read more
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 … Read more
If you are using SCCM for Operating System Deployment (OSD) – which is one of the main functions of the system so we will assume that you are – then you may want to monitor the process of your task sequences. To do this, you should go into your Configuration Manager Console and click on … Read more
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
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
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 … Read more
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 … Read more
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
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
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 … Read more