A required privilege is not held by client Windows error fix

If you are using Windows and you are receiving this error message: a required privilege is not held by client Then you can follow the guide below to fix this problem. Instructions This guide assumes that you are using Windows 10 although the process should be very similar if you are using Windows 8.1 or Windows 7. Using your keyboard, …

A required privilege is not held by client Windows error fix Read More

Skype v7.28 Released – MSI Download Link & Silent Install Instructions

Skype version 7.28 has now been released and if you would like to either add this to your Configuration Manager Software Catalog or even have it available through WDS or Group Policy, then you will want to download the MSI file for it. Skype do provide a direct download link for its Skype software and the installer is packaged as …

Skype v7.28 Released – MSI Download Link & Silent Install Instructions Read More

SCCM WQL Query – All Windows 10 Installs

If you are using Configuration Manager and you want to create a collection based on all Windows 10 installations, you can use this WQL query below: select SMS_R_SYSTEM.ResourceID, SMS_R_SYSTEM.ResourceType, SMS_R_SYSTEM.Name, SMS_R_SYSTEM.SMSUniqueIdentifier, SMS_R_SYSTEM.ResourceDomainORWorkgroup, SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.OperatingSystemNameandVersion like “%Microsoft Windows NT Workstation 10%” You can change the “%Microsoft Windows NT Workstation 10%” to create collections for other operating systems as …

SCCM WQL Query – All Windows 10 Installs Read More

SCCM WQL Query – No ConfigMgr Client Installed

If you are using Configuration Manager and you want to create a collection of all devices that do not have the Configuration Manager Client installed, then you can use this 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 like us …

SCCM WQL Query – No ConfigMgr Client Installed Read More

SCCM WQL Query – Clients without latest version installed

If you want to create a collection in Configuration Manager to show you all the devices that are not up to a specified version, then you can use the WQL query below: select SMS_R_SYSTEM.ResourceID, SMS_R_SYSTEM.ResourceType, SMS_R_SYSTEM.Name, SMS_R_SYSTEM.SMSUniqueIdentifier, SMS_R_SYSTEM.ResourceDomainORWorkgroup, SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.ClientVersion != “5.00.8412.1007” Where “5.00.8412.1007” is the latest version number that you are currently using.

SCCM WQL Query – Clients without latest version installed Read More