Windows 8.1 Dot.Net 3 Feature Enable using Operating System media offline

Windows 8.1 Dot.Net 3 Feature Enable using Operating System media offline

If you are having trouble in getting the Dot.Net 3 feature to enable on your Windows 8 machine, there is a way that you can do this offline by using DISM and the original Windows 8 media. Instructions Firstly, you sure ensure that you have your original Windows 8 media in your optical drive (or […]

How to add a custom static page to your blog and not adding it to your menu tabs – Google Blogger

How to add a custom static page to your blog and not adding it to your menu tabs – Google Blogger

We have recently been asked about how to add a static page to Google Blogger, but not have it added to the menu tabs – whilst keeping other tabs in place. So in essence – how to create a hidden custom page. We use these to give general information on pages without them being added […]

SCCM 2012 – WQL Query for Machines with less that 1GB RAM

SCCM 2012 – WQL Query for Machines with less that 1GB RAM

If you need to identify machines within your SCCM environment that have a certain amount of RAM or less, you can use the following WQL query to do this. SQL Query Code You can change the where value “1024000” to the amount of RAM that you are looking for. More Queries Our full range of […]

SCCM – WQL Query for machines with a valid Hardware Scan in the last x days

SCCM – WQL Query for machines with a valid Hardware Scan in the last x days

If you would like to identify the machines that have had a valid hardware inventory scan within the last x amount of days, you can use this WQL query as per below. select SMS_R_System.Name, SMS_G_System_WORKSTATION_STATUS.LastHardwareScan from SMS_R_System inner join SMS_G_System_WORKSTATION_STATUS on SMS_G_System_WORKSTATION_STATUS.ResourceId = SMS_R_System.ResourceId where DateDiff(dd,SMS_G_System_WORKSTATION_STATUS.LastHardwareScan,GetDate() ) <= 15 This query is defaulted to 15 […]

SCCM – WQL Query for MAC Address Prompt

SCCM – WQL Query for MAC Address Prompt

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

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

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

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

EA & Need For Speed Rivals – Nothing but problems!

EA & Need For Speed Rivals – Nothing but problems!

Recently, I started playing Need for Speeds Rivals on the new Xbox One console. This is a title that I’m very familiar with and have played all versions over the many years of the Need for Speed franchise. However, Rivals has been nothing but a major disappointment – don’t get me wrong, the game itself […]

Powershell error when running scripts – scripts disabled

Powershell error when running scripts – scripts disabled

If you are trying to run a Powershell script, you may find sometimes that you get this following error message: Cannot be loaded because the execution of scripts is disabled on this system. There is a very simple fix for this, all you have to do is ensure that you run your Powershell program as […]

Server Information SQL Query for SCCM

Server Information SQL Query for SCCM

The below SQL query can be used against your SCCM database to return information about your servers. You can edit this query to bring back different information and also use it to create a report using SSRS. This query by default brings back the following information: Query More Queries Our full range of SQL and […]

Uninstalling Google Earth using SCCM

Uninstalling Google Earth using SCCM

Most users in organisations believe that Google Earth is a great tool for their work and freely install it on their work machines and think nothing of it. Well, Google Earth is NOT free for commercial use and if business users want to use Google Earth for work purposes on work machines, then a licence […]

SCCM – WQL Query for devices with Google Earth installed

SCCM – WQL Query for devices with Google Earth installed

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

Scroll to top