

- Mcafee endpoint security removal tool install#
- Mcafee endpoint security removal tool full#
- Mcafee endpoint security removal tool code#
- Mcafee endpoint security removal tool download#
Sudo installer -pkg /Library/Application Support/mcafeeapp/McAfee_MCP/McpDistribution.pkg -target / Sudo installer -pkg /Library/Application Support/mcafeeapp/McAfee_DLP/DlpAgentInstaller.pkg -target / Sudo installer -pkg /Library/Application Support/mcafeeapp/McAfee_ATP/McAfee-Adaptive-Threat-Protection-for-Mac-10.6.7-ePO-client-package-Release114.pkg -target / Sudo installer -pkg /Library/Application Support/mcafeeapp/McAfee_TP/McAfee-Threat-Prevention-for-Mac-10.6.7-ePO-client-package-RTW-108.pkg -target / Sudo /Library/Application Support/mcafeeapp/McAfee_SH/install.sh -i Here Iattached my configuration details and scripts I used and please suggest anything missing or changes required.
Mcafee endpoint security removal tool full#
I deployed McAfee via Jamf by creating packages using Composer and deployed configuration Profile to allow extension and full disk access but still, I have to allow extension manually from System Preferences -> Security & Privacy -> General. Playing around with the Create URL choice in the list, it did appear to make a more automated installer but it expires quickly.
Mcafee endpoint security removal tool install#
If I keep up with the agent updates in EPO > Software Manager, then as the hot fixes come out, EPO uses my agent tasks to update the agent until I get around to making a new install package. You may also find that if you highlight a branch in the system tree before clicking on "new systems" that when the system enrolls, it will land in that branch. Having EPO build it bakes in all the settings for my EPO server and relay. Library/BuildJSS/InstallMcafee/install551.sh -i I then have a script run the install.sh -i from that folder and the agent installs. Folder location really does not really matter as long a your script points to it ) (I started using buildJSS to keep all my installers together and not get confused with apps that use Application Support/. Next I package the agent (just the 1 file) with Composer and have it put the install package in /Library/buildJSS/installmcafee/. (in my case, I add the agent version number to the file to keep straight for testing)
Mcafee endpoint security removal tool download#
Nothing else gets filled in on that screen and I make the package then download it. In there I choose Create and download agent > non windows > pick my current mac agent.
Mcafee endpoint security removal tool code#
On the EPO System Tree screen is a "new systems" button which is super secret code for make a new install file. I have Jamf push down the files so I don't have to connect the Macs to the server or have the server see my Macs. If grep -q $epoSvr "$cmaDir/scratch/ServerSiteList.xml" thenĮcho "$(date): McAfee Agent (ePO) 5.x Points to $epoSvr"Įcho "$(date): McAfee Agent (ePO) 5.x Points to Incorrect Server"Įcho "$(date): McAfee Agent (ePO) Version $agentVer Not Found"Įcho "$(date): Removing McAfee Agent (ePO) 5.x"Įcho "$(date): McAfee Agent (ePO) 5.x Removed Successfully"Įcho "$(date): McAfee Agent (ePO) 5.x Removal Failed"Įcho "$(date): McAfee Agent (ePO) 5.x Installation Not Found"Įcho "$(date): McAfee Agent (ePO) 4.x Installation Found"Įcho "$(date): Removing McAfee Agent (ePO) 4.x"Įcho "$(date): McAfee Agent (ePO) 4.x Removed Successfully"Įcho "$(date): McAfee Agent (ePO) 4.x Removal Failed"Įcho "$(date): McAfee Agent (ePO) 5.x Installed Successfully"Įcho "$(date): McAfee Agent (ePO) 5.x Installation Failed" If grep -q $agentVer "$configDir/config.xml" thenĮcho "$(date): McAfee Agent (ePO) Version $agentVer Found" If thenĮcho "$(date): McAfee Agent (ePO) 5.x Installation Found" #!/bin/bashĬonfigDir="$target/etc/cma.d/EPOAGENT3700MACX/" If MA is not the proper version or pointing to the right server, it uninstalls it (either version 4.x or 5.x) and the installs proper version from install.sh, which is assumed to be staged in /tmp/epoinstall already. Don't know if this would help, but my colleague and I wrote a script that checks if a specific version of McAfee Agent is installed (in this case 5.0.3.272) and is pointed at the proper ePO server (replace ":80" with your own).
