SCCM Distribution Point Pre-Requisite Powershell Script

sccm logo

If you are setting up some distribution points for Configuration Manager (SCCM) then you will need to ensure that you have all the correct server features installed and also the correct firewall ports opened. To do this, we have created a quick PowerShell script to carry this all out for us. To download this script … Read more

How to Capture Microsoft Office Updates

microsoft windows white logo

This is a guide on how to capture Microsoft Office updates from a machine and then use these captured updates to either streamline a fully updated installation of Microsoft Office, or it can be used with Configuration Manager to ensure that you are pushing out the software fully patched. The reason we started using this … Read more

SCCM – 52 Operational Collections

sccm logo

There is an excellent Powershell download available giving you 52 operational collections within SCCM. You should go over to the link below and take a look: 52 SCCM Powershell Collections Full list of collections created using the Powershell script are: All Clients All Clients Active All Client Inactive All Clients R2 CU0 All Clients R2 … Read more

SCCM – Set Time Zone During OSD

sccm logo

If you are using SCCM for your operating system deployments across different countries, then you may want to set the time zone within the task sequence. To do this, you can take advantage of the built in Windows tool call tzutil.exe. In this example we will set the time zone for a computer deployment based … Read more

System Center Configuration Manager PKI Setup

sccm logo

If you are looking at setting up your System Center Configuration Manager (SCCM) with PKI, then there is an excellent step by step guide that you can follow from SCCMGuy. The link to this guide is below: https://sccmguy.com/2013/11/26/pki-certificates-for-configuration-manager-2012-r2-part-1-of-4-web-server-certificate/ We have used this in the past our various labs and it details well what you need to … Read more

SCCM OSD – “A required device isn’t connected or cannot be accessed”

sccm logo 600x400

We today ran into an issue where our SCCM OSD PXE boot was not working. It was coming up with a very confusing message stating: “A required device isn’t connected or cannot be accessed” This led us to start looking at the hard drive and the drivers, however, the solution was completely different. The problem … Read more

Restart SCCM OSD Task Sequence within Windows PE

System Center Configuration Manager SCCM

If you want to restart SCCM OSD Task Sequence from within Windows PE without having to reboot the machine and start the PXE boot sequence again, you can quickly press F8 to bring up a command prompt and enter the following command: x:smsbini386TsmBootstrap.exe /env:WinPE /configpath:x:smsdata This will then restart the task sequence process for you … Read more

SCCM Collection based on Active Directory Organisation Unit (OU) Membership

sccm logo 600x400

You may want to create a Configuration Manager Collection based upon an Active Directory Organisation Unit. To do this you can use the following WQL code and then simply amend the last part to be the Organisation Unit that you want to base the Collection on: SELECT SMS_R_USER.ResourceID, SMS_R_USER.ResourceType, SMS_R_USER.Name, SMS_R_USER.UniqueUserName, SMS_R_USER.WindowsNTDomain FROM SMS_R_User WHERE … Read more