@Randydid There are a couple methods we have used to install SPSS. Both are predicated on having a site license, so YMMV
Option 1) If you can get your hands on the silent installer, you can create a policy with the required Java version, an SPSS payload (typically a DMG to add the installer.preferences and SPSS_Statistics_installer.bin to a temp folder), and a script to execute the silent installer and point to the installer.properties file to authorize the software and remove the temp directory. An example script is below.
#! /bin/sh
#Silent Install using information in the installer.properties file, outputs any errors to null
/Library/Application Support/SPSS24-Temp/SPSS_Statistics_Installer.bin -f /Library/Application Support/SPSS24-Temp/installer.properties > /dev/null 2>&1
#Firewall exceptions
/usr/libexec/ApplicationFirewall/socketfilterfw --unblockapp /Applications/IBM/SPSS/Statistics/24/SPSSStatistics.app
/usr/libexec/ApplicationFirewall/socketfilterfw --add /Applications/IBM/SPSS/Statistics/24/SPSSStatistics.app
#Cleanup
rm -r /Library/Application Support/SPSS24-Temp
Option 2) Capture the SPSS application using a Composer snapshot and remove any preferences (including the authorization code!). Then create a policy to install the required Java version, install the package, and then execute a script to authorize the software as seen below:
#!/bin/bash
#some commands to add firewall exceptions
/usr/libexec/ApplicationFirewall/socketfilterfw --unblockapp /Applications/IBM/SPSS/Statistics/24/SPSSStatistics.app
/usr/libexec/ApplicationFirewall/socketfilterfw --add /Applications/IBM/SPSS/Statistics/24/SPSSStatistics.app
#Enters the license key for activation
cd /Applications/IBM/SPSS/Statistics/23/SPSSStatistics.app/Contents/bin/
./licenseactivator THISISYOURAUTHORIZATIONKEY PROXYHOST=proxy-hostname PROXYPORT=proxy-port-number PROXYUSER=proxy-userid PROXYPASS=proxy-password
@mpermann Linked to a thread that contains most of this information. I prefer the silent installer method because it's the supported method from IBM.
And FYI, SPSS 24 can use the latest JDK from Oracle. You won't need the legacy Java installer from apple.