tiny11builder icon indicating copy to clipboard operation
tiny11builder copied to clipboard

Preinstall Firefox?

Open yawnbox opened this issue 1 year ago • 0 comments

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."
}

yawnbox avatar Apr 26 '24 21:04 yawnbox