Forum Discussion
Brave Browser Intune Deploy
ArgumentList "--uninstall --system-level --force-uninstall" will not work in Brave.exe, as it not does not allow that switch parameter.
For "BraveStanaloneSilentSetup.exe" not use "ArgumentList" & it will just work fine.
But if you are using & testing with PSADT without deploying from Intune it will work fine.
But when you create .intunewin & deploy it from Intune the app gets deployed with no error but app itself just not visible on device. This is strange behavior I am trying to look resolution for.
- DhirajDFeb 13, 2026Copper Contributor
Below works fine now, Issue seems resolved for me
If ($ExePath64) {
Write-ADTLogEntry -Message "Found $($ExePath64.FullName). Installing Brave for logged-in user."
Show-ADTInstallationProgress `
-StatusMessage "Installing Brave Browser for current user. Please wait..."
Start-ADTProcessAsUser `
-FilePath $ExePath64.FullName `
-WindowStyle Hidden `
-WaitForChildProcesses
}