Microsoft Edge - sevioptero/Windows_info GitHub Wiki

Contenido:


Descarga

Descargador de la última versión estable

Invoke-WebRequest -Uri "https://edgeupdates.microsoft.com/api/products?view=enterprise" -OutFile "EdgeReleases.json"

$Channel = ((Get-Content -Path .\EdgeReleases.json | ConvertFrom-Json)).Product[2]
$Platform = ((Get-Content -Path .\EdgeReleases.json | ConvertFrom-Json)[2]).Releases[1].Platform
$Architecture = ((Get-Content -Path .\EdgeReleases.json | ConvertFrom-Json)[2]).Releases[1].Architecture
$ProductVersion = ((Get-Content -Path .\EdgeReleases.json | ConvertFrom-Json)[2]).Releases[1].ProductVersion
$URL = ((Get-Content -Path .\EdgeReleases.json | ConvertFrom-Json)[2]).Releases[1].Artifacts[0].Location

Write-Host "Descargando Microsoft Edge del canal $Channel para $Platform $Architecture version $ProductVersion"
Invoke-WebRequest -Uri $URL -OutFile "MicrosoftEdgeEnterpriseX64.msi"

Fuente:

Consulta de directivas aplicadas

edge://policy/

Documentación

Microsoft Docs

osddeployment.dk