tiny11builder
tiny11builder copied to clipboard
Preinstall Firefox?
Since Edge is removed, can you give the user the option to preinstall Firefox?
$browserChoice = Read-Host "Do you want to preinstall Firefox? Enter 'Yes' or 'No'"
if ($browserChoice -eq 'Yes') {
Write-Host "Installing Firefox using Winget..."
winget install Mozilla.Firefox
Write-Host "Firefox has been installed."
} else {
Write-Host "No browser will be preinstalled."
}