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 of all of the pre-reqs …

Configuration Manager 2012 Powershell Pre-req Commands Read More

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 to remote machines so if …

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

Windows 8 Start Menu Button – Just like Windows 7!

We hear a lot of people complaining about Windows 8 since Microsoft launched their new flagship operating system. Stupid touchpad operation, stupid charms, stupid start screen and stupid apps are all common complaints of Windows 8. The problem is, if you buy a new computer, the chances are that the OEM operating system on it is going to be Windows …

Windows 8 Start Menu Button – Just like Windows 7! Read More

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 post, or if you would …

SCCM – WQL Query for machines without Endpoint Protection installed Read 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 the where value of 4096000 …

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