Hi,
Can someone please help me with the deployment of Kace Agent to our machine with Jamf Pro?
I have searched a lot but haven't found any guides on doing this except the one below and it didn't work for me.
https://www.jamf.com/jamf-nation/discussions/7130/dell-kace1000
I have uploaded the Kace Agent installer file named as AMPAgent.pkg to Jamf Pro site and I can see it amongst the packages. I then created a script as follows:
!/bin/sh
# Create the /Library/Application Support/Dell/KACE/data on the boot drive
mkdir -p "/Library/Application Support/Dell/KACE/data"
# Add the server address of the KBox 1000 to /Library/Application Support/Dell/KACE/data/amp.conf
# (I am not sure if we even need this cause the Kace Agent is already configured with our server address and everything)
echo "host=thisisourserveraddress" > "/Library/Application Support/Dell/KACE/data/amp.conf"
# Wait 15 seconds
sleep 15
# Install the KBox agent
/usr/sbin/installer -dumplog -verbose -pkg "$1/Contents/Resources/AMPAgent.pkg" -target /
But every time I try to run the script it fails with this error message.
Script result: installer: Error - the package path specified was invalid: '//Contents/Resources/AMPAgent.pkg'.
Error running script: return code was 1.
Thank you very much.
