SCCM 2012 Client Stuck in Provisioning Mode

sccm logo

Last updated on April 16th, 2023 at 11:28 pm

Read Time:1 Minute, 53 Second

We recently have had issues with our Windows 7 operating system deployments seemingly not completing fully.

We were getting the following issues:

  • The ConfigMgr client was not fully installed – it was displaying the Site Mode as “Unknown”
  • The ConfigMgr client was not picking up a certificate – it was displaying as “None”
  • The _SMSTaskSequence folder remained on the largest partition and was not being deleted
  • Could not install anything from the Software Catalog
  • Could not remote onto the client
  • Tabs missing from the client control panel applet

The client control panel applet looked like this:

SCCM Client

After going through various logs and searching the internet, we found that the problem was that after the client install during the task sequence, after a reboot from WinPE into Windows, the client itself was getting stuck in provisioning mode – a bit like a evaluation mode for the client so when into the main windows operating system, it will not function correctly.

So, how can it be fixed?

The problem is two registry keys that need to be amended after the client installation during the task sequence. So, immediately after the client installation step in your task sequence, you should create two Run Command Line steps. In the first step, you should call it “Turn off provisioning mode” and for the command line enter the following:

REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\CCM\CcmExec /v ProvisioningMode /t REG_SZ /d false /f

So your first step should look like this:

SCCM - Turn off provisioning mode

For your second command line step, you should call it “Turn off System Task Excludes” and for the command line enter the following:

REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\CCM\CcmExec /v SystemTaskExcludes /t REG_SZ /d "" /f

So your second step should look like this:

SCCM - Turn off task sequence schedules

Once you have made these additions then save your task sequence and try another deployment, you should now find that this works perfectly!

If you also have a machine that is affected by this problem and do not want to re-image the machine, you can simply make these changes in the registry manually in Windows, reboot the machine and you should then find that the client will work.

Comments

If you have any comments or questions, please feel free to use our comments section below.

Click to rate this post!
[Total: 0 Average: 0]

Free Subscription

If you want to be notified when we post more quality guides like this one, sign up to our free subscription service and you will receive an email when a new post is live.

Join 441 other subscribers.

No need to worry, we will not be filling your inbox with spam and you can unsubscribe anytime you like.


Leave us a message...

This site uses Akismet to reduce spam. Learn how your comment data is processed.