Cómo instalar Mozilla Firefox usando Powershell
Alguna vez te has preguntado si se puede instalar el Mozilla Firefox usando el PowerShell, pues hoy aprenderás como instalarlo mediante PowerShell.
📌Comando
$workdir = "c:\installer\"
If (Test-Path -Path $workdir -PathType Container)
{ Write-Host "$workdir already exists" -ForegroundColor Red}
ELSE
{ New-Item -Path $workdir -ItemType directory }
$source = "https://download.mozilla.org/?product=firefox-latest&os=win64&lang=en-US"
$destination = "$workdir\firefox.exe"
if (Get-Command 'Invoke-Webrequest')
{
Invoke-WebRequest $source -OutFile $destination
}
else
{
$WebClient = New-Object System.Net.WebClient
$webclient.DownloadFile($source, $destination)
}
Start-Process -FilePath "$workdir\firefox.exe" -ArgumentList "/S"
Start-Sleep -s 35
🔴CANAL DE MI HERMANO:https://bit.ly/2Umitgv - Yuarkley THE MV
📌GRUPO DE TELEGRAM
►Unirse aquí:https://bit.ly/3j1Zyzx
👉SI ERES AGRADECIDO ENTONCES DEJA TU LIKE Y TU SUSCRIPCIÓN.
👉IMPORTANTE!!!!
Ver el contenido hasta el final
---
No olvides de comentar y dejar tu like y SUSCRIBIRSE subo excelente contenidos.
---
🔴META DE SUBS:
👉9000 ✔
👉11000 ❌
👉13000❌