Posted on 01-05-2015 03:00 PM
I am trying to automate this process as much as possible for my Mac users but I am missing something from the final step. I am new to JAMF so here's what I have done so far.
Any help is greatly received. Thanks
Posted on 01-06-2015 09:22 AM
@jgwatson are you using the console or is this a standalone product. I use Trend Micro, but just CURL the installer down from the server. I use the script below to install it.
#!/bin/bash
#Switch to the /tmp directory
cd /tmp
#Download the Trend installer
curl -O -k https://your.server.here:4343/officescan/console/html/TMSM_HTML/ActiveUpdate/ClientInstall/tmsminstall.zip
#Unzip the installer
unzip tmsminstall.zip
#Install the Trend Software
installer -pkg /tmp/tmsminstall/tmsminstall.pkg -target /
#Clean up the folder
rm tmsminstall.zip
rm -rf /tmp/tmsminstall
rm com.trendmicro.tmsm.run.plist
exit 0
Posted on 01-06-2015 02:22 PM
There are more than a couple of versions of Trend av protection for Mac and a range of names.
I've deployed "Core Protection for Mac" (aka Trend CPM) and "Trend Micro Security (for Mac)" (aka TMSM, aka Office Scan), but not the Worry Free Business version.
For Trend Micro Security (for Mac), it will automatically connect to update after it's installed. Happens immediately. The installer includes the addresses of the servers to connect back to get the updates, which could be your own hosted servers/console. If that fails, it connects to Trend. (I suspect that the Worry Free version is nearly the same as TMSM. What I don't understand/know is if you have your own internal hosted update server or is it done via SaaS with Trend.)
For Trend CPM, Tivoli was the management service for updating Trend. That has it's own update schedule. Moving away from this solution soon.
Posted on 01-06-2015 03:31 PM
I am using the console but it is hosted by Trendmicro and that includes updates.
I can deploy the package via email within console - so would I just substitute the URL in that email for the one in your script?
Thanks again.
Posted on 09-18-2018 06:06 PM
@jgwatson Were you able to find a solution for this? I am running into similar issue