I have searched the web for an .amp file and no luck. Is anyone using Automation Manager to deploy the new Umbrella package?
I did this today successfully. I am not a PS expert FYI.
I used the “Download file from URL” amp object to download the MSI files and the json file.
I loaded the below into a powershell AMP object. (I added the pauses in there because the first time I ran it without the pauses, not all 3 MSIs installed…i didn’t troubleshoot, but the pauses resolved it)
msiexec /package c:\temp\core-vpn-predeploy-k9.msi /norestart /passive PRE_DEPLOY_DISABLE_VPN=1 /lvx* c:\temp\Cisco-vpn.txt
Start-Sleep -Seconds 30
msiexec /package c:\temp\umbrella-predeploy-k9.msi /norestart /passive /lvx* c:\temp\Cisco-umbrella.txt
Start-Sleep -Seconds 30
msiexec /package c:\temp\dart-predeploy-k9.msi /norestart /passive /lvx* c:\temp\Cisco-dart.txt
Start-Sleep -Seconds 30
Copy-Item -Path “C:\temp\OrgInfo.json” -Destination “c:\ProgramData\Cisco\Cisco Secure Client\Umbrella\” -Force
Restart-Service -DisplayName ‘Cisco Secure Client - AnyConnect VPN Agent’
Restart-Service -DisplayName ‘Cisco Secure Client - Umbrella Agent’
We have one created. The main thing is you need to host the installer somewhere.
Looks like they have the arguments on their website for install.
I want to try this out. Thanks!
Care to share the script? We need to do this before rhe URC is end of life. It’s on our docket for February.
I’m hosting it in Azure. I have a Powershell script that will do it now.
Any chance I can snag that? I’m working on one now that is refusing to work (I’ll be using my host of course)