Albert Dignos Posted February 17 Share Posted February 17 Does anyone have a working script to install Sentinel One silently on managed machines? Link to comment Share on other sites More sharing options...
Administrators StefanMcl_Pulseway Posted February 17 Administrators Share Posted February 17 Hey @Albert Dignos Stefan from Pulseway here, Thanks for the post. Unfortunately at Pulseway we don't currently have a script for installing sentinel one, its possible that another member can help provide it. We do however support GitHub which you can run on our platform via automation, which will allow you to install SentinelOne. You can check it out here If you have any other questions please don't hesitate to send me a DM or a reply. Thanks, Link to comment Share on other sites More sharing options...
djiunik94 Posted April 3 Share Posted April 3 Hello Albert, Today it's very easy to create his own package for Sentinel One using Powershell App Deployment Toolkit. I'm not expert in Powershell but I can understand script for automated installation. And the advantage of this is that it's very easy to maintain and keep up to date, the only thing you need is the latest source file MSI for installation. The script remain the same ... If you want I can build for you a complete script to allow you to done installation in mode fully automatic or in an interactive way. If you are interest by this, please contact me in private. Djiby, Modern Workplace Engineer Link to comment Share on other sites More sharing options...
AndyR Posted May 19 Share Posted May 19 May be late to the party, but we use a site token variable where we can set the required token per customer. We then host the 32bit and 64bit installers on our website (as you can't seem to download them straight from SentintelOne's site it seems). You can then use powershell to download the installer and run it: Invoke-WebRequest -Uri $URL -OutFile $Installer -ErrorAction Stop Start-Process $Installer -ArgumentList "/t $Token","/q" -Wait -ErrorAction Stop $URL is the download link to the installer file Works like a charm Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now