Windows 2019 AMIs. Packaged with Edge?

0

Is it possible to request that the Windows 2019 AMIs now come pre-packaged with Microsoft Edge installed? Internet Explorer is useless and on the Azure platform their Windows 2019 image has Edge already installed. It would be nice to be able to use a browser out of the box.

profile picture
已提問 1 年前檢視次數 251 次
1 個回答
1

Hello!

Thank you for taking time to ask a question on re:Post John.

One of the main reasons behind this is because Microsoft has not sunset Internet Explorer for Windows Server until support ends in 2029. This question in re:Post also has a great explanation.

You can also try an alternative approach. You may install Edge (or another browser) with a similar script in the user data at an EC2 launch. This PowerShell snippet is just an example that may be able to get you started.

Set-Location “C:\Windows\system32”

#Change TimeZone
C:\Windows\System32\tzutil /s “AUS Eastern Standard Time”
#Install Chrome
$Path = $env:TEMP;
$Installer = “chrome_installer.exe”;
Invoke-WebRequest “http://dl.google.com/chrome/install/375.126/chrome_installer.exe” -OutFile     $Path\$Installer;
Start-Process -FilePath $Path\$Installer -ArgumentList “/silent /install” -Verb RunAs -Wait;
Remove-Item $Path\$Installer

#Set Chrome as default browser
$chromePath = "${Env:ProgramFiles(x86)}\Google\Chrome\Application\"
$chromeApp = “chrome.exe”
$chromeCommandArgs = “--make-default-browser”
& “$chromePath$chromeApp” $chromeCommandArgs

Microsoft recently came out with an article that may also help you. There are steps there that show you how to add Edge back into a container image.

Hope all of the different options help!

profile pictureAWS
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南