Hi all, I will be posting SCCM Application Jobs as often as I can.
This is installed via SCCM 2012 SP1. Created an Application for this under Software Library Application Management.
This is the Programs Tab for this Deployment.
Here is the batch script I created to install Pixologic ZBrush 4R6 FL. This is the floating license version.
echo Installing ZBrush 4R6 FL - Please Wait. echo Window will close after install is complete REM Install ZBrush 4R6 FL "%~dp0ZBrush_4R6_FL_Installer_WIN.exe" --mode unattended REM Install 32-bit customisations if exist "%programfiles%\Pixologic\ZBrush 4R6 FL\ZBrush.exe" copy /Y "%~dp0zbrush_license.lic" "%programfiles%\Pixologic\ZBrush 4R6 FL\Licenses\" if exist "%programfiles%\Pixologic\ZBrush 4R6 FL\ZBrush.exe" copy /Y "%~dp0FloatingLicenseDLL.dll" "%programfiles%\Pixologic\ZBrush 4R6 FL\ZData\ZPlugs\RLM\" REM Install 64-bit customisations if exist "%ProgramFiles(x86)%\Pixologic\ZBrush 4R6 FL\ZBrush.exe" copy /Y "%~dp0zbrush_license.lic" "%programfiles(x86)%\Pixologic\ZBrush 4R6 FL\Licenses\" if exist "%ProgramFiles(x86)%\Pixologic\ZBrush 4R6 FL\ZBrush.exe" copy /Y "%~dp0FloatingLicenseDLL.dll" "%programfiles(x86)%\Pixologic\ZBrush 4R6 FL\ZData\ZPlugs\RLM\" REM Return exit code to SCCM exit /B %EXIT_CODE%
This is the Detention Rule Tab For this Deployment.