To deploy brave browser through any deployment tools, you require a silent installation.
When you download brave browser, you will get an internet installer of 1 or 2 MB file, when you ran that, it will download another full size setup file in temporary folder, you can get the location using process explorer or any other tool.
When you run that, it extracts, one more setup file and a zip/7z file in a separate folder beside it and deletes that folder after installation. Grab this folder.
And then, use below installation and uninstallation command file snippets.
Installation:
@echo off echo Installing Brave Browser. Please wait... "%~dp0setup.exe" --silent --install --system-level
Uninstallation:
@echo off echo Uninstalling Brave Browser. Please wait... "%~dp0setup.exe" --uninstall --force-uninstall --system-level
No comments:
Post a Comment