07-28-2016 06:35 AM - edited 02-20-2020 09:01 PM
We have 1500 AMP for Endpoints licenses - I just watched a video on deploying them - from what I saw I would need each pc to go to https://console.amp.sourcefire.com portal page and download these individually.
1 - How would I get a login for the sourcefire site (don't have it)
2 - Is there an easier way to deploy this for 1500 users????
Solved! Go to Solution.
05-01-2019 07:59 AM
Marvin,
Thank you very much I have passed this to our systems team to review. We will take your note into consideration.
12-26-2019 01:31 PM
Cisco has no plans to release an MSI file.
Please see my earlier post with attached instructions on how to create your own.
05-06-2021 05:23 AM
Thanks, that's helpful. SCCM is way better for large scale deployment, but it good to have alternative method for some non-standard devices
04-09-2021 07:43 AM - edited 04-09-2021 07:51 AM
Thanks for the MSI creation guide. It would be nice to have a Cisco create one though.
12-08-2022 05:39 AM
The reason Cisco doesnt see high demand for an MSI installer, is called survivor bias. Cisco is not considering all the enterprises who decided not to choose Cisco Endpoint because of their need for an MSI installer, nor does it consider the customers who left because of this shortcoming.
04-15-2021 05:44 AM
Are there plans in the future where customers will be able to push the install from the console without relying on a link or SCCM?
07-12-2021 01:50 PM
I would love to see this happen as well
07-13-2021 09:16 AM
I have not heard of anything; however, you can download the endpoint file, convert to MSI and use an MSI deployment tool for mass deployment. Works well and works well at scale.
07-29-2021 08:24 AM
I went through the instructions on converting the .exe to an msi package but its not working. It installs but doesn't show up in the AMP portal. I'm using connector version 7.4.1. Has anyone been able to successful create the msi with this version?
07-20-2022 12:02 PM
Clearly there is a need for a Secure Endpoint download as MSI, but Cisco doesn't want to release this.
As a community, what can we do to get this 5 year request finally addressed?
12-19-2022 10:21 AM
Another option is to use group policies. Create a machine startup script that copies the exe from a network share to the local %windir%\temp directory (has to be temp) then just run with /R /S. So it doesn't install on every reboot I created a if exist for the cscm.exe also a network share that only domain computers can write to for logging.
Here's the batch file I used
@BigR off
set CURRENT_DATE=%date:~10,4%%date:~4,2%%date:~7,2%
Echo LOG: ampClientDeploy Script execution Started %CURRENT_DATE% %time% %COMPUTERNAME% >> \\NetworkShare2\Logs$\ampClientDeploy.log
IF EXIST "%ProgramFiles%\Cisco\AMP\8.1.3.21242\cscm.exe" (goto FILEFOUND) ELSE (
Echo LOG: ampClientDeploy Copy to Temp Started %CURRENT_DATE% %time% %COMPUTERNAME% >> \\NetworkShare2\Logs$\ampClientDeploy.log
copy "\\NetworkShare1\Install$\amp_client.exe" %WinDir%\temp
Echo LOG: ampClientDeploy Copy to Temp Ended %CURRENT_DATE% %time% %COMPUTERNAME% >> \\NetworkShare2\Logs$\ampClientDeploy.log
Echo LOG: ampClientDeploy Install Started %CURRENT_DATE% %time% %COMPUTERNAME% >> \\NetworkShare2\Logs$\ampClientDeploy.log
%WinDir%\temp\amp_client.exe /R /S
Echo LOG: ampClientDeploy Install Ended %CURRENT_DATE% %time% %COMPUTERNAME% >> \\NetworkShare2\Logs$\ampClientDeploy.log
goto END
)
:FILEFOUND
Echo LOG: ampClientDeploy CSCM Found not installing %CURRENT_DATE% %time% %COMPUTERNAME% >> \\NetworkShare2\Logs$\ampClientDeploy.log
:END
Echo LOG: ampClientDeploy Script Ended %CURRENT_DATE% %time% %COMPUTERNAME% >> \\NetworkShare2\Logs$\ampClientDeploy.log
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide