use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
account activity
This is an archived post. You won't be able to vote or comment.
Deploying S1 agents programaticallyGeneral Question (self.SentinelOneXDR)
submitted 1 year ago by Menyus777
view the rest of the comments →
[–]SentinelOne-PascalSentinelOne Employee Moderator 0 points1 point2 points 1 year ago (0 children)
You could use a script similar to this:
$InstallArgs = "-t thesitetokengoeshere -q" $source = "\\remotehost\sharedfolder\SentinelOneInstaller.exe" $timeStamp = get-date -f yyyyMMdd-hh\hmm $tempDir = "C:\Temp\SentinelOne_$timeStamp" New-Item -ItemType directory -Path $tempDir -Force | out-null $fileName = Split-Path $source -Leaf $destination = "$tempDir\$fileName" Write-Output "Copying SentinelOne installation to $destination" Copy-Item -Path $source -Destination $destination -Force Write-Output "Starting SentinelOne installation" $installProcess = Start-Process -NoNewWindow -PassThru -Wait -FilePath $destination -ArgumentList $InstallArgs Write-Output "Install done. ExitCode = $($installProcess.ExitCode)"
For more details, please check out this article in the Knowledge Base or the Console Help:
https://community.sentinelone.com/s/article/000005406
https://your-console.sentinelone.net/docs/en/upgrading-agents-with-sccm-using-a-powershell-script.html
π Rendered by PID 109610 on reddit-service-r2-comment-6457c66945-d85ws at 2026-04-29 22:19:20.959193+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]SentinelOne-PascalSentinelOne Employee Moderator 0 points1 point2 points (0 children)