This is a quick solution for an error during an OS deployment task sequence within SCCM 2007. I had encountered the following errors:
The step … must be running in full OS
Error code 8000700032
Image may be NSFW.
Clik here to view.
I had implemented a task to install the VMware tools during the driver installation which caused this error because this was a normal package. The solution here is to move the task under the “Setup Windows and configMgr” task. The SCCM client must be installed first before you can install properly software like the VMware tools.
Image may be NSFW.
Clik here to view.
Below is the install command for a successful VMware tools installation during the OS Deployment task sequence:
msiexec.exe /i “VMware Tools.msi” /QN ADDLOCAL=ALL REBOOT=ReallySuppress
Image may be NSFW.
Clik here to view.

Clik here to view.
