SCCM 2012 Client Stuck in Provisioning Mode
We recently have had issues with our Windows 7 operating system deployments seemingly not completing fully.

We were getting the following issues:
The client control panel applet looked like this:


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:


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:


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 Disqus system below.

Labels: , ,