Apply System Configuration Task fails on Mac OSx after upgrading to RU7
search cancel

Apply System Configuration Task fails on Mac OSx after upgrading to RU7

book

Article ID: 172227

calendar_today

Updated On:

Products

Deployment Solution

Issue/Introduction

When trying to run the Apply System Configuration Task in 8.1 RU7, the task will come back as successful but the Mac hasn't joined the domain.

***ExecuteClass:: Child Process returncode = 134

This is located under the DeployConfigTask.log on the client machine.

Environment

Deployment Solutions 8.1 RU7
 

Cause

Asctool binary was x86 and should have been updated to x64.

Resolution

Fixed in 8.1 RU7 Post hotfix INFO5191 also fixed in 8.5 RU1.

 

You can manually join the machine using a run script task, or from the machine it self.

You can also use a this script to join the domain:

*********************************************************
#!/bin/sh
 
uname=%!UserName!%
upass='%!Password!%'
 
 
dsconfigad -add DOMAIN.COM -computer %COMPNAME% -username $uname -password $upass -force
 
************************************************************

Change out DOMAIN.COM with your domain information.